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

    :root {
      --blue:        #1D4ED8;
      --blue-mid:    #2563EB;
      --blue-light:  #3B82F6;
      --blue-glow:   rgba(37,99,235,0.25);
      --green:       #059669;
      --green-light: #10B981;
      --dark:        #0D1117;
      --dark2:       #111827;
      --dark3:       #1F2937;
      --white:       #FFFFFF;
      --grey:        #9CA3AF;
      --gold:        #FBBF24;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── PAGE LOADER ── */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-inner { text-align: center; }
    .loader-ring {
      width: 56px; height: 56px;
      border: 3px solid rgba(37,99,235,0.2);
      border-top-color: var(--blue-light);
      border-radius: 50%;
      animation: spin 0.9s linear infinite;
      margin: 0 auto 16px;
    }
    .loader-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--grey);
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── CURSOR GLOW ── */
    .cursor-glow {
      pointer-events: none;
      position: fixed;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 1;
      transition: opacity 0.3s;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
      transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(13,17,23,0.96);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo img { height: 36px; transition: transform 0.3s; }
    .nav-logo:hover img { transform: scale(1.05); }
    .nav-logo span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase;
    }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      color: var(--grey); text-decoration: none;
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase;
      position: relative; transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--blue-light);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      background: var(--blue);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 3px;
      font-size: 0.78rem; font-weight: 700;
      text-decoration: none; text-transform: uppercase;
      letter-spacing: 1.5px;
      position: relative; overflow: hidden;
      transition: transform 0.2s;
    }
    .nav-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }
    .nav-cta:hover::before { transform: translateX(100%); }
    .nav-cta:hover { transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed;
      top: 70px; left: 0; right: 0;
      background: rgba(13,17,23,0.99);
      z-index: 999; padding: 28px 5%;
      flex-direction: column; gap: 22px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      animation: slideDown 0.3s ease;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: var(--white); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      padding-top: 70px;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      background: var(--dark);
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(29,78,216,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(5,150,105,0.08) 0%, transparent 45%);
      animation: heroBgPulse 8s ease-in-out infinite alternate;
    }
    @keyframes heroBgPulse {
      from { opacity: 0.7; }
      to   { opacity: 1; }
    }

    /* Animated grid lines */
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }
    @keyframes gridMove {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }

    .hero-inner {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1200px; margin: 0 auto;
      padding: 80px 5%; gap: 50px; width: 100%;
    }

    .hero-text { flex: 1; }

    .hero-label {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(29,78,216,0.15);
      border: 1px solid rgba(37,99,235,0.4);
      color: var(--blue-light);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 7px 14px; border-radius: 2px;
      margin-bottom: 24px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.3s forwards;
    }
    .hero-label::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--blue-light);
      border-radius: 50%;
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .hero-text h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 6.5vw, 5.5rem);
      font-weight: 900; line-height: 0.95;
      text-transform: uppercase; letter-spacing: -1px;
      margin-bottom: 24px;
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 0.8s ease 0.5s forwards;
    }
    .hero-text h1 .line-blue { color: var(--blue-light); }
    .hero-text h1 .line-outline {
      -webkit-text-stroke: 2px rgba(255,255,255,0.25);
      color: transparent;
    }

    .hero-sub {
      color: var(--grey); font-size: 1.05rem; line-height: 1.75;
      max-width: 460px; margin-bottom: 36px;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.7s forwards;
    }

    .hero-btns {
      display: flex; gap: 14px; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.7s ease 0.9s forwards;
    }

    .btn-primary {
      background: var(--blue);
      color: var(--white);
      padding: 14px 30px; border-radius: 3px;
      font-weight: 700; text-decoration: none;
      font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
      position: relative; overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform 0.5s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
    .btn-primary:hover::after { transform: translateX(100%); }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--white);
      padding: 14px 30px; border-radius: 3px;
      font-weight: 600; text-decoration: none;
      font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
      transition: border-color 0.3s, background 0.3s;
    }
    .btn-outline:hover { border-color: var(--blue-light); background: rgba(37,99,235,0.1); }

    .hero-img {
      flex: 1; max-width: 500px;
      position: relative;
      opacity: 0; transform: translateX(40px) scale(0.96);
      animation: fadeRight 0.9s ease 0.6s forwards;
    }

    .hero-img::before {
      content: '';
      position: absolute; inset: -2px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--blue-mid), transparent 60%);
      z-index: -1;
      animation: borderGlow 3s ease infinite alternate;
    }
    @keyframes borderGlow {
      from { opacity: 0.4; }
      to   { opacity: 0.9; }
    }

    .hero-img img {
      width: 100%; border-radius: 8px;
      object-fit: cover; display: block;
    }

    /* Floating badge */
    .hero-badge {
      position: absolute; bottom: 24px; left: -24px;
      background: var(--dark2);
      border: 1px solid rgba(37,99,235,0.3);
      border-radius: 8px; padding: 14px 18px;
      display: flex; align-items: center; gap: 12px;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    .badge-icon { font-size: 1.6rem; }
    .badge-text-top { font-size: 0.7rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
    .badge-text-bot { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--green-light); }

    @keyframes fadeUp   { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeRight { to { opacity: 1; transform: translateX(0) scale(1); } }

    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--blue);
      padding: 22px 5%;
      display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
      position: relative; overflow: hidden;
    }
    .stats-bar::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
      animation: shimmer 3s ease infinite;
    }
    @keyframes shimmer {
      from { transform: translateX(-100%); }
      to   { transform: translateX(100%); }
    }
    .stat { text-align: center; position: relative; z-index: 1; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.8rem; font-weight: 900;
    }
    .stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0; transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

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

    /* ── SECTIONS ── */
    section { padding: 100px 5%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      color: var(--blue-light);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 14px; position: relative;
      padding-left: 20px;
    }
    .section-tag::before {
      content: '';
      position: absolute; left: 0; top: 50%;
      transform: translateY(-50%);
      width: 10px; height: 2px; background: var(--blue-light);
    }

    h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900; text-transform: uppercase;
      letter-spacing: -0.5px; line-height: 1.05;
      margin-bottom: 18px;
    }

    .section-desc {
      color: var(--grey); max-width: 560px;
      font-size: 1rem; line-height: 1.75;
      margin-bottom: 54px;
    }

    /* ── WHY US ── */
    #whyus { background: var(--dark2); position: relative; overflow: hidden; }
    #whyus::before {
      content: '';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(29,78,216,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 36px;
      position: relative; overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .feature-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.4s;
    }
    .feature-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,0.4); box-shadow: 0 16px 40px rgba(37,99,235,0.12); }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 52px; height: 52px;
      background: rgba(29,78,216,0.15);
      border: 1px solid rgba(37,99,235,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 20px;
      transition: background 0.3s;
    }
    .feature-card:hover .feature-icon { background: rgba(29,78,216,0.3); }
    .feature-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 12px; }
    .feature-card p { color: var(--grey); font-size: 0.93rem; line-height: 1.7; }

    /* ── VITALITY ── */
    #vitality {
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    #vitality::after {
      content: '';
      position: absolute; bottom: -100px; left: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(5,150,105,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .vitality-inner { display: flex; align-items: center; gap: 70px; }
    .vitality-text { flex: 1; }
    .vitality-img {
      flex: 1;
      position: relative;
      min-width: 0;
    }
    .vitality-img img {
      width: 100%;
      height: clamp(220px, 40vw, 420px);
      object-fit: contain;
      object-position: center;
      border-radius: 10px;
      display: block;
      background: rgba(255,255,255,0.03);
      padding: 24px;
    }
    .vitality-img::before {
      content: '';
      position: absolute; top: -12px; right: -12px;
      bottom: 12px; left: 12px;
      border: 2px solid rgba(5,150,105,0.3);
      border-radius: 10px;
      transition: transform 0.3s;
    }
    .vitality-img:hover::before { transform: translate(4px,-4px); }

    .vitality-badge {
      display: inline-block;
      background: var(--green);
      color: #fff;
      font-size: 0.7rem; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 2px; margin-bottom: 18px;
    }

    .vitality-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

    .btn-green {
      background: var(--green); color: #fff;
      padding: 13px 26px; border-radius: 3px;
      font-weight: 700; text-decoration: none;
      font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5,150,105,0.35); }

    .vitality-note { font-size: 0.75rem; color: rgba(255,255,255,0.28); margin-top: 16px; }

    /* ── CLASSES ── */
    #classes { background: var(--dark2); }

    .classes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .class-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px; overflow: hidden;
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s, box-shadow 0.35s;
      position: relative; cursor: pointer;
    }
    .class-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(37,99,235,0.45); box-shadow: 0 20px 50px rgba(29,78,216,0.2); }
    .class-card.featured { border-color: var(--blue-mid); }
    .class-card.featured::before {
      content: 'POPULAR';
      position: absolute; top: 14px; right: 14px;
      background: var(--blue); color: #fff;
      font-size: 0.62rem; font-weight: 800;
      letter-spacing: 2px; padding: 5px 12px;
      border-radius: 2px; z-index: 2;
    }

    .class-img-wrap { position: relative; overflow: hidden; height: 210px; }
    .class-img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .class-card:hover .class-img { transform: scale(1.06); }
    .class-img-wrap::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(transparent, var(--dark3));
    }

    .class-body { padding: 26px; }
    .class-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
    .class-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 8px; }
    .class-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 18px; }
    .class-price span { font-size: 0.8rem; font-weight: 400; font-family: 'Barlow', sans-serif; color: var(--grey); }

    .class-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
    .class-features li {
      color: var(--grey); font-size: 0.88rem;
      padding-left: 18px; position: relative;
      transition: color 0.2s;
    }
    .class-features li::before { content: '→'; position: absolute; left: 0; color: var(--blue-light); font-size: 0.8rem; }
    .class-card:hover .class-features li { color: #C4C9D4; }

    .class-cta {
      display: block;
      background: rgba(29,78,216,0.1);
      border: 1px solid rgba(37,99,235,0.35);
      color: var(--white); text-align: center;
      padding: 13px; border-radius: 4px;
      text-decoration: none; font-size: 0.82rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
      transition: background 0.25s, border-color 0.25s, transform 0.2s;
    }
    .class-cta:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }

    /* ── REVIEWS ── */
    #reviews { background: var(--dark); position: relative; overflow: hidden; }
    #reviews::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 22px;
    }

    .review-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 30px;
      position: relative; overflow: hidden;
      transition: transform 0.3s, border-color 0.3s;
    }
    .review-card::before {
      content: '"';
      position: absolute; top: 10px; right: 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 6rem; font-weight: 900;
      color: rgba(37,99,235,0.08); line-height: 1;
    }
    .review-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.25); }

    .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 3px; }
    .review-text { color: var(--grey); font-size: 0.9rem; line-height: 1.75; margin-bottom: 22px; font-style: italic; }
    .reviewer { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.5px; }

    /* ── CTA SECTION ── */
    #cta {
      background: linear-gradient(135deg, var(--blue) 0%, #1E3A8A 100%);
      text-align: center; padding: 90px 5%;
      position: relative; overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    #cta h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
    #cta p { color: rgba(255,255,255,0.75); margin-bottom: 34px; font-size: 1.05rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
    .btn-white {
      background: #fff; color: var(--blue);
      padding: 15px 36px; border-radius: 3px;
      font-weight: 800; text-decoration: none;
      font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px;
      position: relative; z-index: 1;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }

    /* ── FAQ ── */
    .faq-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 8px;
      transition: border-color 0.3s;
    }
    .faq-item[open] { border-color: rgba(37,99,235,0.35); }
    .faq-item summary {
      padding: 20px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--blue-light);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .faq-item[open] summary::after { content: '−'; }
    .faq-item p {
      padding: 0 24px 20px;
      color: var(--grey);
      font-size: 0.93rem;
      line-height: 1.75;
    }

    /* ── FOOTER ── */
    footer {
      background: #080C12;
      padding: 64px 5% 0;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    .footer-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; padding-bottom: 54px;
    }

    .footer-brand img { height: 36px; margin-bottom: 16px; }
    .footer-brand p { color: var(--grey); font-size: 0.88rem; line-height: 1.75; max-width: 270px; }

    .footer-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.78rem; font-weight: 800;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--white); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-col a { color: var(--grey); text-decoration: none; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
    .footer-col a:hover { color: var(--white); padding-left: 4px; }
    .footer-col p { color: var(--grey); font-size: 0.88rem; line-height: 1.8; }

    .footer-divider { max-width: 1200px; margin: 0 auto; border: none; border-top: 1px solid rgba(255,255,255,0.05); }

    .footer-bottom {
      max-width: 1200px; margin: 0 auto;
      padding: 22px 0;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }

    .footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

    .cococorp-tag {
      display: flex; align-items: center; gap: 7px;
      font-size: 0.78rem; color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .cococorp-tag:hover { color: rgba(255,255,255,0.7); }
    .cococorp-dot {
      width: 7px; height: 7px;
      background: var(--green); border-radius: 50%;
      animation: pulse 2s ease infinite;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .vitality-inner { flex-direction: column; }
      .vitality-img { margin-top: 10px; }
      .vitality-img::before { display: none; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-inner { flex-direction: column; text-align: center; padding: 60px 5%; }
      .hero-btns { justify-content: center; }
      .hero-img { max-width: 100%; }
      .hero-img::before { display: none; }
      .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; white-space: nowrap; }
      .stats-bar { gap: 32px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .hero-text h1 { font-size: 2.8rem; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-badge { display: none; }
    }
  

    /* ══════════════════════════════════════════
       MULTI-PAGE ADDITIONS
       ══════════════════════════════════════════ */

    /* Active nav link state */
    .nav-links a.active { color: var(--white); }
    .nav-links a.active::after { transform: scaleX(1); }
    .mobile-menu a.active { color: var(--blue-light); }

    /* ── INTERIOR PAGE HERO ── */
    .page-hero {
      position: relative; overflow: hidden;
      padding: 150px 5% 90px;
      background: var(--dark);
      text-align: center;
    }
    .page-hero .hero-bg,
    .page-hero .hero-grid { position: absolute; inset: 0; }
    .page-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
    .page-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.6rem, 5.5vw, 4.4rem);
      font-weight: 900; line-height: 0.98;
      text-transform: uppercase; letter-spacing: -1px;
      margin-bottom: 20px;
    }
    .page-hero h1 .accent { color: var(--blue-light); }
    .page-hero p {
      color: var(--grey); font-size: 1.05rem; line-height: 1.75;
      max-width: 560px; margin: 0 auto;
    }
    .breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue-light);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      margin-bottom: 18px;
    }

    /* ── CORPORATE SELF-DEFENCE SPOTLIGHT ── */
    #corporate {
      background: var(--dark);
      position: relative; overflow: hidden;
    }
    .corp-spotlight {
      max-width: 1200px; margin: 0 auto;
      position: relative;
      border-radius: 16px; overflow: hidden;
      border: 1px solid rgba(5,150,105,0.35);
      background:
        radial-gradient(ellipse at 80% 0%, rgba(5,150,105,0.18) 0%, transparent 55%),
        linear-gradient(135deg, #0E1B17 0%, var(--dark2) 60%);
    }
    .corp-spotlight::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px);
      background-size: 54px 54px;
      pointer-events: none;
      mask-image: linear-gradient(135deg, black, transparent 70%);
      -webkit-mask-image: linear-gradient(135deg, black, transparent 70%);
    }
    .corp-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1.15fr 0.85fr;
      gap: 48px; align-items: center;
      padding: 56px;
    }
    .corp-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(5,150,105,0.16);
      border: 1px solid rgba(16,185,129,0.4);
      color: var(--green-light);
      font-size: 0.7rem; font-weight: 800;
      letter-spacing: 2.5px; text-transform: uppercase;
      padding: 7px 15px; border-radius: 40px; margin-bottom: 20px;
    }
    .corp-badge .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--green-light); animation: pulse 2s ease infinite;
    }
    .corp-inner h2 { margin-bottom: 18px; }
    .corp-inner h2 .hl { color: var(--green-light); }
    .corp-lead {
      color: var(--grey); font-size: 1.02rem; line-height: 1.8;
      margin-bottom: 26px; max-width: 560px;
    }
    .corp-points { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
    .corp-points li {
      display: flex; gap: 12px; align-items: flex-start;
      color: #C4C9D4; font-size: 0.94rem; line-height: 1.55;
    }
    .corp-points li .tick {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
      background: rgba(5,150,105,0.18); border: 1px solid rgba(16,185,129,0.4);
      color: var(--green-light); font-size: 0.75rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }
    .corp-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    .corp-panel {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 14px; padding: 32px;
    }
    .corp-panel h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.15rem; font-weight: 800; letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    .corp-panel .corp-panel-sub { color: var(--grey); font-size: 0.85rem; margin-bottom: 22px; }
    .corp-format { list-style: none; display: flex; flex-direction: column; gap: 16px; }
    .corp-format li { display: flex; gap: 14px; align-items: flex-start; }
    .corp-format .ic {
      flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
      background: rgba(5,150,105,0.15); border: 1px solid rgba(16,185,129,0.3);
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    }
    .corp-format .ft-t { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; }
    .corp-format .ft-d { color: var(--grey); font-size: 0.84rem; line-height: 1.55; }

    /* Corporate teaser (home page) */
    .corp-teaser {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; flex-wrap: wrap;
      background:
        radial-gradient(ellipse at 90% 20%, rgba(5,150,105,0.16) 0%, transparent 50%),
        linear-gradient(135deg, #0E1B17 0%, var(--dark2) 60%);
      border: 1px solid rgba(5,150,105,0.35);
      border-radius: 16px; padding: 44px 48px;
    }
    .corp-teaser .ct-text { flex: 1; min-width: 280px; }
    .corp-teaser h2 { margin-bottom: 14px; }
    .corp-teaser h2 .hl { color: var(--green-light); }
    .corp-teaser p { color: var(--grey); font-size: 0.98rem; line-height: 1.75; max-width: 520px; }

    /* ── FEATURED TESTIMONIAL (member spotlight) ── */
    .featured-testimonial {
      max-width: 1080px; margin: 0 auto 60px;
      position: relative;
      display: grid; grid-template-columns: 0.9fr 1.1fr;
      background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
      border: 1px solid rgba(37,99,235,0.35);
      border-radius: 16px; overflow: hidden;
    }
    .ft-media { position: relative; min-height: 380px; overflow: hidden; }
    .ft-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ft-media::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent 55%, var(--dark2) 100%),
                  linear-gradient(0deg, rgba(13,17,23,0.6), transparent 50%);
    }
    .ft-play {
      position: absolute; top: 18px; left: 18px; z-index: 2;
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(13,17,23,0.72); backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 8px 14px; border-radius: 40px;
    }
    .ft-play .tri {
      width: 0; height: 0;
      border-left: 8px solid var(--blue-light);
      border-top: 5px solid transparent; border-bottom: 5px solid transparent;
    }
    .ft-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
    .ft-eyebrow {
      color: var(--blue-light); font-size: 0.7rem; font-weight: 800;
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
    }
    .ft-quote {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.4rem, 2.4vw, 1.9rem);
      font-weight: 700; line-height: 1.25; letter-spacing: -0.3px;
      margin-bottom: 22px;
    }
    .ft-quote .em { color: var(--blue-light); }
    .ft-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.5px; }
    .ft-role { color: var(--grey); font-size: 0.85rem; margin-bottom: 26px; }

    .ft-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
    .ft-stat {
      flex: 1; min-width: 120px;
      background: rgba(37,99,235,0.08);
      border: 1px solid rgba(37,99,235,0.28);
      border-radius: 10px; padding: 16px 18px;
    }
    .ft-stat .n { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--blue-light); line-height: 1; }
    .ft-stat .l { color: var(--grey); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

    .ft-benefits { display: flex; flex-wrap: wrap; gap: 9px; }
    .ft-chip {
      font-size: 0.78rem; font-weight: 600;
      color: #C4C9D4;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 7px 13px; border-radius: 40px;
    }

    /* ── TRAINER CARDS ── */
    .trainers-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 26px;
    }
    .trainer-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px; overflow: hidden;
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s, box-shadow 0.35s;
    }
    .trainer-card:hover { transform: translateY(-8px); border-color: rgba(37,99,235,0.45); box-shadow: 0 20px 50px rgba(29,78,216,0.2); }
    .trainer-photo { position: relative; height: 300px; overflow: hidden; }
    .trainer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .trainer-card:hover .trainer-photo img { transform: scale(1.05); }
    .trainer-photo::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 110px;
      background: linear-gradient(transparent, var(--dark3));
    }
    .trainer-body { padding: 26px; }
    .trainer-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
    .trainer-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 12px; }
    .trainer-body p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
    .trainer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .trainer-tag {
      font-size: 0.72rem; font-weight: 600; color: #C4C9D4;
      background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.25);
      padding: 5px 11px; border-radius: 40px;
    }

    /* ── ABOUT: story split ── */
    .story-split { display: flex; gap: 64px; align-items: center; }
    .story-split .story-text { flex: 1; }
    .story-split .story-img { flex: 1; position: relative; min-width: 0; }
    .story-split .story-img img { width: 100%; border-radius: 12px; object-fit: cover; display: block; }
    .story-split .story-img::before {
      content: ''; position: absolute; top: -12px; right: -12px; bottom: 12px; left: 12px;
      border: 2px solid rgba(37,99,235,0.3); border-radius: 12px; transition: transform 0.3s;
    }
    .story-split .story-img:hover::before { transform: translate(4px,-4px); }

    /* ── INFO BAND (location / hours) ── */
    .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
    .info-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px; padding: 30px;
    }
    .info-card .info-ic { font-size: 1.5rem; margin-bottom: 14px; }
    .info-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 10px; }
    .info-card p, .info-card a { color: var(--grey); font-size: 0.9rem; line-height: 1.7; text-decoration: none; }
    .info-card a:hover { color: var(--white); }

    /* Section on darker bg helper */
    .bg-dark2 { background: var(--dark2); }
    .center-tag { text-align: center; }
    .center-tag .section-tag { padding-left: 0; }
    .center-tag .section-tag::before { display: none; }
    .center-tag .section-desc { margin-left: auto; margin-right: auto; }

    /* ── FLOATING WHATSAPP ── */
    .wa-float {
      position: fixed; bottom: 22px; right: 22px; z-index: 900;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,0.5); }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; }

    /* ── RESPONSIVE (multi-page) ── */
    @media (max-width: 900px) {
      .corp-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 30px; }
      .featured-testimonial { grid-template-columns: 1fr; }
      .ft-media { min-height: 260px; }
      .ft-media::after { background: linear-gradient(0deg, var(--dark2) 4%, transparent 55%); }
      .story-split { flex-direction: column; }
      .story-split .story-img::before { display: none; }
    }
    @media (max-width: 640px) {
      .page-hero { padding: 130px 5% 70px; }
      .corp-teaser { padding: 34px 26px; }
      .ft-body { padding: 30px; }
      .corp-inner { padding: 32px 22px; }
    }

    /* ── INLINE LINE ICONS (replacing emoji) ── */
    .feature-icon { color: var(--blue-light); }
    .feature-icon svg { width: 26px; height: 26px; }
    .corp-format .ic { color: var(--green-light); }
    .corp-format .ic svg { width: 22px; height: 22px; }
    .info-card .info-ic { color: var(--blue-light); }
    .info-card .info-ic svg { width: 26px; height: 26px; display: block; }
    .badge-icon { color: var(--green-light); display: flex; align-items: center; }
    .badge-icon svg { width: 26px; height: 26px; }

    /* ══════════════════════════════════════════
       LEAN HOME: DIRECTOR CARDS / PROOF / SLIM BANDS
       ══════════════════════════════════════════ */
    .director-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .path-card {
      display: flex; flex-direction: column;
      background: var(--dark3); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px; padding: 34px; text-decoration: none; color: var(--white);
      position: relative; overflow: hidden;
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s, box-shadow 0.35s;
    }
    .path-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(37,99,235,0.08), transparent 60%);
      opacity: 0; transition: opacity 0.4s;
    }
    .path-card:hover { transform: translateY(-8px); border-color: rgba(37,99,235,0.45); box-shadow: 0 20px 50px rgba(29,78,216,0.2); }
    .path-card:hover::before { opacity: 1; }
    .pc-ic {
      width: 52px; height: 52px; border-radius: 12px;
      background: rgba(29,78,216,0.15); border: 1px solid rgba(37,99,235,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--blue-light); margin-bottom: 20px; position: relative; z-index: 1;
    }
    .pc-ic svg { width: 26px; height: 26px; }
    .path-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 10px; position: relative; z-index: 1; }
    .path-card p { color: var(--grey); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; flex: 1; position: relative; z-index: 1; }
    .pc-link { color: var(--blue-light); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
    .pc-link .arr { transition: transform 0.25s; }
    .path-card:hover .pc-link .arr { transform: translateX(5px); }

    /* Proof strip */
    .proof-quote {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(1.6rem, 3.2vw, 2.4rem);
      font-weight: 700; line-height: 1.3; letter-spacing: -0.3px;
      max-width: 820px; margin: 0 auto 18px;
    }
    .proof-quote .em { color: var(--blue-light); }
    .proof-name { color: var(--grey); font-size: 0.9rem; margin-bottom: 30px; }
    .proof-stats { justify-content: center; max-width: 640px; margin: 0 auto 32px; }

    /* Slim Vitality band (blue variant of corp-teaser) */
    .corp-teaser.blue {
      border-color: rgba(37,99,235,0.35);
      background:
        radial-gradient(ellipse at 90% 20%, rgba(37,99,235,0.16) 0%, transparent 50%),
        linear-gradient(135deg, #0E1526 0%, var(--dark2) 60%);
    }
    .corp-teaser.blue h2 .hl { color: var(--blue-light); }

    /* ══════════════════════════════════════════
       DISCOVERY VITALITY BENEFIT / TIER TABLE
       ══════════════════════════════════════════ */
    #vitality-benefit { position: relative; overflow: hidden; }
    #vitality-benefit::before {
      content: ''; position: absolute; top: -180px; right: -160px;
      width: 520px; height: 520px; border-radius: 50%;
      background: radial-gradient(circle, rgba(5,150,105,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .vb-lead {
      max-width: 620px; margin: 0 auto 44px;
      color: var(--grey); font-size: 1.02rem; line-height: 1.7;
    }
    .vb-lead .u { color: var(--white); font-weight: 600; text-decoration: underline; text-decoration-color: var(--green-light); text-underline-offset: 3px; }

    .vitality-tiers { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .tier-row {
      display: flex; align-items: center; gap: 18px;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 15px 22px;
      transition: border-color 0.3s, transform 0.3s, background 0.3s;
    }
    .tier-row:hover { border-color: rgba(16,185,129,0.35); background: rgba(255,255,255,0.05); transform: translateX(4px); }
    .tier-badge {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      border: 2px solid currentColor;
    }
    .tier-badge svg { width: 18px; height: 18px; }
    .tier-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 1rem; flex: 1; color: var(--white); }
    .tier-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.12); }
    .tier-count { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--white); min-width: 118px; text-align: right; }
    .tier-count span { font-family: 'Barlow', sans-serif; font-weight: 400; font-size: 0.72rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: -2px; }

    .vitality-features {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px; max-width: 860px; margin: 46px auto 0;
    }
    .vf-item { text-align: center; }
    .vf-ic {
      width: 50px; height: 50px; border-radius: 12px;
      background: rgba(5,150,105,0.15); border: 1px solid rgba(16,185,129,0.3);
      color: var(--green-light); display: flex; align-items: center; justify-content: center;
      margin: 0 auto 14px;
    }
    .vf-ic svg { width: 24px; height: 24px; }
    .vf-item h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; letter-spacing: 0.5px; font-size: 1rem; margin-bottom: 6px; }
    .vf-item p { color: var(--grey); font-size: 0.85rem; line-height: 1.6; }

    .vb-cta { text-align: center; margin-top: 48px; }
    .vb-cta .vb-note { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-top: 14px; }

    @media (max-width: 480px) {
      .tier-row { padding: 14px 16px; gap: 12px; }
      .tier-count { font-size: 1.25rem; min-width: 92px; }
      .tier-name { font-size: 0.88rem; letter-spacing: 1.5px; }
    }

    /* ── INSTAGRAM BANNER ── */
    .ig-banner {
      display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
      border-radius: 16px; padding: 32px 40px; text-decoration: none; color: var(--white);
      border: 1px solid rgba(255,255,255,0.1);
      background:
        radial-gradient(ellipse at 0% 0%, rgba(225,48,108,0.16) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(131,58,180,0.16) 0%, transparent 55%),
        linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 60%);
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .ig-banner:hover { transform: translateY(-3px); border-color: rgba(225,48,108,0.4); box-shadow: 0 16px 40px rgba(131,58,180,0.2); }
    .ig-left { display: flex; align-items: center; gap: 20px; }
    .ig-icon {
      width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; color: #fff;
      background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .ig-icon svg { width: 30px; height: 30px; }
    .ig-handle { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: 0.5px; }
    .ig-sub { color: var(--grey); font-size: 0.92rem; line-height: 1.5; margin-top: 3px; max-width: 440px; }
    .ig-cta {
      display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0;
      background: linear-gradient(135deg, #833AB4 0%, #E1306C 55%, #F77737 100%);
      color: #fff; padding: 13px 26px; border-radius: 40px;
      font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px;
    }
    .ig-cta .arr { transition: transform 0.25s; }
    .ig-banner:hover .ig-cta .arr { transform: translateX(4px); }
    @media (max-width: 640px) { .ig-banner { padding: 26px; } .ig-left { align-items: flex-start; } }
