/* =============================================
   Piscina Pro Landing Page — Crystal Pool Theme
   ============================================= */

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

:root {
  /* Brand - Ultra Modern Palette */
  --primary: #22d3ee;
  --primary-dark: #0891b2;
  --primary-light: #67e8f9;
  --accent: #6366f1;

  /* Surfaces */
  --bg: #030712;
  --surface: rgba(15, 23, 42, 0.6);
  --surface-glass: rgba(255, 255, 255, 0.03);

  /* Text */
  --text: #f8fafc;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(34, 211, 238, 0.3);

  /* Shadow */
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
  
  /* Spacing */
  --section-pad: clamp(80px, 10vw, 160px);
  --container-max: 1200px;

  /* Radius */
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pool-mid);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--r-lg);
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.btn:hover::after {
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #000;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(34, 211, 238, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--surface-glass);
  color: #fff;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: var(--r-xl);
}

.btn-icon {
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover .btn-icon {
  transform: translateX(6px) scale(1.2);
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  font-style: italic;
  transition: color 0.3s;
}

.navbar.scrolled .nav-logo {
  color: var(--primary);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pool-light), var(--pool-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(14, 116, 144, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pool-light);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--text);
}

.navbar.scrolled .nav-links a::after {
  background: var(--pool-light);
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: var(--r-md) !important;
  font-size: 14px !important;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--pool-mid)) !important;
  color: #fff !important;
  border: none !important;
}

/* Mobile Menu */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.scrolled .nav-mobile-toggle span {
  background: var(--text);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(at 0% 0%, hsla(180,100%,20%,0.3) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(240,100%,20%,0.3) 0, transparent 50%), 
    radial-gradient(at 50% 100%, hsla(180,100%,10%,0.2) 0, transparent 50%);
  filter: blur(80px);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.hero-caustics {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(103,232,249,0.2) 1deg, transparent 2deg) 0 0/100px 100px;
  animation: caustics 12s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes caustics {
  from { transform: rotate(0deg) scale(1.5); }
  to { transform: rotate(360deg) scale(1.5); }
}

/* Water wave at bottom */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: none;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--pool-light), var(--pool-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Hero Image */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 78, 99, 0.4) 100%);
  pointer-events: none;
}

/* Floating badges on hero image */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: float 3s ease-in-out infinite;
}

.hero-float-badge:nth-child(2) {
  bottom: 20%;
  left: -30px;
  animation-delay: 0.5s;
}

.hero-float-badge:nth-child(3) {
  top: 15%;
  right: -20px;
  animation-delay: 1s;
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-badge-text {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.float-badge-sub {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

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

/* ============================
   PAIN POINTS
   ============================ */
.pain-points {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.pain-points .container {
  text-align: center;
}

.pain-points .section-subtitle {
  margin: 0 auto 56px auto;
}

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

.pain-card {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.pain-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.1);
}

.pain-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.pain-card:nth-child(1) .pain-card-icon { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.pain-card:nth-child(2) .pain-card-icon { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.pain-card:nth-child(3) .pain-card-icon { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }

.pain-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   FEATURES
   ============================ */
.features {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.features .container {
  text-align: center;
}

.features .section-subtitle {
  margin: 0 auto 56px auto;
}

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

.feature-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--pool-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(34, 211, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--primary);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.feature-icon i {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   LAUDO HIGHLIGHT (Premium Section)
   ============================ */
.laudo-section {
  padding: var(--section-pad) 0;
  background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.1) 0%, var(--bg) 50%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.laudo-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.laudo-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.laudo-content .section-eyebrow {
  color: var(--pool-light);
}

.laudo-content .section-title {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
}

.laudo-content .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.laudo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.laudo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  transition: all 0.3s;
}

.laudo-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(103, 232, 249, 0.2);
  transform: translateX(6px);
}

.laudo-feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.laudo-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.laudo-feature-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Laudo Image */
.laudo-visual {
  position: relative;
}

.laudo-image-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.laudo-image-wrapper img {
  width: 100%;
  display: block;
}

.laudo-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.2), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.how-it-works .container {
  text-align: center;
}

.how-it-works .section-subtitle {
  margin: 0 auto 64px auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--pool-light), var(--primary), var(--pool-light));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 101, 120, 0.06), rgba(14, 116, 144, 0.06));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--primary), var(--pool-mid));
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 101, 120, 0.25);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.testimonials .container {
  text-align: center;
}

.testimonials .section-subtitle {
  margin: 0 auto 56px auto;
}

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

.testimonial-card {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.4s;
  backdrop-filter: blur(12px);
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--primary-bg);
  position: absolute;
  top: -16px;
  left: -4px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bg), var(--pool-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.testimonial-author-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================
   CTA FINAL
   ============================ */
.cta-final {
  padding: var(--section-pad) 0;
  background: var(--surface);
  text-align: center;
}

.cta-card {
  background: linear-gradient(165deg, var(--pool-dark), var(--primary), var(--pool-mid));
  border-radius: var(--r-2xl);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(103, 232, 249, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card .section-title {
  color: #fff;
  position: relative;
  z-index: 2;
}

.cta-card .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 32px auto;
  position: relative;
  z-index: 2;
}

.cta-card .btn {
  position: relative;
  z-index: 2;
}

.cta-subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: #030712;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.5);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .nav-logo-icon {
  width: 28px;
  height: 28px;
  font-size: 14px;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.footer-text {
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

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

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-description {
    margin: 0 auto 36px auto;
  }

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

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

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-float-badge:nth-child(2) { left: 10px; }
  .hero-float-badge:nth-child(3) { right: 10px; }

  .laudo-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .laudo-content .section-subtitle {
    margin: 0 auto 36px auto;
  }

  .laudo-visual {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 78, 99, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    color: #fff !important;
  }

  .nav-mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .pain-grid,
  .features-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps-grid::before {
    display: none;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-float-badge {
    display: flex;
    transform: scale(0.85);
    padding: 8px 12px;
  }
  
  .hero-float-badge:nth-child(2) {
    top: -20px;
    left: -10px;
    bottom: auto;
  }
  
  .hero-float-badge:nth-child(3) {
    bottom: -20px;
    right: -10px;
    top: auto;
  }

  .btn-lg {
    padding: 16px 28px;
    font-size: 15px;
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  :root {
    --section-pad: 48px;
  }
}

/* ============================
   Reduced Motion
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}

/* ============================
   FAQ Styles
   ============================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq .container {
  max-width: 800px;
}

.faq .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 20px;
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
}

