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

    :root {
      --black:   #050505;
      --dark:    #0e0e0e;
      --card:    #141414;
      --border:  #1e1e1e;
      --orange:  #FF6A00;
      --orange2: #FF8C00;
      --gold:    #FFB700;
      --green:   #25D366;
      --white:   #F5F0EB;
      --muted:   #6e6e6e;
      --fd:      'Bebas Neue', cursive;
      --fs:      'Rajdhani', sans-serif;
      --fb:      'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--fb);
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── GRAIN ─── */
    body::after {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none; z-index: 9500;
      opacity: .035;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    /* ─── CURSOR ─── */
    .cur-dot {
      position: fixed; width: 8px; height: 8px;
      background: var(--orange); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform .08s;
    }
    .cur-ring {
      position: fixed; width: 38px; height: 38px;
      border: 1.5px solid rgba(255,61,0,.45); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: width .3s, height .3s, border-color .3s, opacity .3s;
    }
    .cur-ring.hov { width: 58px; height: 58px; border-color: var(--orange); }

    /* ─── PAGE LOADER ─── */
    #loader {
      position: fixed; inset: 0;
      background: var(--black); z-index: 10000;
      display: flex; align-items: center; justify-content: center;
      transition: opacity .6s ease, visibility .6s ease;
    }
    #loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
    .ld-inner { text-align: center; }
    .ld-bar-wrap {
      width: 200px; height: 2px;
      background: #1a1a1a; margin: 16px auto 0; overflow: hidden;
    }
    .ld-bar {
      height: 100%; background: var(--orange);
      animation: ldFill .8s ease-in forwards;
    }
    @keyframes ldFill { from { width: 0; } to { width: 100%; } }
    .ld-text {
      font-family: var(--fd); font-size: 3.5rem;
      letter-spacing: 10px; color: var(--white);
    }
    .ld-text span { color: var(--orange); }

    /* ─── NAV ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 22px 52px;
      display: flex; align-items: center; justify-content: space-between;
      transition: padding .4s ease, background .4s, backdrop-filter .4s, border .3s;
    }
    .nav.scrolled {
      padding: 13px 52px;
      background: rgba(5,5,5,.88);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: var(--fd); font-size: 1.7rem; letter-spacing: 3px;
      color: var(--white); text-decoration: none;
    }
    .nav-logo em { color: var(--orange); font-style: normal; }
    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      font-family: var(--fs); font-size: .82rem; font-weight: 600;
      letter-spacing: 1.8px; text-transform: uppercase;
      color: rgba(245,240,235,.65); text-decoration: none;
      transition: color .25s;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-cta {
      font-family: var(--fs); font-weight: 700; font-size: .82rem;
      letter-spacing: 2px; text-transform: uppercase;
      background: var(--orange); color: var(--white);
      padding: 10px 24px; text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .3s;
    }
    .nav-cta:hover {
      background: var(--orange2); transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(255,61,0,.35);
    }
    .nav-burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; z-index: 2000;
    }
    .nav-burger span {
      display: block; width: 24px; height: 2px;
      background: var(--white); transition: .35s cubic-bezier(.4,0,.2,1);
    }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    /* ─── MOBILE OVERLAY NAV ─── */
    .mob-nav {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(380px, 85vw);
      background: rgba(10,10,10,.92);
      backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
      border-left: 1px solid rgba(255,255,255,.08);
      z-index: 1500;
      display: flex; flex-direction: column;
      padding: 100px 40px 40px;
      gap: 0;
      transform: translateX(100%);
      transition: transform .5s cubic-bezier(.77,0,.175,1);
    }
    .mob-nav.open { transform: none; }
    .mob-close {
      position: absolute; top: 20px; right: 24px;
      background: none; border: 1px solid rgba(255,255,255,.1);
      color: var(--white); font-size: 1.8rem; line-height: 1;
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: border-color .3s, color .3s, transform .3s;
    }
    .mob-close:hover { border-color: var(--orange); color: var(--orange); transform: rotate(90deg); }
    .mob-nav::before {
      content: 'ASPIRE FITNESS';
      position: absolute; top: 28px; left: 40px;
      font-family: var(--fd); font-size: 1.4rem; letter-spacing: 3px;
      color: var(--orange); opacity: .6;
    }
    .mob-nav a {
      font-family: var(--fd); font-size: 1.6rem;
      letter-spacing: 3px; color: rgba(255,255,255,.7); text-decoration: none;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: color .25s, padding-left .3s, border-color .3s;
      position: relative;
    }
    .mob-nav a:first-child { border-top: 1px solid rgba(255,255,255,.06); }
    .mob-nav a:hover, .mob-nav a:active { 
      color: var(--orange); padding-left: 12px;
      border-bottom-color: rgba(255,61,0,.3);
    }
    .mob-nav a::before {
      content: '';
      position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      width: 0; height: 2px; background: var(--orange);
      transition: width .3s;
    }
    .mob-nav a:hover::before { width: 6px; }

    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 100svh;
      display: flex; flex-direction: column; justify-content: center; align-items: flex-start; overflow: hidden;
      padding-top: clamp(84px, 9vh, 104px); padding-bottom: clamp(14px, 3vh, 32px);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('img1.avif') center/cover no-repeat;
      transform: scale(1.12);
      will-change: transform;
    }
    .hero-ov {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(5,5,5,.93) 0%, rgba(5,5,5,.65) 55%, rgba(5,5,5,.35) 100%);
    }
    .hero-ov2 {
      position: absolute; inset: 0;
      background: linear-gradient(to top, var(--black) 0%, transparent 45%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 60px; max-width: 960px;
    }
    .hero-eyebrow {
      font-family: var(--fs); font-size: .78rem; font-weight: 700;
      letter-spacing: 5px; text-transform: uppercase; color: var(--orange);
      display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
      opacity: 0; animation: fadeUp .7s ease .3s forwards;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 32px; height: 1px; background: var(--orange);
    }
    .hero-title {
      font-family: var(--fd);
      font-size: clamp(4.2rem, 9.4vw, 8.4rem);
      line-height: .9; letter-spacing: 2px; text-transform: uppercase;
      color: var(--white);
      opacity: 0; animation: fadeUp .8s ease .5s forwards;
    }
    .hero-title .ot { color: var(--orange); }
    .hero-title .stroke {
      -webkit-text-stroke: 1px rgba(245,240,235,.35);
      color: transparent;
      display: block;
      font-size: clamp(2.7rem, 6.5vw, 5.6rem);
      line-height: .92;
      letter-spacing: 1px;
    }
    .hero-sub {
      font-size: clamp(.86rem,1.35vw,1rem); font-weight: 300;
      color: rgba(245,240,235,.7); max-width: 460px;
      margin-top: 14px; line-height: 1.55;
      opacity: 0; animation: fadeUp .7s ease .7s forwards;
    }
    .hero-btns {
      display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
      opacity: 0; animation: fadeUp .7s ease .9s forwards;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--fs); font-weight: 700; font-size: .9rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 15px 32px; text-decoration: none;
      border: none; cursor: pointer; position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s, background .25s, color .25s;
    }
    .btn::before {
      content: ''; position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%;
      background: rgba(255,255,255,.12);
      transition: left .4s ease; transform: skewX(-15deg);
    }
    .btn:hover::before { left: 120%; }
    .btn-fire { background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(255,61,0,.4); }
    .btn-fire:hover {
      background: var(--orange2); transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(255,61,0,.6);
    }
    .btn-glass {
      background: rgba(255,255,255,.05); color: var(--white);
      backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2);
      box-shadow: 0 4px 30px rgba(0,0,0,.1);
    }
    .btn-glass:hover {
      border-color: #fff; background: rgba(255,255,255,.15);
      transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,.25);
    }
    .btn-wa-hero {
      background: transparent; color: var(--green);
      border: 1px solid rgba(37,211,102,.3);
    }
    .btn-wa-hero:hover {
      background: rgba(37,211,102,.07); border-color: var(--green);
      transform: translateY(-2px);
    }

    /* Trust strip */
    .trust-strip {
      position: relative; margin-top: 28px; align-self: center; max-width: 1000px; width: 88%;
      display: flex; z-index: 2;
      opacity: 0; animation: fadeUp .7s ease 1.1s forwards;
      background: rgba(255,255,255,.04);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 50px; overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,.3);
    }
    .ti {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px;
      padding: 18px; font-family: var(--fs); font-size: .85rem;
      font-weight: 500; letter-spacing: 1.5px; color: rgba(255,255,255,.85);
      border-right: 1px solid rgba(255,255,255,.05); text-transform: uppercase;
    }
    .ti:last-child { border-right: none; }
    .ti svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
    .ti strong { color: var(--white); font-weight: 700; font-size: .95rem; }

    /* Scroll cue */
    .scroll-cue {
      position: absolute; bottom: 48px; right: 60px; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      opacity: 0; animation: fadeUp .7s ease 1.3s forwards;
    }
    .scroll-cue span {
      font-family: var(--fs); font-size: .65rem; letter-spacing: 4px;
      text-transform: uppercase; color: var(--muted);
      writing-mode: vertical-rl;
    }
    .sc-line {
      width: 1px; height: 64px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      animation: scAnim 2.2s ease-in-out infinite;
    }
    @keyframes scAnim {
      0%   { transform: scaleY(0); transform-origin: top; }
      49%  { transform: scaleY(1); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ─── TICKER ─── */
    .ticker { overflow: hidden; background: var(--orange); padding: 15px 0; }
    .ticker-track {
      display: flex; gap: 0; white-space: nowrap;
      animation: tickerScroll 22s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    .t-item {
      display: inline-flex; align-items: center; gap: 18px;
      padding: 0 36px;
      font-family: var(--fd); font-size: 1.15rem; letter-spacing: 3px; color: var(--white);
    }
    .t-dot { width: 5px; height: 5px; background: rgba(255,255,255,.5); border-radius: 50%; }
    @keyframes tickerScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 120px 60px; }
    .s-label {
      font-family: var(--fs); font-size: .72rem; font-weight: 700;
      letter-spacing: 5px; text-transform: uppercase; color: var(--orange);
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    }
    .s-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--orange); }
    .s-title {
      font-family: var(--fd);
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: .94; letter-spacing: 1px; text-transform: uppercase; color: var(--white);
    }
    .s-title .ot { color: var(--orange); }

    /* ─── FLIP CARDS ─── */
    .cards-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 32px; margin-top: 64px;
    }
    .fc { height: 280px; perspective: 1100px; cursor: pointer; }
    .fc-in {
      position: relative; width: 100%; height: 100%;
      transform-style: preserve-3d;
      transition: transform .75s cubic-bezier(.4,0,.2,1);
    }
    .fc:hover .fc-in, .fc.auto-flip .fc-in { transform: rotateY(180deg); }
    .fc-f, .fc-b {
      position: absolute; inset: 0; backface-visibility: hidden;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 32px; text-align: center;
      border-radius: 24px;
    }
    .fc-f { 
      background: rgba(255,255,255,.05); 
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.1); 
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
    }
    .fc-b { 
      background: rgba(255,61,0,.9); color: var(--white);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      transform: rotateY(180deg); 
      border: 1px solid rgba(255,255,255,.2);
      box-shadow: 0 10px 40px rgba(255,61,0,.4);
    }
    .fc-ico { margin-bottom: 14px; transition: transform .4s; }
    .fc-ico svg { width: 44px; height: 44px; fill: var(--orange); transition: transform .4s; }
    .fc:hover .fc-ico svg, .fc.auto-flip .fc-ico svg { transform: scale(1.15) translateY(-5px); }
    .fc-num {
      font-family: var(--fd); font-size: 2.8rem; line-height: 1;
      color: var(--white);
    }
    .fc-lbl {
      font-family: var(--fs); font-size: .78rem; letter-spacing: 2.5px;
      font-weight: 600; text-transform: uppercase; color: var(--muted); margin-top: 8px;
    }
    .fc-bt {
      font-family: var(--fd); font-size: 1.85rem;
      color: var(--white); line-height: 1.1; letter-spacing: 1px;
    }
    .fc-bs {
      font-size: .88rem; color: rgba(255,255,255,.82);
      margin-top: 12px; font-weight: 300; line-height: 1.6;
    }

    /* ─── STORY ─── */
    .story-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .story-img-box {
      position: relative; height: 620px; overflow: hidden;
    }
    .story-img {
      width: 100%; height: 120%; object-fit: cover;
      will-change: transform;
    }
    .story-badge {
      position: absolute; bottom: 36px; right: -24px;
      background: var(--orange); padding: 22px 30px;
      display: flex; flex-direction: column; align-items: center;
    }
    .sb-num { font-family: var(--fd); font-size: 3.8rem; line-height: 1; color: var(--white); }
    .sb-txt {
      font-family: var(--fs); font-size: .72rem; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,.8); text-align: center;
    }
    .story-body p {
      font-size: 1.02rem; font-weight: 300;
      color: rgba(245,240,235,.7); line-height: 1.85; margin-top: 22px;
    }
    .story-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px; margin-top: 44px;
    }
    .ss {
      border-left: 2px solid var(--orange); padding-left: 16px;
    }
    .ss-num { font-family: var(--fd); font-size: 2.6rem; line-height: 1; color: var(--white); }
    .ss-lbl {
      font-family: var(--fs); font-size: .7rem; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--muted); margin-top: 4px;
    }

    /* ─── PROGRAMS ─── */
    .pgms-hd {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 56px; gap: 24px;
    }
    .pgms-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
    }
    .pc {
      position: relative; height: 440px; overflow: hidden; cursor: pointer;
    }
    .pc-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .65s cubic-bezier(.4,0,.2,1);
    }
    .pc:hover .pc-bg { transform: scale(1.06); }
    .pc-ov {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(5,5,5,.95) 0%, rgba(5,5,5,.15) 60%);
      transition: background .4s;
    }
    .pc:hover .pc-ov {
      background: linear-gradient(to top, rgba(255,61,0,.65) 0%, rgba(5,5,5,.08) 60%);
    }
    .pc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
    .pc-tag {
      font-family: var(--fs); font-size: .68rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--orange);
      background: rgba(255,61,0,.12); border: 1px solid rgba(255,61,0,.3);
      padding: 4px 12px; display: inline-block; margin-bottom: 12px;
      transition: background .3s, color .3s, border-color .3s;
    }
    .pc:hover .pc-tag { background: rgba(0,0,0,.3); color: #fff; border-color: rgba(255,255,255,.35); }
    .pc-name { font-family: var(--fd); font-size: 2rem; letter-spacing: 1px; color: var(--white); }
    .pc-desc {
      font-size: .84rem; color: rgba(245,240,235,.72); font-weight: 300;
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, margin-top .3s;
    }
    .pc:hover .pc-desc { max-height: 80px; margin-top: 10px; }

    /* ─── PRICING ─── */
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px;
    }
    .price-card {
      background: var(--card); border: 1px solid var(--border); padding: 40px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
      transition: transform .3s, border-color .3s;
    }
    .price-card:hover { border-color: var(--orange); transform: translateY(-5px); }
    .price-card.popular { border-color: var(--orange); position: relative; }
    .price-card.popular::before {
      content: 'Most Popular'; position: absolute; top: -14px; background: var(--orange);
      color: var(--white); font-family: var(--fs); font-size: .75rem; font-weight: 700;
      padding: 4px 16px; text-transform: uppercase; letter-spacing: 2px;
    }
    .pc-title { font-family: var(--fd); font-size: 2.2rem; color: var(--white); letter-spacing: 1px; }
    .pc-price { font-size: 3rem; font-family: var(--fd); color: var(--orange); line-height: 1; margin: 20px 0 10px; }
    .pc-price span { font-size: 1rem; color: var(--muted); font-family: var(--fb); }
    .pc-features { list-style: none; margin: 24px 0 36px; width: 100%; text-align: left; }
    .pc-features li {
      font-size: .95rem; color: rgba(245,240,235,.8); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
      display: flex; align-items: center; gap: 10px;
    }
    .pc-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
    .price-card .btn { width: 100%; justify-content: center; margin-top: auto; }

    /* ─── TRAINERS ─── */
    .tr-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 2px; margin-top: 60px;
    }
    .trc {
      background: var(--card); border: 1px solid var(--border); overflow: hidden;
      transition: border-color .3s;
    }
    .trc:hover { border-color: var(--orange); }
    .trc-img {
      width: 100%; height: 340px; object-fit: cover;
      filter: grayscale(45%); transition: filter .5s, transform .5s;
      display: block;
    }
    .trc:hover .trc-img { filter: grayscale(0%); transform: scale(1.03); }
    .trc-info { padding: 24px; overflow: hidden; }
    .trc-name { font-family: var(--fd); font-size: 1.85rem; letter-spacing: 1px; color: var(--white); }
    .trc-role {
      font-family: var(--fs); font-size: .72rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--orange); margin-top: 4px;
    }
    .trc-exp { font-size: .84rem; color: var(--muted); margin-top: 10px; font-weight: 300; }

    /* ─── GALLERY ─── */
    .gal-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-auto-rows: 210px;
      gap: 2px; margin-top: 60px;
    }
    .gi { overflow: hidden; }
    .gi:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gi:nth-child(5) { grid-column: span 2; }
    .gi-img {
      width: 100%; height: 100%; object-fit: cover;
      filter: grayscale(30%);
      transition: transform .6s ease, filter .4s;
      cursor: zoom-in;
    }
    .gi:hover .gi-img {
      transform: scale(1.08);
      filter: grayscale(0%);
    }

    /* ─── REVIEWS ─── */
    .reviews-overflow { overflow: hidden; margin-top: 60px; }
    .rv-track {
      display: flex; gap: 20px;
      animation: rvScroll 35s linear infinite;
    }
    .rv-track:hover { animation-play-state: paused; }
    @keyframes rvScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .rvc {
      min-width: 340px; flex-shrink: 0;
      background: var(--card); border: 1px solid var(--border); padding: 32px;
      transition: border-color .3s;
    }
    .rvc:hover { border-color: rgba(255,61,0,.3); }
    .rv-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: .95rem; }
    .rv-text {
      font-size: .92rem; font-weight: 300;
      color: rgba(245,240,235,.78); line-height: 1.72;
    }
    .rv-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
    .rv-av {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--orange); display: flex; align-items: center; justify-content: center;
      font-family: var(--fd); font-size: 1.2rem; color: var(--white); flex-shrink: 0;
    }
    .rv-name { font-family: var(--fs); font-weight: 700; font-size: .88rem; letter-spacing: 1px; color: var(--white); }
    .rv-date { font-size: .72rem; color: var(--muted); margin-top: 2px; }

    /* ─── CTA BANNER ─── */
    .cta-sec {
      padding: 130px 60px; background: var(--orange);
      position: relative; overflow: hidden; text-align: center;
    }
    .cta-sec::before {
      content: 'ASPIRE';
      position: absolute; font-family: var(--fd); font-size: 38vw;
      color: rgba(0,0,0,.1); top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none; white-space: nowrap; line-height: 1;
    }
    .cta-sec .s-label { justify-content: center; color: rgba(255,255,255,.7); }
    .cta-sec .s-label::before { background: rgba(255,255,255,.5); }
    .cta-sec .s-title { color: var(--white); }
    .cta-sub {
      font-size: 1.08rem; font-weight: 300;
      color: rgba(255,255,255,.82); max-width: 480px;
      margin: 16px auto 0; line-height: 1.72;
    }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
    .btn-dk {
      background: var(--black); color: var(--white);
      font-family: var(--fs); font-weight: 700; font-size: .88rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 16px 40px; text-decoration: none; border: none; cursor: pointer;
      transition: background .25s, transform .25s;
    }
    .btn-dk:hover { background: #1a1a1a; transform: translateY(-2px); }
    .btn-wh {
      background: transparent; color: var(--white);
      font-family: var(--fs); font-weight: 700; font-size: .88rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 15px 40px; text-decoration: none;
      border: 2px solid rgba(255,255,255,.55); cursor: pointer;
      transition: border-color .25s, background .25s, transform .25s;
    }
    .btn-wh:hover {
      border-color: #fff; background: rgba(255,255,255,.1);
      transform: translateY(-2px);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark); padding: 80px 60px 40px;
      border-top: 1px solid var(--border);
    }
    .ft-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px; margin-bottom: 56px;
    }
    .ft-logo {
      font-family: var(--fd); font-size: 2rem; letter-spacing: 3px;
      color: var(--white); line-height: 1.1; margin-bottom: 18px;
    }
    .ft-logo em { color: var(--orange); font-style: normal; }
    .ft-desc { font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.7; }
    .ft-cht {
      font-family: var(--fs); font-size: .7rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 22px;
    }
    .ft-ul { list-style: none; }
    .ft-ul li { margin-bottom: 11px; }
    .ft-ul a { font-size: .88rem; color: var(--muted); text-decoration: none; transition: color .25s; }
    .ft-ul a:hover { color: var(--orange); }
    .ft-ci { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 15px; }
    .ft-ci .ico { color: var(--orange); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
    .ft-ci span { font-size: .87rem; color: var(--muted); line-height: 1.5; }
    .ft-bot {
      border-top: 1px solid var(--border); padding-top: 30px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .ft-cr { font-size: .78rem; color: var(--muted); }
    .ft-sc { display: flex; gap: 12px; }
    .sc-btn {
      width: 36px; height: 36px; border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: .78rem; font-family: var(--fs); font-weight: 700;
      letter-spacing: 1px; color: var(--muted); text-decoration: none; text-transform: uppercase;
      transition: border-color .25s, color .25s, background .25s;
    }
    .sc-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,61,0,.05); }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.95);
      backdrop-filter: blur(10px);
      z-index: 3000;
      display: none; align-items: center; justify-content: center;
      padding: 40px;
      cursor: zoom-out;
    }
    .lightbox.active { display: flex; animation: fadeIn .3s ease; }
    .lb-close {
      position: absolute; top: 30px; right: 40px;
      background: none; border: 1px solid rgba(255,255,255,.2);
      color: var(--white); font-size: 2.5rem; line-height: 1;
      width: 60px; height: 60px; border-radius: 50%;
      cursor: pointer; z-index: 3100;
      transition: all .3s;
    }
    .lb-close:hover { border-color: var(--orange); color: var(--orange); transform: rotate(90deg); }
    .lb-img {
      max-width: 100%; max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 0 50px rgba(0,0,0,.5);
      transform: scale(.8); transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
    }
    .lightbox.active .lb-img { transform: scale(1); }

    /* ─── CONTACT GRID ─── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
    }
    .contact-map {
      min-height: 420px; border-radius: 16px; overflow: hidden;
      border: 1px solid var(--border);
    }

    /* ─── FABS ─── */
    .fabs {
      position: fixed; bottom: 32px; right: 32px;
      display: flex; flex-direction: column; gap: 16px; z-index: 800;
    }
    .fab {
      width: 56px; height: 56px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; position: relative;
      box-shadow: 0 4px 24px rgba(0,0,0,.3);
      transition: transform .3s, box-shadow .3s;
    }
    .fab:hover { transform: scale(1.1); }
    .wa-fab { background: var(--green); box-shadow: 0 4px 24px rgba(37,211,102,.38); }
    .wa-fab:hover { box-shadow: 0 8px 36px rgba(37,211,102,.55); }
    .call-fab { background: #007AFF; box-shadow: 0 4px 24px rgba(0,122,255,.38); }
    .call-fab:hover { box-shadow: 0 8px 36px rgba(0,122,255,.55); }
    .fab .wa-pulse {
      position: absolute; inset: -7px; border-radius: 50%;
      border: 2px solid; opacity: 0;
      animation: waPulse 2.2s ease-out infinite;
    }
    .wa-fab .wa-pulse { border-color: rgba(37,211,102,.4); }
    .call-fab .wa-pulse { border-color: rgba(0,122,255,.4); animation-delay: 1.1s; }
    
    @keyframes waPulse {
      0%   { transform: scale(1); opacity: 1; }
      100% { transform: scale(1.6); opacity: 0; }
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .rev     { opacity: 0; transform: translateY(44px); transition: opacity .85s ease, transform .85s ease; }
    .rev-l   { opacity: 0; transform: translateX(-44px); transition: opacity .85s ease, transform .85s ease; }
    .rev-r   { opacity: 0; transform: translateX(44px); transition: opacity .85s ease, transform .85s ease; }
    .rev.on, .rev-l.on, .rev-r.on { opacity: 1; transform: none; }
    .d1 { transition-delay: .05s; } .d2 { transition-delay: .14s; }
    .d3 { transition-delay: .23s; } .d4 { transition-delay: .32s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1200px) {
      .cards-grid { grid-template-columns: repeat(2,1fr); }
      .pgms-grid  { grid-template-columns: repeat(2,1fr); }
      .pricing-grid { grid-template-columns: repeat(2,1fr); }
      .ft-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 900px) {
      section { padding: 80px 32px; }
      .nav { padding: 16px 28px; }
      .nav.scrolled { padding: 12px 28px; }
      .nav-links, .nav-cta { display: none; }
      .nav-burger { display: flex; }
      .hero { min-height: 100svh; padding-top: 92px; padding-bottom: 20px; }
      .hero-content { padding: 0 32px; }
      .trust-strip { 
        width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; 
        padding: 16px; border-radius: 24px; margin-top: 22px; 
      }
      .ti { border: none !important; padding: 8px; justify-content: flex-start; }
      .scroll-cue { display: none; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-map { min-height: 300px; }
      .story-wrap { grid-template-columns: 1fr; gap: 40px; }
      .story-img-box { height: 380px; }
      .story-badge { right: 16px; }
      .tr-grid { grid-template-columns: repeat(2,1fr); }
      .gal-grid {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: 170px;
      }
      .gi:nth-child(1) { grid-column: span 2; grid-row: span 1; }
      .gi:nth-child(5) { grid-column: span 1; }
      .pgms-hd { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 640px) {
      section { padding: 60px 20px; }
      .nav { padding: 14px 20px; }
      .hero { min-height: 100svh; padding-top: 80px; padding-bottom: 14px; }
      .hero-content { padding: 0 20px; }
      .hero-eyebrow { font-size: .68rem; letter-spacing: 3px; margin-bottom: 14px; }
      .trust-strip { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; border-radius: 20px; }
      .ti { font-size: .75rem; padding: 6px; justify-content: flex-start; }
      .hero-title { font-size: clamp(3.1rem, 12vw, 4.5rem); }
      .hero-title .stroke { font-size: clamp(2rem, 9.4vw, 3.2rem); }
      .hero-sub { font-size: clamp(.82rem, 3.6vw, .95rem); max-width: 330px; margin-top: 10px; line-height: 1.45; }
      .hero-btns { margin-top: 24px; gap: 10px; }
      .s-title { font-size: 2.4rem; }
      .cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .fc { height: 230px; }
      .fc-f, .fc-b { padding: 20px 16px; }
      .fc-bt { font-size: 1.4rem; }
      .fc-bs { font-size: .8rem; margin-top: 8px; line-height: 1.4; }
      .fc-ico svg { width: 32px; height: 32px; }
      .fc-num { font-size: 2.2rem; }
      .pgms-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pc { height: 300px; }
      .pc-desc { max-height: 60px !important; }
      .tr-grid { grid-template-columns: 1fr; }
      .gal-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
      }
      .ft-grid { grid-template-columns: 1fr; gap: 28px; }
      footer { padding: 56px 20px 40px; }
      .cta-sec { padding: 80px 20px; }
      .fabs { bottom: 24px; right: 16px; gap: 12px; }
      .fab { width: 50px; height: 50px; }
      body { cursor: auto; }
      .cur-dot, .cur-ring { display: none; }
    }

    @media (max-width: 420px) {
      .hero-btns { gap: 10px; }
      .hero { padding-top: 76px; }
      .hero-title { font-size: clamp(2.8rem, 11.8vw, 3.9rem); }
      .hero-title .stroke { font-size: clamp(1.75rem, 8.2vw, 2.7rem); }
      .hero-sub { font-size: .8rem; max-width: 290px; }
      .btn { padding: 12px 20px; font-size: .78rem; }
    }

    /* Padding for mobile bar */
    @media (max-width: 640px) {
      .mob-content-pad { padding-bottom: 68px; }
    }