/* ============================================================
   VISHWA CONNECT — Premium Healthcare Membership Website
   Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --navy-900: #041a3f;
  --navy-800: #082B63;
  --navy-700: #123E7A;
  --navy-600: #1d4f96;
  --royal: #123E7A;

  --green-600: #168A45;
  --green-500: #1fa455;
  --green-soft: #e6f4ec;

  --gold-500: #D4A62A;
  --gold-400: #e0b640;
  --gold-300: #F4D77A;
  --gold-soft: #faf3dd;

  --ink-900: #0b1f3a;
  --ink-700: #2c3e5a;
  --ink-500: #52617c;
  --ink-400: #6b7a94;

  --line: #e6ebf4;
  --bg-soft: #f4f7fc;
  --bg-card: #ffffff;

  --white: #ffffff;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #123E7A 0%, #082B63 60%, #041a3f 100%);
  --grad-gold: linear-gradient(135deg, #F4D77A 0%, #D4A62A 100%);
  --grad-green: linear-gradient(135deg, #22c55e 0%, #168A45 100%);

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(8, 43, 99, 0.06);
  --shadow-md: 0 12px 30px rgba(8, 43, 99, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 43, 99, 0.16);
  --shadow-gold: 0 14px 34px rgba(212, 166, 42, 0.35);

  /* Typography */
  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Layout */
  --container: 1200px;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(212, 166, 42, 0.25);
  color: var(--navy-800);
}

img, svg, video {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

section {
  position: relative;
}

.section {
  padding: 96px 0;
}

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

/* ---------- Section Headers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: var(--gold-soft);
  border: 1px solid #f0e3bd;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-head h2::after {
  content: '';
  display: block;
  width: 66px;
  height: 4px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  border-radius: 4px;
}

.section-head.left h2::after { margin-left: 0; }

.section-head p {
  color: var(--ink-500);
  font-size: 1.06rem;
}

.hl-green { color: var(--green-600); }
.hl-gold { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

.btn:hover { filter: brightness(1.05); }
.btn:hover i { transform: translateX(2px); }
.btn i { transition: transform 0.25s ease; }

.btn:active { transform: translateY(-1px) scale(0.99); }

.btn i { font-size: 0.9em; }

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy-800);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(212, 166, 42, 0.45);
}

.btn-green {
  background: var(--grad-green);
  color: #fff;
  box-shadow: 0 14px 34px rgba(22, 138, 69, 0.32);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(22, 138, 69, 0.42);
}

.btn-navy {
  background: var(--grad-navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(8, 43, 99, 0.35);
}
.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(8, 43, 99, 0.45);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.btn-outline-navy {
  border: 2px solid rgba(8, 43, 99, 0.25);
  color: var(--navy-800);
  background: transparent;
}
.btn-outline-navy:hover {
  border-color: var(--navy-800);
  background: var(--bg-soft);
  transform: translateY(-3px);
}

.btn-sm { padding: 12px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(8, 43, 99, 0.10);
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex: 1;
  min-width: 0;
}

.navbar.scrolled .brand { color: var(--navy-800); }

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar.scrolled .brand-text span { color: var(--gold-500); }

.navbar.scrolled .nav-cta .btn-outline {
  border-color: rgba(8, 43, 99, 0.3);
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: none;
}
.navbar.scrolled .nav-cta .btn-outline:hover {
  border-color: var(--navy-800);
  background: var(--bg-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.navbar.scrolled .nav-links a { color: var(--ink-700); }

.nav-links a:hover {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.08);
}
.navbar.scrolled .nav-links a:hover {
  color: var(--navy-800);
  background: var(--bg-soft);
}

.nav-links a.active {
  color: var(--gold-300);
  font-weight: 600;
}
.navbar.scrolled .nav-links a.active { color: var(--gold-500); }

.nav-links .nav-member-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--navy-800) !important;
  font-weight: 600;
  padding: 11px 20px;
  margin-left: 8px;
  box-shadow: 0 6px 16px rgba(212, 166, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.nav-links a.nav-member-btn:hover {
  background: var(--gold-400);
  color: var(--navy-800) !important;
  transform: translateY(-2px);
}
.nav-links a.nav-member-btn.active {
  background: var(--grad-gold);
  color: var(--navy-800) !important;
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.nav-cta .btn-sm {
  padding: 13px 24px;
  font-size: 0.88rem;
  flex: 0 0 auto;
  min-width: max-content;
}

.nav-cta .btn-gold {
  box-shadow: 0 8px 20px rgba(212, 166, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.nav-cta .btn-gold:hover {
  box-shadow: 0 12px 26px rgba(212, 166, 42, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.3rem;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.navbar.scrolled .nav-toggle {
  background: var(--bg-soft);
  color: var(--navy-800);
}

/* Menu backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(4, 26, 63, 0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

@media (max-width: 1100px) {
  .nav-links, .nav-cta .btn { display: none; }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 4px);
    left: 12px;
    right: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(8, 43, 99, 0.2);
    max-height: calc(100vh - var(--header-h) - 28px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }

  .nav-links.open {
    display: flex;
    animation: menuIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links a {
    color: var(--ink-700);
    padding: 14px 16px;
    border-radius: 12px;
  }
  .nav-links a:hover { background: var(--bg-soft); color: var(--navy-800); }
  .nav-links a.active { color: var(--gold-500); }

  .nav-links .nav-member-btn {
    padding: 12px 20px;
    margin: 4px 0 0;
    justify-content: center;
    border-radius: 100px;
  }
  .nav-links a.nav-member-btn:hover { background: var(--gold-400); color: var(--navy-800) !important; }

  .nav-links .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
  }
}

/* Tablet: anchored card on the right instead of full width */
@media (min-width: 561px) and (max-width: 1100px) {
  .nav-links { left: auto; right: 16px; width: 320px; }
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 1101px) {
  .nav-links .mobile-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-navy);
  color: var(--white);
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 65%);
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 166, 42, 0.16), transparent 65%);
  top: -160px;
  right: -120px;
}
.hero-glow.g2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(22, 138, 69, 0.14), transparent 65%);
  top: auto;
  right: auto;
  bottom: -180px;
  left: -140px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05));
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 215, 122, 0.35);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.hero-badge i { font-size: 0.95rem; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.08;
}

.hero h1 .gold-line {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust i { color: var(--green-500); }

/* Hero visual */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(2, 12, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 1 / 1;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(150deg, rgba(244, 215, 122, 0.5), rgba(255, 255, 255, 0.06) 40%, rgba(22, 138, 69, 0.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

/* Floating membership card */
.float-card {
  position: absolute;
  left: -42px;
  bottom: 34px;
  width: 240px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 18px;
  color: var(--ink-700);
  box-shadow: 0 30px 60px rgba(2, 12, 30, 0.45);
  animation: floatY 5.5s ease-in-out infinite;
  z-index: 3;
  border: 1px solid rgba(212, 166, 42, 0.25);
}

.float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}

.float-card .fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.float-card .fc-top img { width: 30px; height: 30px; border-radius: 8px; }
.float-card .fc-chip {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  background: var(--grad-gold);
}
.float-card .fc-plan { font-family: var(--font-head); font-size: 0.86rem; font-weight: 700; color: var(--navy-800); }
.float-card .fc-name { font-size: 0.8rem; color: var(--ink-500); margin-top: 2px; }
.float-card .fc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--ink-400);
}
.float-card .fc-row b { display: block; color: var(--ink-700); font-size: 0.78rem; }
.float-card .fc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.float-card .fc-foot span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; color: var(--green-600); text-transform: uppercase; }
.float-card .fc-qr { width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line); padding: 3px; }

/* Floating badges */
.float-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2, 12, 30, 0.35);
  z-index: 4;
}

.float-badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: #fff;
}

.float-badge.ic-green .ic { background: var(--grad-green); }
.float-badge.ic-gold .ic { background: var(--grad-gold); color: var(--navy-800); }
.float-badge.ic-navy .ic { background: var(--grad-navy); }

.fb-1 { top: 8%; right: -30px; animation: floatY 6s ease-in-out infinite 0.6s; }
.fb-2 { top: 34%; left: -58px; animation: floatY 6.5s ease-in-out infinite 1.1s; }
.fb-3 { bottom: -20px; right: 6%; animation: floatY 5.8s ease-in-out infinite 0.2s; }

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

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  animation: floatY 2.2s ease-in-out infinite;
  z-index: 3;
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 54px 0;
  position: relative;
  z-index: 5;
}

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

.stat-item {
  text-align: center;
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #fbfdff 0%, #f7fafd 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 166, 42, 0.4);
}

.stat-ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-num .suffix {
  font-size: 1.6rem;
  color: var(--gold-500);
}

.stat-label {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.stat-sub { font-size: 0.82rem; color: var(--ink-400); }

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .stat-num { font-size: 2.1rem; }
}

/* ---------- Why cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 166, 42, 0.45), rgba(22, 138, 69, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.f-icon-navy { background: var(--grad-navy); }
.f-icon-green { background: var(--grad-green); }
.f-icon-gold { background: var(--grad-gold); color: var(--navy-800); }

.feature-card h3 { font-size: 1.16rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.93rem; color: var(--ink-500); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Network section ---------- */
.network {
  background: var(--bg-soft);
}

.network-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

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

.network-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.network-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  padding: 1px;
  background: linear-gradient(160deg, rgba(22, 138, 69, 0.4), rgba(212, 166, 42, 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.network-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.network-card:hover::before { opacity: 1; }

.network-card .nic {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
}

.network-card h4 { font-size: 1rem; margin-bottom: 4px; }
.network-card span { font-size: 0.8rem; color: var(--ink-400); }

.network-art {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}

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

.network-note {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.network-note .pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.network-note .pill i { color: var(--green-600); }

@media (max-width: 900px) {
  .network-wrap { grid-template-columns: 1fr; }
  .network-art { order: -1; }
}

/* ---------- Plans ---------- */
.plans {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-soft) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--navy-800);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-gold);
}

.plan-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 22px;
}

.plan-icon.gold { background: var(--grad-gold); color: var(--navy-800); }
.plan-icon.navy { background: var(--grad-navy); }
.plan-icon.green { background: var(--grad-green); }

.plan-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 4px;
}
.plan-price .cur { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--gold-500); }
.plan-price .amt { font-family: var(--font-head); font-size: 2.9rem; font-weight: 800; color: var(--navy-800); line-height: 1; }
.plan-price .per { font-size: 0.9rem; color: var(--ink-400); font-weight: 500; }

.plan-members {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-600);
  background: var(--green-soft);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.plan-features {
  flex: 1;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-700);
  padding: 7px 0;
}

.plan-features li i {
  color: var(--green-600);
  font-size: 0.85rem;
  margin-top: 4px;
}

.plan-features li.none i { color: #c3ccdb; }

.plan-note {
  font-size: 0.78rem;
  color: var(--ink-400);
  margin-top: 14px;
  line-height: 1.5;
}

/* Popular (Gold) plan */
.plan-card.popular {
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-700) 100%);
  border: none;
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(8, 43, 99, 0.28), 0 0 0 1px rgba(212, 166, 42, 0.35);
  z-index: 2;
}
.plan-card.popular:hover { transform: scale(1.04) translateY(-8px); }

.plan-card.popular::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1.5px;
  background: linear-gradient(165deg, var(--gold-300), rgba(212, 166, 42, 0.55) 40%, rgba(244, 215, 122, 0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.plan-card.popular .plan-name { color: var(--white); }
.plan-card.popular .plan-price .cur { color: var(--gold-300); }
.plan-card.popular .plan-price .amt { color: var(--gold-300); }
.plan-card.popular .plan-price .per { color: rgba(255,255,255,0.6); }
.plan-card.popular .plan-members { background: rgba(255,255,255,0.12); color: var(--green-500); }
.plan-card.popular .plan-features li { color: rgba(255,255,255,0.85); }
.plan-card.popular .plan-features li i { color: var(--gold-300); }
.plan-card.popular .plan-features li.none i { color: rgba(255,255,255,0.25); }
.plan-card.popular .plan-note { color: rgba(255,255,255,0.55); }

@media (max-width: 1000px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; }
  .plan-card.popular { transform: none; order: -1; }
  .plan-card.popular:hover { transform: translateY(-8px); }
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 18px;
}

.benefit-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.benefit-card p { font-size: 0.86rem; color: var(--ink-500); }

@media (max-width: 1000px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Steps / How it works ---------- */
.steps {
  background: var(--grad-navy);
  color: var(--white);
  overflow: hidden;
}
.steps .section-head h2 { color: var(--white); }
.steps .section-head p { color: rgba(255,255,255,0.7); }
.steps .section-head .eyebrow { background: rgba(244,215,122,0.12); border-color: rgba(244,215,122,0.3); }

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

.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(244,215,122,0.1), rgba(244,215,122,0.55), rgba(22,138,69,0.55), rgba(244,215,122,0.1));
}

.step-item {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid rgba(244,215,122,0.4);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-300);
  box-shadow: 0 0 0 8px rgba(8,43,99,0.6);
}

.step-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.step-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

@media (max-width: 900px) {
  .steps-row { grid-template-columns: 1fr; gap: 36px; }
  .steps-row::before { display: none; }
  .step-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
    padding: 0;
  }
  .step-num { margin: 0; flex-shrink: 0; width: 64px; height: 64px; font-size: 1.2rem; }
  .step-item h3 { font-size: 1.05rem; }
}

/* ---------- Membership card showcase ---------- */
.card-showcase {
  background: var(--bg-soft);
}

.card-showcase-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.card-3d {
  perspective: 1400px;
}

.mcard {
  position: relative;
  aspect-ratio: 1.586;
  border-radius: 26px;
  background: linear-gradient(140deg, var(--navy-700) 0%, var(--navy-800) 55%, #06214e 100%);
  color: #fff;
  padding: 30px;
  box-shadow: 0 40px 80px rgba(8, 43, 99, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.mcard::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(244,215,122,0.28), transparent 60%);
}

.mcard::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 30px solid rgba(22, 138, 69, 0.18);
}

.mcard-sheen {
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  animation: sheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes sheen {
  0%, 55% { left: -120%; }
  85%, 100% { left: 140%; }
}

.mcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.mcard-brand { display: flex; align-items: center; gap: 10px; }
.mcard-brand img { width: 38px; height: 38px; border-radius: 10px; }
.mcard-brand strong { font-family: var(--font-head); font-size: 1.02rem; letter-spacing: 0.01em; display: block; line-height: 1.1; }
.mcard-brand span { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); }
.mcard-chip { width: 34px; height: 26px; border-radius: 6px; background: var(--grad-gold); box-shadow: 0 4px 12px rgba(212,166,42,0.4); }

.mcard-member { margin-top: 26px; position: relative; z-index: 2; }
.mcard-member .label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.mcard-member .name { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; margin-top: 4px; }
.mcard-member .meta { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.mcard-member .meta i { color: var(--green-500); margin-right: 6px; }

.mcard-bottom {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.mcard-info { display: flex; gap: 28px; }
.mcard-info .cell .label { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.mcard-info .cell b { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; display: block; margin-top: 2px; }
.mcard-qr {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.mcard-qr img { width: 100%; height: 100%; }

@media (max-width: 560px) {
  .mcard { padding: 22px; }
  .mcard-bottom { left: 22px; right: 22px; bottom: 20px; }
  .mcard-member .name { font-size: 1.2rem; }
  .mcard-info { gap: 16px; }
}

.card-copy .eyebrow { margin-left: 0; }
.card-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.card-copy p { color: var(--ink-500); margin-bottom: 26px; max-width: 480px; }
.card-copy .check-list { margin-bottom: 30px; }
.card-copy .check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.card-copy .check-list i { color: var(--green-600); }

@media (max-width: 900px) {
  .card-showcase-wrap { grid-template-columns: 1fr; gap: 44px; }
  .card-3d { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---------- Partner section ---------- */
.partner-hero {
  background: var(--grad-navy);
  color: var(--white);
  overflow: hidden;
}
.partner-hero .section-head h2 { color: var(--white); }
.partner-hero .section-head p { color: rgba(255,255,255,0.7); }

.partner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-copy h3 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.partner-copy p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 28px; }
.partner-copy .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.partner-art {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(2,12,30,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}
.partner-art img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .partner-wrap { grid-template-columns: 1fr; }
  .partner-art { order: -1; }
}

/* ---------- Marketing support ---------- */
.marketing-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.marketing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.marketing-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marketing-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.marketing-item .mic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #fff;
}
.marketing-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.marketing-item p { font-size: 0.78rem; color: var(--ink-400); }

.marketing-art {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.marketing-art img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .marketing-wrap { grid-template-columns: 1fr; }
  .marketing-art { order: -1; }
}
@media (max-width: 560px) {
  .marketing-list { grid-template-columns: 1fr; }
}

/* ---------- Partnership process timeline ---------- */
.process {
  background: var(--bg-soft);
}

.process-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-row::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  opacity: 0.35;
}

.process-step { text-align: center; position: relative; padding: 0 8px; }

.process-dot {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-800);
  font-size: 1.15rem;
  box-shadow: 0 0 0 6px rgba(212,166,42,0.15);
}

.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: var(--ink-500); }

@media (max-width: 900px) {
  .process-row { grid-template-columns: 1fr; gap: 30px; }
  .process-row::before { display: none; }
  .process-step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
  .process-dot { margin: 0; flex-shrink: 0; }
}

/* ---------- FAQ ---------- */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item.active {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
}

.faq-q .icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-500);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-q .icon {
  transform: rotate(135deg);
  background: var(--gold-500);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--ink-500);
  line-height: 1.7;
}

.faq-a-inner strong { color: var(--ink-700); }

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--navy-800) 0%, #0a3a22 100%);
  overflow: hidden;
  text-align: center;
  color: var(--white);
  padding: 110px 0;
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,42,0.16), transparent 65%);
}

.cta-final .container { position: relative; z-index: 2; }

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  max-width: 760px;
  margin: 0 auto 18px;
}

.cta-final h2 .gold-line {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-final p {
  color: rgba(255,255,255,0.8);
  font-size: 1.12rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.cta-note {
  margin-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
.contact-info > p { color: var(--ink-500); margin-bottom: 32px; }

.contact-links { display: grid; gap: 16px; margin-bottom: 30px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.contact-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }

.contact-link .clic {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
}
.contact-link .clic.gold { background: var(--grad-gold); color: var(--navy-800); }
.contact-link .clic.navy { background: var(--grad-navy); }
.contact-link .clic.green { background: var(--grad-green); }

.contact-link .txt small { display: block; font-size: 0.76rem; color: var(--ink-400); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.contact-link .txt b { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink-900); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-700); }

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--bg-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212,166,42,0.15);
}

.field textarea { min-height: 120px; resize: vertical; }

.field .error-msg { font-size: 0.78rem; color: #d6313a; display: none; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #d6313a; }
.field.invalid .error-msg { display: block; }

.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--ink-400);
}

.form-success {
  display: none;
  margin-top: 18px;
  background: var(--green-soft);
  border: 1px solid #c4e6d3;
  border-radius: var(--r-sm);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--green-600);
  align-items: flex-start;
  gap: 10px;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600), var(--navy-600));
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .brand { color: var(--white); margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; margin-bottom: 22px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.socials a:hover {
  background: var(--grad-gold);
  color: var(--navy-800);
  transform: translateY(-3px);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s ease, padding-left 0.2s ease; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: 0.6rem; color: var(--gold-500); }
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }

.footer-cat li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-cat li i { color: var(--green-500); font-size: 0.7rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

.footer-bottom .legal a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer-bottom .legal a:hover { color: var(--gold-300); }
.footer-bottom .legal span { margin: 0 8px; opacity: 0.4; }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 26, 63, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 40px 90px rgba(2,12,30,0.5);
  animation: modalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-700);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { background: var(--navy-800); color: #fff; transform: rotate(90deg); }

.modal-box h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-box > p { color: var(--ink-500); font-size: 0.94rem; margin-bottom: 26px; }

.modal-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-soft);
  border: 1px solid #f0e3bd;
  color: var(--gold-500);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.modal .form-grid { grid-template-columns: 1fr 1fr; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 3000;
  background: var(--navy-800);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 15px 26px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: calc(100vw - 40px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast i { color: var(--green-500); }

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-gold);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-gold);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ---------- A11y ---------- */
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  z-index: 4000;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   RESPONSIVE — Mobile-first polish
   ============================================================ */

/* Tablet & small desktop nav tightness */
@media (max-width: 1280px) {
  .nav-links a { padding: 9px 9px; font-size: 0.85rem; }
  .nav-cta .btn-sm { padding: 11px 18px; font-size: 0.84rem; }
}

/* Collapse hero to single column below 1000px */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 640px; }
  .hero-visual { max-width: 470px; width: 100%; margin: 0 auto; order: 2; }
  .hero-visual .float-card { left: -6px; }
  .hero-visual .fb-2 { left: -14px; }
}

/* Small tablets / large phones */
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  .hero {
    min-height: 0;
    padding: calc(var(--header-h) + 18px) 0 56px;
  }
  .hero h1 { font-size: clamp(2.05rem, 10vw, 2.9rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-cta { margin-bottom: 30px; }
  .hero-scroll { display: none; }
  .hero-glow { width: 400px; height: 400px; }

  .stats { padding: 34px 0; }
  .plan-card { padding: 34px 26px; }
  .cta-final { padding: 80px 0; }
  .footer { padding: 60px 0 0; }
  .footer-grid { gap: 36px; }
}

/* Phones */
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .btn { padding: 14px 22px; font-size: 0.92rem; }
  .btn-sm { padding: 11px 16px; font-size: 0.84rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { font-size: 0.82rem; justify-content: flex-start; gap: 8px 18px; }
  .hero-badge { font-size: 0.72rem; padding: 8px 14px; }

  .hero-visual { max-width: 400px; }
  .float-card {
    width: 176px;
    padding: 14px;
    left: 4px;
    bottom: 14px;
    border-radius: 14px;
  }
  .float-card .fc-plan { font-size: 0.78rem; }
  .float-card .fc-name { font-size: 0.7rem; }
  .float-card .fc-row { font-size: 0.64rem; }
  .float-card .fc-row b { font-size: 0.68rem; }
  .float-card .fc-top img { width: 26px; height: 26px; }

  .float-badge { font-size: 0.72rem; padding: 8px 12px; gap: 8px; border-radius: 12px; }
  .float-badge .ic { width: 28px; height: 28px; font-size: 0.78rem; border-radius: 8px; }
  .fb-1 { right: 0; top: 4%; }
  .fb-2 { left: 0; top: auto; bottom: 38%; }
  .fb-3 { right: 0; bottom: -6px; }

  .stat-ic { width: 42px; height: 42px; font-size: 1.05rem; margin-bottom: 12px; }
  .stat-num { font-size: 2rem; }
  .stat-num .suffix { font-size: 1.3rem; }
  .stat-item { padding: 20px 12px; }
  .stat-label { font-size: 0.85rem; }
  .stat-sub { font-size: 0.74rem; }

  .feature-card { padding: 26px 22px; }
  .benefit-card { padding: 24px 20px; }
  .network-card { padding: 22px 16px; }
  .marketing-item { padding: 16px; }

  .steps .step-num { width: 56px; height: 56px; font-size: 1.05rem; }
  .process-dot { width: 56px; height: 56px; font-size: 1rem; }

  .plan-members { font-size: 0.8rem; }
  .plan-price .amt { font-size: 2.4rem; }

  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; }
}

/* Extra small phones */
@media (max-width: 400px) {
  .brand-text strong { font-size: 1rem; }
  .brand-text span { display: none; }
  .nav-toggle { width: 42px; height: 42px; font-size: 1.1rem; }
  .nav-cta { gap: 8px; }

  .mcard { padding: 16px; border-radius: 20px; }
  .mcard-bottom { left: 16px; right: 16px; bottom: 14px; }
  .mcard-info { gap: 10px; flex-wrap: wrap; }
  .mcard-member .name { font-size: 1.02rem; }
  .mcard-brand strong { font-size: 0.86rem; }
  .mcard-brand img { width: 32px; height: 32px; }
  .mcard-chip { width: 28px; height: 20px; }
  .mcard-qr { width: 48px; height: 48px; }
  .mcard-member .meta { font-size: 0.74rem; }
  .mcard-info .cell b { font-size: 0.7rem; }

  .contact-links .contact-link { padding: 14px 16px; gap: 14px; }
  .contact-link .clic { width: 44px; height: 44px; font-size: 1.1rem; }
  .contact-link .txt b { font-size: 0.94rem; }
}

/* Mobile modal as bottom sheet */
@media (max-width: 560px) {
  .modal { padding: 12px; align-items: flex-end; }
  .modal-box {
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    padding: 28px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    animation: sheetUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .modal .form-grid { grid-template-columns: 1fr; }
}

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