/* ===================================================
   YOGI SOLUTIONS – style.css  v2
   =================================================== */

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

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --navy:           #06102B;
  --navy2:          #0C1B3E;
  --blue:           #1A47E8;
  --blue-hover:     #1339CC;
  --blue-light:     #EBF0FF;
  --blue-pale:      #F5F7FF;
  --yellow:         #F2C94C;
  --yellow-hover:   #D8B33D;
  --yellow-light:   #FFF8E3;
  --blue-alt:        #1A6FF5;
  --green:          #10B981;
  --green-light:    #ECFDF5;

  /* Text / Neutrals */
  --dark:     #0D1421;
  --text:     #1C2B3A;
  --mid:      #536175;
  --muted:    #8898AA;
  --border:   #DFE8F4;
  --bg:       #F6F9FE;
  --bg2:      #EDF1FA;
  --white:    #FFFFFF;

  /* Shadows */
  --shadow-xs:     0 1px 3px rgba(10,30,80,.06);
  --shadow-sm:     0 3px 12px rgba(10,30,80,.08);
  --shadow-md:     0 8px 32px rgba(10,30,80,.10);
  --shadow-lg:     0 20px 64px rgba(10,30,80,.14);
  --shadow-blue:   0 8px 30px rgba(26,71,232,.28);
  --shadow-yellow: 0 6px 24px rgba(242,201,76,.30);

  /* Geometry */
  --radius:    18px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .22s;
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- SECTION DEFAULTS ---------- */
section { padding: 88px 0; text-align: center; }

/* ---------- SECTION LABELS ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(26,71,232,.15);
}
.section-label--on-dark {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}

.section-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 18px;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ---------- UTILITY ---------- */
.section--tint { background: var(--bg); }

.highlight {
  background: linear-gradient(92deg, var(--yellow) 0%, #ECC85A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
}

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, #1A47E8 0%, #1A6FF5 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-hover) 0%, #1558D6 100%);
  box-shadow: 0 12px 36px rgba(26,71,232,.35);
  transform: translateY(-2px);
}

/* Ghost (on dark) */
.btn--ghost {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.30);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.60);
  transform: translateY(-2px);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--border);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

/* White (on coloured bg) */
.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.20);
}

/* Nav CTA */
.btn--nav {
  background: linear-gradient(135deg, var(--yellow) 0%, #E4BB49 100%);
  color: var(--navy);
  border-color: transparent;
  padding: 9px 20px;
  font-size: 14px;
  box-shadow: 0 6px 24px rgba(242,201,76,.30);
}
.btn--nav:hover {
  background: linear-gradient(135deg, var(--yellow-hover) 0%, var(--yellow) 100%);
  transform: translateY(-1px);
}

.btn--lg   { padding: 16px 36px; font-size: 17px; }
.btn--full { width: 100%; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 24px rgba(10,30,80,.09);
}
.nav.menu-open {
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
}
.logo__icon {
  height: 34px;
  width: auto;
  display: block;
}
.logo--white { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links > a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--t);
  position: relative;
}
.nav__links > a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--dark); }
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 152px 0 108px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Glow orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .5;
}
.hero__orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #1A47E8 0%, transparent 70%);
  top: -160px; left: -80px;
  opacity: .35;
}
.hero__orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #F2C94C 0%, transparent 70%);
  top: -80px; right: -60px;
  opacity: .25;
}
.hero__orb--3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #1A6FF5 0%, transparent 70%);
  bottom: -60px; left: 40%;
  opacity: .30;
}

.hero__inner { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: .01em;
}

.hero__headline {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.035em;
  margin-bottom: 26px;
}

.hero__sub {
  font-size: 19px;
  color: rgba(255,255,255,.68);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.hero__trust span { display: flex; align-items: center; gap: 6px; }

/* =============================================
   PROOF BAR
   ============================================= */
.proof-bar {
  background: linear-gradient(90deg, #0C1B3E 0%, #0A1428 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 0;
}

.proof-bar__inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  padding: 36px 24px;
  position: relative;
}
.proof-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.proof-bar__item strong {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--yellow) 0%, #ECC85A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.proof-bar__item span { font-size: 13px; color: rgba(255,255,255,.50); letter-spacing: .03em; }

/* =============================================
   HOSTING PLAN CARD
   ============================================= */
.hosting { background: var(--bg); }

.plan-card--featured {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-blue), var(--shadow-lg);
  text-align: left;
}
.plan-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, var(--blue) 0%, #1A6FF5 60%, rgba(255,92,32,.5) 100%);
  z-index: -1;
  opacity: .6;
}

.plan-card__badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--yellow) 0%, #E4BB49 100%);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 6px 22px rgba(242,201,76,.28);
  white-space: nowrap;
}

.plan-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 10px;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1;
}
.price__currency {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 10px;
}
.price__amount {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue) 0%, #1A6FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price__period {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 10px;
}

.plan-card__tagline {
  color: var(--mid);
  font-size: 14px;
  margin-bottom: 32px;
  padding: 10px 14px;
  background: var(--yellow-light);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--yellow);
  font-weight: 500;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.plan-card__features li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Simple pricing-table variant (multi-tier grids) */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
  margin-top: 40px;
}
.plan-tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.plan-tier--highlight { border: 2px solid var(--blue); }
.plan-tier h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-tier__price { font-size: 42px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.plan-tier__price-period { font-size: 18px; font-weight: 500; color: var(--mid); }
.plan-tier__desc { color: var(--mid); font-size: 14px; margin-bottom: 24px; }
.plan-tier__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  text-align: left;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: all var(--t) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #1A6FF5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.product-card:hover {
  border-color: rgba(26,71,232,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.product-card:hover::after { transform: scaleX(1); }

.product-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.product-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}
.product-card p {
  font-size: 14px;
  color: var(--mid);
  flex: 1;
  line-height: 1.6;
}
.product-card__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-xs);
}
.product-card__price strong { color: var(--blue); font-size: 16px; }

/* Team member variant */
.product-card--centered { align-items: center; text-align: center; }
.avatar-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto;
}
.avatar-circle--blue   { background: var(--blue); }
.avatar-circle--yellow { background: var(--yellow); color: var(--navy); }
.avatar-circle--green  { background: #059669; }
.role-label { color: var(--blue); font-weight: 600; font-size: 13px; }

/* Narrow, centered grid variant */
.grid--narrow { max-width: 900px; margin: 0 auto; }

/* =============================================
   WHY US
   ============================================= */
.why-us { background: var(--bg); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  text-align: left;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: all var(--t) var(--ease);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--blue) 0%, #1A6FF5 100%);
  border-radius: 4px 0 0 4px;
  transition: height .3s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: rgba(26,71,232,.20); transform: translateY(-3px); }
.why-card:hover::before { height: 100%; }

.why-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); letter-spacing: -.01em; }
.why-card p  { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--navy); }
.testimonials .section-label { background: rgba(255,255,255,.10); color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.15); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub   { color: rgba(255,255,255,.55); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: all var(--t) var(--ease);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
  transform: translateY(-4px);
}
/* Quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.07);
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
  font-size: 16px;
}
.testimonial-card > p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  flex: 1;
  line-height: 1.75;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.author__avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue) 0%, #1A6FF5 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26,71,232,.4);
}
.testimonial-card__author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-card__author span   { font-size: 12px; color: rgba(255,255,255,.45); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison { background: var(--white); }

.comparison__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  background: var(--white);
}
.comparison__table th,
.comparison__table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.comparison__table tbody tr:last-child td { border-bottom: none; }
.comparison__table thead th {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 18px 22px;
}
.comparison__table tbody tr:nth-child(even) td { background: var(--bg); }
.comparison__table tbody tr:hover td { background: var(--blue-pale); }
.comparison__table td:first-child { font-weight: 600; color: var(--dark); }

.highlight-col { background: var(--blue-pale) !important; color: var(--blue) !important; font-weight: 700 !important; }
.comparison__table thead .highlight-col {
  background: linear-gradient(135deg, var(--blue) 0%, #1A6FF5 100%) !important;
  color: var(--white) !important;
}

/* =============================================
   FAQ
   ============================================= */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--t) var(--ease);
}
.faq__item:hover { border-color: rgba(26,71,232,.25); box-shadow: var(--shadow-sm); }
.faq__item[open] { border-color: rgba(26,71,232,.30); }

.faq__item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: background var(--t), color var(--t);
}
.faq__item[open] summary::after {
  content: '−';
  background: var(--blue);
  color: var(--white);
}

.faq__item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, #1A47E8 0%, #0C33CC 50%, #061BAA 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -200px; right: -100px;
}

.cta-banner__inner {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner__inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.cta-banner__inner p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }
.contact--tight { padding-top: 60px; }

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 40px;
  text-align: left;
}

.contact__form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.contact__form h2 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.form-lead { color: var(--mid); font-size: 14px; margin-bottom: 24px; }
.form-footnote { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; }
.form-footnote a { color: var(--blue); }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,71,232,.10);
}

.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.contact-info-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.contact-info-card p  { font-size: 14px; color: var(--mid); margin-bottom: 16px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.info-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-info-item a,
.contact-info-item span { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-info-item a:hover { color: var(--blue); }

/* Highlight info card */
.contact-info-card--highlight {
  background: linear-gradient(135deg, var(--blue) 0%, #1A6FF5 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.contact-info-card--highlight h3 { color: var(--white); }
.contact-info-card--highlight p  { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 14px; }
.contact-info-card--highlight ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.contact-info-card--highlight li { font-size: 14px; color: rgba(255,255,255,.90); }

.bundle-price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bundle-price__original { text-decoration: line-through; color: rgba(255,255,255,.45); font-size: 16px; }
.bundle-price__new { font-size: 26px; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.bundle-note { font-size: 13px; opacity: .8; margin-bottom: 12px; }

.btn--whatsapp { background: #25d366; border-color: #25d366; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.60);
  padding: 68px 0 0;
}
.footer--gap { margin-top: 80px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: start;
}

.footer__brand .logo { margin-bottom: 14px; }
.footer__brand p { font-size: 14px; max-width: 260px; line-height: 1.7; }

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

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.48);
  margin-bottom: 12px;
  transition: color var(--t);
}
.footer__col a:hover { color: rgba(255,255,255,.90); }

.footer__bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.04);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--navy);
  padding: 128px 0 64px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.60);
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   LEGAL / LONG-FORM CONTENT (privacy, terms, refund)
   ============================================= */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.8;
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--mid); }
.legal-content a { color: var(--blue); }
.legal-content__notice {
  background: var(--blue-light);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.legal-content__notice h3 { color: var(--blue); font-weight: 700; margin-bottom: 8px; }
.legal-content__notice p { color: var(--mid); }

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  max-height: calc(100vh - 70px);
  max-height: calc(100dvh - 70px);
  background: var(--white);
  padding: 24px 28px 28px;
  gap: 8px;
  align-items: stretch;
  overflow-y: auto;
  z-index: 1200;
  border-top: 1px solid var(--border);
  box-shadow: 0 16px 32px rgba(10,30,80,.14);
}
.nav__links.open > a:not(.btn) {
  font-size: 17px;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav__links.open > a:not(.btn)::after { display: none; }
.nav__links.open .btn { margin-top: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .contact__wrapper { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links:not(.open) { display: none; }
  .nav__burger { display: block; }

  .hero { padding: 128px 0 80px; }

  .why-us__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .plan-card--featured { padding: 36px 28px; }

  .contact__form { padding: 28px 20px; }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--yellow) 0%, #E4BB49 100%);
  color: var(--navy);
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0,0,0,.22);
}
.whatsapp-float span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
}
@media (max-width: 680px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    gap: 8px;
    font-size: 14px;
  }
}

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

  .proof-bar__inner  { flex-direction: column; align-items: center; }
  .proof-bar__item:not(:last-child)::after { display: none; }

  .footer__links { grid-template-columns: 1fr; }
  .plan-card--featured { padding: 28px 18px; }

  .hero__headline { font-size: clamp(32px, 8vw, 48px); }
}
