/* ============================================
   CORAFUNSANCTM — MAIN STYLESHEET
   Premium Portable Pools — European Design
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #38BDF8;
  --secondary: #FACC15;
  --accent: #0EA5E9;
  --bg-start: #E0F2FE;
  --bg-end: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-solid: rgba(255, 255, 255, 0.7);
  --text-dark: #0C1A2A;
  --text-mid: #334155;
  --text-light: #64748B;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 165, 233, 0.12);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 40%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.3) 0%, rgba(255,255,255,0) 100%);
}

/* --- GLASS CARD --- */
.glass-card {
  background: var(--glass-solid);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

/* --- TYPOGRAPHY --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.large-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.section-title .accent, .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: rgba(255,255,255,0.8);
  color: var(--accent);
  border: 2px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 30px rgba(14, 165, 233, 0.08);
}

.header-water-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(56, 189, 248, 0.03) 0%,
    rgba(14, 165, 233, 0.06) 50%,
    rgba(56, 189, 248, 0.03) 100%
  );
  animation: headerWater 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerWater {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-20px); }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
}

.logo-ripple {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  flex-shrink: 0;
}

.logo-ripple::before,
.logo-ripple::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: 0.6s ease;
}

.logo:hover .logo-ripple::before {
  inset: -8px;
  opacity: 0.5;
}

.logo:hover .logo-ripple::after {
  inset: -16px;
  opacity: 0.2;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(56, 189, 248, 0.08);
}

.nav-link.active {
  font-weight: 600;
}

.header-cta {
  font-size: 0.85rem;
  padding: 10px 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
  transition: var(--transition);
}

.btn-cta:hover {
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.45);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.hero-water-surface {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
}

.water-shimmer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at 30% 50%,
    rgba(56, 189, 248, 0.06) 0%,
    transparent 50%
  );
  animation: shimmer 12s ease-in-out infinite;
}

.shimmer-2 {
  background: radial-gradient(ellipse at 70% 30%,
    rgba(14, 165, 233, 0.04) 0%,
    transparent 50%
  );
  animation-delay: -4s;
  animation-duration: 15s;
}

.shimmer-3 {
  background: radial-gradient(ellipse at 50% 80%,
    rgba(250, 204, 21, 0.03) 0%,
    transparent 40%
  );
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes shimmer {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -1%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

.hero-content {
  flex: 1;
  max-width: 580px;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.title-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(56, 189, 248, 0.2);
}

.hero-visual {
  flex: 1;
  max-width: 520px;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-pool-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-img-glow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.3), transparent);
  filter: blur(20px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  animation: fadeUp 1s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 28px;
  text-align: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.08);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(56, 189, 248, 0.15);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- LIFESTYLE --- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.lifestyle-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.lifestyle-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  min-height: 220px;
}

.lifestyle-item:hover img {
  transform: scale(1.06);
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 42, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.lifestyle-item:hover .lifestyle-overlay {
  opacity: 1;
}

.lifestyle-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- HOW IT WORKS --- */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 320px;
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.step-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 100px;
  flex-shrink: 0;
}

/* --- PRODUCT PREVIEW --- */
.preview-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.preview-visual {
  flex: 1;
  position: relative;
}

.preview-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.preview-img-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.preview-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 12px 24px;
  text-align: center;
}

.badge-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-price {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.preview-info {
  flex: 1;
}

.preview-info p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.preview-features {
  margin-bottom: 32px;
}

.preview-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* --- TESTIMONIALS --- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px 28px;
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-water-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(56, 189, 248, 0.05) 0%,
    rgba(14, 165, 233, 0.1) 50%,
    rgba(250, 204, 21, 0.05) 100%
  );
  animation: shimmer 12s ease-in-out infinite;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-form .form-row,
.cs-form .form-row {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 12px;
}

.form-row input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 60px;
  border: 2px solid rgba(56, 189, 248, 0.2);
  background: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-row input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.form-note {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links li:not(:has(a)) {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* --- MOBILE STICKY CTA --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(56, 189, 248, 0.1);
  z-index: 999;
}

/* --- PAGE HERO --- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
}

.page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* --- PRODUCT PAGE --- */
.showcase-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-main {
  border-radius: var(--radius);
  overflow: hidden;
}

.showcase-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.showcase-thumbs {
  display: flex;
  gap: 16px;
}

.thumb {
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}

.thumb.active,
.thumb:hover {
  border-color: var(--primary);
}

.thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pf-card {
  padding: 40px 28px;
}

.pf-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(56, 189, 248, 0.08);
  margin-bottom: 20px;
}

.pf-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pf-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- SPECS TABLE --- */
.specs-table {
  padding: 40px;
  overflow-x: auto;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.specs-table th {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs-table td {
  color: var(--text-mid);
}

.specs-table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
  color: var(--text-dark);
}

/* --- USE CASES --- */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.uc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.uc-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.uc-card:hover .uc-img img {
  transform: scale(1.05);
}

.uc-info {
  padding: 24px;
  margin: -40px 20px 20px;
  position: relative;
  z-index: 1;
}

.uc-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.uc-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- TECHNOLOGY PAGE --- */
.tech-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.tech-layout.reverse {
  flex-direction: row-reverse;
}

.tech-visual {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.tech-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.tech-visual-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.tech-info {
  flex: 1;
}

.tech-info p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.tech-layers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-layer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.layer-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tech-layer strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.tech-layer p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.tech-points {
  list-style: none;
}

.tech-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.tech-points li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.test-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.test-stat {
  padding: 20px;
  text-align: center;
}

.test-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.test-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- ABOUT PAGE --- */
.story-layout {
  display: flex;
  gap: 60px;
  align-items: center;
}

.story-visual {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story-text {
  flex: 1;
}

.story-text p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mv-card {
  padding: 48px 36px;
  text-align: center;
}

.mv-icon {
  margin: 0 auto 20px;
}

.mv-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-style: italic;
}

.mv-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-item {
  padding: 32px 20px;
}

.value-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-member {
  text-align: center;
  padding: 32px 24px;
}

.member-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid rgba(56, 189, 248, 0.2);
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- CONTACT PAGE --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  padding: 40px;
}

.contact-form-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-mid);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(56, 189, 248, 0.15);
  background: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-card a {
  color: var(--text-dark);
  font-weight: 500;
}

.info-card a:hover {
  color: var(--accent);
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.partner-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.12));
  border-color: rgba(56, 189, 248, 0.25);
}

.partner-card .btn-secondary {
  margin-top: 12px;
}

/* --- COMING SOON --- */
.coming-soon-body {
  background: linear-gradient(180deg, var(--bg-start) 0%, #F0F9FF 50%, var(--bg-end) 100%);
}

.coming-soon-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.cs-water-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
}

.cd-item {
  padding: 24px 20px;
  min-width: 90px;
  text-align: center;
}

.cd-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.cd-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-weight: 600;
}

.cs-form {
  margin-bottom: 40px;
}

.cs-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cs-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* --- LEGAL PAGES --- */
.legal-hero {
  padding-bottom: 40px;
}

.legal-content {
  padding-top: 40px;
}

.legal-body {
  max-width: 800px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 28px 0 12px;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-body ul {
  margin: 0 0 20px 20px;
}

.legal-body li {
  list-style: disc;
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
}

/* --- ANIMATIONS --- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .preview-layout,
  .tech-layout,
  .tech-layout.reverse,
  .story-layout {
    flex-direction: column;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 32px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-large {
    grid-column: auto;
  }

  .pf-grid {
    grid-template-columns: 1fr;
  }

  .uc-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .showcase-main img {
    height: 300px;
  }

  .thumb img {
    height: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .cta-content {
    padding: 40px 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .countdown {
    gap: 10px;
  }

  .cd-item {
    min-width: 70px;
    padding: 16px 12px;
  }

  .cd-num {
    font-size: 1.8rem;
  }

  .cs-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .test-stats {
    grid-template-columns: 1fr;
  }

  .showcase-thumbs {
    gap: 8px;
  }

  .specs-table {
    padding: 20px;
  }

  .specs-table th,
  .specs-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .countdown {
    flex-wrap: wrap;
  }
}