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

:root {
  --navy:       #0F1F3D;
  --navy-deep:  #0A1628;
  --navy-mid:   #162847;
  --white:      #FFFFFF;
  --teal:       #00C9B1;
  --teal-dark:  #00A896;
  --teal-glow:  rgba(0, 201, 177, 0.18);
  --grey-light: #F5F6F8;
  --grey-mid:   #E8EAED;
  --grey-text:  #6B7280;
  --body-text:  #374151;
  --border:     #E5E7EB;

  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:  1180px;
  --radius:     12px;
  --radius-lg:  20px;

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: rgba(255,255,255,0.85);
  background: #0A1628;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

img, svg { display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.teal { color: var(--teal); }

.hide-mobile { display: inline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out),
              box-shadow 0.18s var(--ease-out),
              background 0.18s;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 201, 177, 0.3);
}

.btn-teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 28px rgba(0, 201, 177, 0.4);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.25);
  font-weight: 700;
  padding: 15px 20px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-sm  { font-size: 14px; padding: 10px 20px; }
.btn-lg  { font-size: 17px; padding: 18px 36px; border-radius: 10px; }

/* Hero CTA pulsing glow */
.btn-hero-cta {
  animation: heroPulse 2.8s ease-in-out infinite;
}

.btn-hero-cta:hover {
  animation: none;
  box-shadow: 0 8px 36px rgba(0, 201, 177, 0.55);
}

@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,201,177,0.45), 0 4px 20px rgba(0,201,177,0.3); }
  50%  { box-shadow: 0 0 22px 8px rgba(0,201,177,0.18), 0 4px 28px rgba(0,201,177,0.38); }
  100% { box-shadow: 0 0 0 0 rgba(0,201,177,0.45), 0 4px 20px rgba(0,201,177,0.3); }
}

.btn-block {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 31, 61, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.25s;
}

.nav-wrapper.nav-scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.nav-logo:hover { opacity: 0.82; }

.nav-logo svg { width: 280px !important; min-width: 280px !important; height: auto !important; }

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

.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}

.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-links .btn-teal { color: var(--navy); padding: 10px 20px; }
.nav-links .btn-teal:hover { color: var(--navy); background: var(--teal-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.18s;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.25s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  min-height: 100vh;
  padding: 100px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 201, 177, 0.1);
  border: 1px solid rgba(0, 201, 177, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease-out) both, badgePulse 1.5s ease-in-out 0.8s infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.hero-headline {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.hero-sub {
  font-size: clamp(22px, 3vw, 32px);
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 16px;
  font-weight: 600;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-sub-2 {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 0.7s var(--ease-out) 0.28s both;
}

.hero-shine {
  background: linear-gradient(90deg, #00C9B1 0%, #FFFFFF 50%, #00C9B1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}

.hero-micro {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

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

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */
.proof-bar {
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.proof-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.proof-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.proof-icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header--light .section-title { color: var(--white); }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.problem-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(24px);
}

.problem-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.problem-card:nth-child(1) { --i: 0; }
.problem-card:nth-child(2) { --i: 1; }
.problem-card:nth-child(3) { --i: 2; }

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: rgba(0,201,177,0.4);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: #00C9B1;
  opacity: 1;
}

.card-icon-wrap svg {
  width: 64px;
  height: 64px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.card-body {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.step {
  flex: 1;
  max-width: 300px;
  min-height: 220px;
  text-align: center;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1).revealed { transition-delay: 0s; }
.step:nth-child(3).revealed { transition-delay: 0.15s; }
.step:nth-child(5).revealed { transition-delay: 0.3s; }

.step-number {
  font-size: 80px !important;
  font-weight: 900 !important;
  color: var(--teal) !important;
  opacity: 0.6 !important;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  text-shadow: 0 0 20px rgba(0,201,177,0.3);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-body {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.5;
  align-self: center;
}

.step-arrow svg {
  width: 40px;
  height: 24px;
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */
.services {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.pricing-card {
  background: rgba(10, 20, 50, 0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  opacity: 0;
  transform: translateY(24px);
}

.pricing-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:nth-child(1).revealed { transition-delay: 0s; }
.pricing-card:nth-child(2).revealed { transition-delay: 0.1s; }
.pricing-card:nth-child(3).revealed { transition-delay: 0.2s; }

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,31,61,0.1);
}

.pricing-card--featured {
  background: #0F1F3D;
  border-color: rgba(0,201,177,0.35);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(-8px);
}

.pricing-card--featured.revealed {
  transform: translateY(-8px);
}

.pricing-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 72px rgba(15,31,61,0.28);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-top { display: flex; flex-direction: column; gap: 10px; }

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.pricing-card--featured .pricing-name { color: var(--white); }

.pricing-price { line-height: 1; }

.price-amount {
  font-size: 44px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -2px;
}

.pricing-card--featured .price-amount { color: var(--teal); }

.pricing-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.78); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.92); }

.check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-card--featured .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.pricing-card--featured .btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

/* CSS Illustration */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  min-height: 640px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,201,177,0.15);
}

.about-illustration {
  position: relative;
  width: 588px;
  height: 588px;
  flex-shrink: 0;
}

.illus-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--teal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 20s linear infinite;
}

.illus-ring-1 {
  width: 504px;
  height: 504px;
  border-color: rgba(0,201,177,0.15);
  animation-duration: 30s;
}

.illus-ring-2 {
  width: 378px;
  height: 378px;
  border-color: rgba(0,201,177,0.3);
  border-style: dashed;
  animation-duration: 20s;
  animation-direction: reverse;
}

.illus-ring-3 {
  width: 224px;
  height: 224px;
  background: rgba(0,201,177,0.05);
  border-color: rgba(0,201,177,0.55);
  animation-duration: 14s;
}

.illus-ring-4 {
  width: 112px;
  height: 112px;
  background: rgba(0,201,177,0.1);
  border-color: var(--teal);
  border-width: 2.5px;
  animation-duration: 8s;
  animation-direction: reverse;
}

.illus-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
}

.illus-dot-1 {
  width: 22px;
  height: 22px;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0,201,177,0.7);
}

.illus-dot-2 {
  width: 17px;
  height: 17px;
  bottom: 100px;
  right: 78px;
  opacity: 0.7;
  box-shadow: 0 0 12px rgba(0,201,177,0.4);
}

.illus-dot-3 {
  width: 14px;
  height: 14px;
  top: 123px;
  left: 50px;
  opacity: 0.5;
}

.illus-dot-4 {
  width: 11px;
  height: 11px;
  bottom: 168px;
  left: 84px;
  opacity: 0.35;
}

/* Bar chart shapes */
.illus-bar {
  position: absolute;
  bottom: 100px;
  background: rgba(255,255,255,0.18);
  border-radius: 5px 5px 0 0;
  width: 48px;
}

.illus-bar-1 { height: 100px; left: 202px; }
.illus-bar-2 { height: 157px; left: 260px; background: var(--teal); box-shadow: 0 0 20px rgba(0,201,177,0.5); }
.illus-bar-3 { height: 77px;  left: 319px; background: rgba(255,255,255,0.12); }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.about-title { text-align: left; margin-bottom: 20px; }

.about-body {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.teal-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ============================================================
   PRICING WATERMARK
   ============================================================ */
.pricing-watermark {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.3);
}

.testimonials-sub {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.testimonials-viewport {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  padding-bottom: 80px;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonialScroll 60s linear infinite;
}

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  position: relative;
  width: 480px;
  min-height: 340px !important;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 16px;
  border-left: 4px solid var(--teal);
  padding: 44px;
  margin-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.9;
  flex: 1;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
  padding-top: 10px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}

.author-biz {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.testimonial-card--teal {
  background: #00C9B1;
  border-left-color: #0F1F3D;
}
.testimonial-card--teal .testimonial-text {
  color: #0F1F3D;
}
.testimonial-card--teal .author-name {
  color: #0F1F3D;
}
.testimonial-card--teal .author-biz {
  color: rgba(15,31,61,0.7);
}

.testimonial-watermark {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  user-select: none;
  color: rgba(0,201,177,0.25);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 48 48'%3E%3Cpath fill='%23EA4335' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%234285F4' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%23FBBC05' d='M10.53 28.59a14.5 14.5 0 010-9.18l-7.98-6.19a24.01 24.01 0 000 21.56l7.98-6.19z'/%3E%3Cpath fill='%2334A853' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.testimonial-card--teal .testimonial-watermark {
  color: rgba(15,31,61,0.25);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,201,177,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  background: #0F1F3D;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.18s;
}

.footer-logo:hover { opacity: 1; }

.footer-email {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  transition: color 0.18s;
}

.footer-email:hover { color: var(--teal); }

.footer-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color 0.18s;
}

.footer-link:hover { color: var(--teal); }

.footer-link svg {
  width: 18px;
  height: 18px;
}

.footer-email--link:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured.revealed { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual { order: -1; min-height: 440px; }
  .about-title { text-align: center; }

  .steps-grid {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .step { max-width: 400px; width: 100%; }

  .proof-divider { display: none; }
  .proof-item { padding: 10px 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  :root { --container: 100%; }

  .container { padding: 0 20px; }

  .hide-mobile { display: none; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

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

  .nav-links li { width: 100%; }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }

  .nav-links .btn-teal {
    margin-top: 8px;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Hero */
  .hero { padding: 100px 0 64px; }

  .hero-headline { letter-spacing: -1px; }

  .btn-lg { font-size: 16px; padding: 16px 28px; }

  /* Sections */
  .problem,
  .how-it-works,
  .services,
  .about,
  .final-cta { padding: 72px 0; }

  .section-header { margin-bottom: 40px; }

  .about-illustration {
    width: 392px;
    height: 392px;
  }

  .illus-ring-1 { width: 336px; height: 336px; }
  .illus-ring-2 { width: 252px; height: 252px; }
  .illus-ring-3 { width: 154px; height: 154px; }
  .illus-ring-4 { width: 77px;  height: 77px; }
  .illus-bar { width: 36px; bottom: 70px; }
  .illus-bar-1 { left: 133px; height: 64px; }
  .illus-bar-2 { left: 179px; height: 101px; }
  .illus-bar-3 { left: 225px; height: 50px; }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .proof-list { flex-direction: column; gap: 4px; }
  .proof-item { justify-content: center; }

  /* Nav logo */
  .nav-logo svg { width: 200px !important; min-width: 200px !important; }

  /* Testimonials */
  .testimonials { padding-top: 64px; }

  /* Prevent any section from causing horizontal overflow */
  .problem, .how-it-works, .services, .about, .final-cta {
    overflow-x: hidden;
  }

  /* Hero text — ensure it wraps cleanly */
  .hero-headline { letter-spacing: -0.5px; }
  .hero-sub { font-size: clamp(18px, 5vw, 22px); }

  /* Final CTA heading smaller on mobile */
  .final-cta-title { font-size: clamp(26px, 6vw, 36px); }
}

/* ============================================================
   RESPONSIVE — CAROUSEL (768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Global overflow guard */
  body {
    overflow-x: hidden !important;
  }

  * {
    max-width: 100vw;
  }

  /* Testimonials */
  .testimonial-card {
    width: 300px;
    min-height: 220px;
    padding: 28px;
  }

  /* Pricing — generic catch-all */
  .pricing-grid,
  .packages-grid,
  [class*="pricing-grid"],
  [class*="packages-grid"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 100% !important;
  }

  .pricing-card,
  [class*="pricing-card"],
  [class*="package-card"] {
    width: 90% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    order: unset !important;
    padding: 24px !important;
  }

  /* Keep featured card first */
  .pricing-card--featured {
    order: -1 !important;
  }

  .price-amount { font-size: 32px !important; }

  .pricing-features li { font-size: 14px !important; }

  .btn-block { width: 100% !important; }
}
