:root{
    --pitch: #1B4332;     
    --pitch-dark: #2D6A4F;   
    --pitch-deep: #1B4332;
    --lime: #B7E4C7;   
    --lime-ink: #1B4332;
    --orange: #F5811F;
    --orange-dark: #D96A0F;
    --ink: #12201A;
    --ink-soft: #4A5A51;
    --paper: #FBFCF9;
    --paper-alt: #F1F5EE;
    --paper-deep: #E9F0E5;
    --line: #DCE5DA;
    --white: #FFFFFF;
    --font-display: 'Segoe UI', sans-serif;
    --font-body: 'Segoe UI', sans-serif;
    --font-mono: 'Segoe UI', sans-serif;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-card: 0 8px 30px rgba(14,58,32,0.10);
    --shadow-lift: 0 20px 50px rgba(14,58,32,0.18);
    --paper: #ffffff;
    --paper-alt: #eef3ea;
    --ink: #16241c;
    --ink-soft: #4d5c52;
    --accent: #c8622d;
    --line: rgba(22,36,28,0.09);

    --c-parents: #c8622d;
    --c-players: #2f6a3d;
    --c-community: #2c6e78;
    --c-whatsapp: #25d366;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer;}
  .container{width:100%; max-width:1200px; margin:0 auto; padding:0 24px;}
  section{position:relative;}

  h1,h2,h3,h4{font-family: var(--font-display); font-weight:600; line-height:1.08; letter-spacing:-0.01em;}
  p{font-size: 16px;}
  .eyebrow{
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight:600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pitch);
    display:inline-flex;
    align-items:center;
    gap:8px;
  }
  .eyebrow::before{content:""; width:18px; height:2px; background:var(--orange); display:inline-block;}
  .section-head{max-width:680px; margin-bottom:48px;}
  .section-head h2{font-size: clamp(28px,4vw,44px); margin-top:14px;}
  .section-head p{color:var(--ink-soft); font-size:17px; margin-top:16px;}
  .section-pad{padding:96px 0;}
  

  /* touchline divider - signature element */
  .touchline{
    width:100%; height:34px;
    background-image: repeating-linear-gradient(90deg, var(--line) 0 26px, transparent 26px 44px);
    background-position:center;
    opacity:0.9;
    display: none;
  }
  .corner-arc{
    position:absolute; width:120px; height:120px; border:3px solid var(--lime); border-radius:0 0 0 100%; opacity:0.35; pointer-events:none;
  }

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    font-family: var(--font-display); font-weight:600; font-size:15.5px;
    padding:15px 28px; border-radius: 999px; border:2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn-primary{ background: var(--orange); color:#fff; }
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,129,31,0.45); background:var(--orange-dark);}
  .btn-secondary{ background: var(--pitch-deep); color:#fff; }
  .btn-secondary:hover{ transform: translateY(-2px); background: var(--pitch-dark); }
  .btn-ghost{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
  .btn-ghost:hover{ background: rgba(255,255,255,0.12); border-color:#fff; }
  .btn-outline{ background:transparent; color:var(--pitch); border-color:var(--pitch); }
  .btn-outline:hover{ background:var(--pitch); color:#fff; }
  .btn-sm{ padding:10px 18px; font-size:13.5px; }
  .btn-block{width:100%;}

  /* NAV */
  header#site-nav{
    position: sticky; top:0; z-index:100;
    background: rgba(251,252,249,0.92); backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{ display:flex; align-items:center; justify-content:space-between; padding:10px 24px; }
  .nav-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:19px; }
  .nav-logo img{height:55px; width:100%;}
  .nav-links{ display:flex; gap:28px; align-items:center; }
  .nav-links a{ font-size:14.5px; font-weight:600; color:var(--ink); opacity:0.85; }
  .nav-links a:hover{ opacity:1; color:var(--pitch); }
  .nav-cta{ display:flex; gap:10px; align-items:center; }
  .nav-toggle{ display:none; background:none; border:none; font-size:20px; color:var(--ink); }
  
  #navMobile a{ padding:10px 0; font-weight:600; font-size:15px; border-top:1px solid var(--line); }
  #navMobile a:first-child{ border-top:none; }

  /* HERO */
  .hero{
    position:relative; overflow:hidden;
    background: linear-gradient(180deg, var(--pitch-deep) 0%, var(--pitch-dark) 55%, var(--pitch) 100%);
    color:#fff;
  }
  .hero::before{
    content:""; position:absolute; inset:0;
    background-image: radial-gradient(circle at 18% 20%, rgba(140,226,63,0.14), transparent 40%), radial-gradient(circle at 85% 75%, rgba(245,129,31,0.16), transparent 45%);
    pointer-events:none;
  }
  .hero-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap:48px; align-items:center; position:relative; z-index:2;}
  
  .hero-badge{
    display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.25);
    padding:8px 16px; border-radius:999px; font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em; text-transform:uppercase;
  }
  .hero-badge .dot{width:7px;height:7px;border-radius:50%;background:var(--lime); box-shadow:0 0 0 4px rgba(140,226,63,0.25);}
  .hero h1{ font-size: clamp(36px, 5.4vw, 48px); margin-top:22px; }
  .hero h1 span{ color: var(--lime); }
  .hero p.lead{ font-size:18px; color:rgba(255,255,255,0.85); margin-top:20px; max-width:520px; }
  .hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
  .hero-highlights{ display:grid; grid-template-columns: repeat(2,1fr); gap:12px; margin-top:36px; max-width:520px; }
  .hero-highlights li{ display:flex; gap:9px; align-items:flex-start; font-size:14px; color:rgba(255,255,255,0.9); }
  .hero-highlights li .tick{ color: var(--lime); font-weight:700; }
  .hero-meta{ display:flex; gap:22px; flex-wrap:wrap; margin-top:34px; padding-top:26px; border-top:1px solid rgba(255,255,255,0.18);}
  .hero-meta div{ font-family:var(--font-mono); }
  .hero-meta .label{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase;}
  .hero-meta .value{ font-size:16px; font-weight:600; margin-top:4px; color:rgba(255,255,255,0.9); }

  .hero-media{ position:relative; }
  .hero-photo-card{
    position:relative; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-lift);
    border: 4px solid rgba(255,255,255,0.15);
  }
  .hero-photo-card img{ width:100%; height:520px; object-fit:cover;object-position: right; }
  
  .hero-float-card{
    position:absolute; bottom:-26px; left:-26px; background:#fff; color:var(--ink);
    border-radius: var(--radius-md); padding:16px 20px; box-shadow: var(--shadow-lift);
    display:flex; gap:14px; align-items:center; max-width:260px;
  }
  
  .hero-float-card .badge-num{
    font-family:var(--font-display); font-weight:700; font-size:22px; color:#fff; background:var(--orange);
    width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .hero-float-card .txt{font-size:13px; line-height:1.35;}
  .hero-float-card .txt b{display:block; font-size:14.5px;}

  /* Hero redesign additions: trust chips, stats row, CTA link, image zoom, play chip */
  .hero-trust{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;}
  .trust-chip{display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.2); padding:8px 14px; border-radius:999px; font-size:13px; font-weight:600;}
  .trust-chip i{color:var(--lime); font-size:13px;}

  .hero-cta-link{font-size:13.5px; font-weight:600; color:rgba(255,255,255,0.75);
    border-bottom:1px solid rgba(255,255,255,0.35); padding-bottom:1px;
    transition:color .18s ease, border-color .18s ease;}
  .hero-cta-link:hover{color:#fff; border-color:#fff;}

  .hero-stats{display:flex; gap:28px; flex-wrap:wrap; margin-top:36px; padding-top:26px; border-top:1px solid rgba(255,255,255,0.18);}
  .hero-stats div b{font-size:26px; font-weight:700; display:block; color:var(--lime);}
  .hero-stats div span{font-size:12px; color:rgba(255,255,255,0.7); letter-spacing:.02em;}

  .hero-photo-card{position:relative;}
  .hero-photo-card img{transform:scale(1.06); animation:hero-zoom 14s ease-in-out infinite alternate;}
  @keyframes hero-zoom{from{transform:scale(1.06);} to{transform:scale(1.14);}}

  .hero-play-chip{position:absolute; top:20px; right:20px; background:rgba(18,32,26,0.55); backdrop-filter:blur(6px);
    color:#fff; padding:8px 14px; border-radius:999px; font-size:12px; font-weight:600; display:flex; align-items:center; gap:8px;}
  .hero-play-chip i{color:var(--lime);}

  /* MARQUEE / trust strip */
  .trust-strip{ background: var(--paper-alt); border-bottom:1px solid var(--line); padding:18px 0; overflow:hidden; }
  .trust-track{ display:flex; gap:52px; align-items:center; white-space:nowrap; font-family:var(--font-mono); font-size:13px; color:var(--ink-soft); animation: scroll-left 28s linear infinite; }
  .trust-track span{ display:inline-flex; align-items:center; gap:8px; }
  .trust-track span::before{content:"●"; color:var(--orange); font-size:8px;}
  @keyframes scroll-left{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
  

  /* WHY grid */
  .why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
  
  
  .why-card{
    background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:28px 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .why-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
  .why-icon{ width:46px; height:46px; border-radius:12px; background: var(--paper-deep); display:flex; align-items:center; justify-content:center; font-size:19px; margin-bottom:16px; color:var(--pitch); }
  .why-card h3{ font-size:18px; margin-bottom:8px; }
  .why-card p{ font-size:16px; color: var(--ink-soft); }
.why-card--priority{
    background: var(--paper-alt);
    border-color: var(--pitch);
    position: relative;
  }
  .why-card--priority .why-icon{ background: var(--pitch); color: #fff; }
  .why-card--priority .why-tag{
    display:inline-flex; align-items:center; gap:6px;
    font-family: var(--font-mono); font-size:11px; font-weight:600;
    letter-spacing:0.08em; text-transform:uppercase;
    color: var(--pitch); background: rgba(27,67,50,0.08);
    padding:4px 10px; border-radius:999px; margin-bottom:12px;
  }
  .why-card--priority .why-tag i{ font-size:10px; }
  /* PROGRAM SNAPSHOT */
  .snap-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
  
  
  .snap-card{ background: var(--pitch-deep); color:#fff; border-radius: var(--radius-md); padding:26px 22px; position:relative; overflow:hidden; }
  .snap-card::after{ content:""; position:absolute; top:-30px; right:-30px; width:100px; height:100px; border-radius:50%; background: rgba(140,226,63,0.12); }
  .snap-card .snap-tag{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--lime); }
  .snap-card h3{ font-size:19px; margin: 10px 0 12px; }
  .snap-card ul li{ font-size:13.5px; color:rgba(255,255,255,0.82); padding:5px 0; border-top:1px dashed rgba(255,255,255,0.15); }
  .snap-card ul li:first-child{border-top:none;}

  /* COACH */
  .coach-wrap{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:56px; align-items:center; }
  
  .coach-photo{ position:relative; }
  .coach-photo img{ border-radius: var(--radius-lg); width:100%; height:520px; object-fit:cover; box-shadow: var(--shadow-card); }
  
  .coach-photo .pin{
    position:absolute; bottom:18px; left:18px; background:#fff; padding:10px 16px; border-radius:999px; font-family:var(--font-mono); font-size:12px; font-weight:600; box-shadow: var(--shadow-card); display:flex; align-items:center; gap:8px;
  }
  .coach-photo .pin i{ color: var(--orange); }
  .coach-badges{ display:flex; flex-wrap:wrap; gap:10px; margin: 22px 0 26px; }
  .coach-badge{ background: var(--paper-alt); border:1px solid var(--line); border-radius:999px; padding:8px 14px; font-size:12.5px; font-weight:600; display:flex; align-items:center; gap:6px; }
  .coach-badge::before{content:"\2713"; color:var(--pitch); font-weight:800;}
  .coach-stats{ display:grid; grid-template-columns:repeat(3,1fr);margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
  .coach-stats div b{ font-family:var(--font-display); font-size:26px; display:block; color:var(--pitch); }
  .coach-stats div span{ font-size:12.5px; color:var(--ink-soft); }

  /* AGE GROUPS */
  .age-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  
  
  .age-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:26px 22px; text-align:left; transition: transform .2s ease, box-shadow .2s ease; }
  .age-card:hover{ transform:translateY(-4px); box-shadow: var(--shadow-card); }
  .jersey-num{
    width:56px; height:56px; border-radius:50%; background: var(--pitch); color:#fff; font-family:var(--font-display); font-weight:700; font-size:20px;
    display:flex; align-items:center; justify-content:center; margin-bottom:16px; border:3px solid var(--lime);
  }
  .age-card .age-range{ font-family:var(--font-mono); font-size:12px; color:var(--ink-soft); margin-bottom:10px; display:block; }
  .age-card h3{ font-size:19px; margin-bottom:12px; }
  .age-card ul li{ font-size:13.5px; color:var(--ink-soft); padding:4px 0; }
  .age-card ul li::before{ content:"— "; color:var(--orange); font-weight:700; }
  .age-note{ margin-top:22px; background: var(--paper-alt); border-left:3px solid var(--orange); padding:14px 18px; border-radius: var(--radius-sm); font-size:13.5px; color:var(--ink-soft); display:flex; align-items:center; gap:10px; }
  .age-note i{ color:var(--orange); }

  /* PATHWAY */
  .pathway{ display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
  .pathway-step{ flex:1; min-width:190px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:22px 18px; text-align:center; }
  .pathway-step .pw-icon{font-size:24px; margin-bottom:10px; color:var(--orange);}
  .pathway-step h4{ font-size:15px; margin-bottom:6px; }
  .pathway-step p{ font-size:12.5px; color:var(--ink-soft); }
  .pathway-arrow{ font-size:22px; color:var(--orange); flex-shrink:0; }
  

  /* dark section (pathway + tournaments) */
  .section-dark{ background: var(--pitch-deep); color:#fff; }
  .section-dark .section-head p{ color: rgba(255,255,255,0.72); }
  .section-dark .eyebrow{ color: var(--lime); }
  .section-dark .eyebrow::before{ background: var(--lime); }
  .section-dark .why-icon{ color: var(--lime); }

  /* SESSION FLOW */
  .flow-strip{ display:flex; overflow-x:auto; gap:16px; padding-bottom:10px; scrollbar-width:thin; }
  .flow-item{ flex:0 0 190px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:20px; }
  .flow-item .flow-idx{ font-family:var(--font-mono); font-size:16px; color:var(--orange); }
  .flow-item h4{ font-size:15px; margin:8px 0 6px; }
  .flow-item p{font-size:12.5px; color:var(--ink-soft);}

  /* WHAT TO BRING */
  .bring-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
  
  
  .bring-card{ background: var(--paper-alt); border-radius: var(--radius-md); padding:22px 14px; text-align:center; }
  .bring-card .bring-icon{ font-size:26px; margin-bottom:10px; color:var(--pitch); }
  .bring-card p{ font-size:13px; font-weight:600; }

  /* TABLE */
  .data-table{ width:100%; border-collapse: collapse; background:#fff; border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-card); }
  .data-table th, .data-table td{ padding:16px 20px; text-align:left; font-size:14.5px; border-bottom:1px solid var(--line); }
  .data-table th{ background: var(--pitch-deep); color:#fff; font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:0.08em; }
  .data-table tr:last-child td{ border-bottom:none; }
  .data-table tr:hover td{ background: var(--paper-alt); }
  .table-wrap{ overflow-x:auto; }

  /* JERSEY SECTION */
  .jersey-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
  
  .jersey-mock{ background: linear-gradient(135deg, var(--orange) 0%, #ff9b45 100%); border-radius: var(--radius-lg); padding:50px; display:flex; align-items:center; justify-content:center; }
  .jersey-shape{ width:220px; height:240px; background:#fff; clip-path: polygon(20% 0%, 35% 0%, 50% 12%, 65% 0%, 80% 0%, 100% 20%, 85% 34%, 85% 100%, 15% 100%, 15% 34%, 0% 20%); display:flex; align-items:center; justify-content:center; box-shadow:0 20px 40px rgba(0,0,0,0.2);}
  .jersey-shape span{ font-family:var(--font-display); font-weight:700; font-size:64px; color: var(--pitch); }

  /* SAFETY */
  .safety-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
  
  
  .safety-card{ background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); padding:24px; }
  .safety-card .s-icon{ font-size:22px; margin-bottom:12px; color:var(--lime); }
  .safety-card h4{ font-size:18px; margin-bottom:6px; }
  .safety-card p{ font-size:16px; color:rgba(255,255,255,0.72); }

  /* POLICY LIST */
  .policy-list{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  
  .policy-item{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:20px 22px; display:flex; gap:14px; }
  .policy-item .p-num{ font-family:var(--font-mono); color:var(--orange); font-weight:700; }
  .policy-item h4{ font-size:14.5px; margin-bottom:4px; }
  .policy-item p{ font-size:13px; color:var(--ink-soft); }

  /* FEES */
  .fee-card{
    background:#fff; border-radius: var(--radius-lg); overflow:hidden;
    display:grid; grid-template-columns: 0.85fr 1.15fr; box-shadow: var(--shadow-card);
  }
  .fee-main{
    background: var(--pitch-deep); color:#fff; padding:40px; display:flex; flex-direction:column;
    justify-content:center; position:relative; overflow:hidden;
  }
  .fee-main::after{
    content:""; position:absolute; width:220px; height:220px; border-radius:50%;
    background:rgba(183,228,199,0.08); top:-90px; right:-90px;
  }
  .fee-price{ font-family:var(--font-display); font-size:46px; color:#fff; position:relative; z-index:1; }
  .fee-price span{ font-size:15px; color:rgba(255,255,255,0.65); font-family:var(--font-body); font-weight:500; }
  .fee-sub{ font-size:13.5px; color:rgba(255,255,255,0.72); margin-top:10px; max-width:280px; position:relative; z-index:1; }
  .fee-cta{ margin-top:26px; align-self:flex-start; position:relative; z-index:1; }

  .fee-details{ padding:40px; display:flex; flex-direction:column; gap:26px; }
  .fee-list li{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed var(--line); font-size:14px; }
  .fee-pay-label{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-soft); }
  .pay-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
  .pay-pill{
    background: var(--paper-alt); border:1px solid var(--line); border-radius:999px;
    padding:7px 14px; font-size:12.5px; font-weight:600; color:var(--pitch);
  }
  .fee-pay-note{ font-size:12.5px; color:var(--ink-soft); margin-top:12px; }

  /* CODE OF CONDUCT */
  .conduct-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  
  
  .conduct-card{ background: var(--paper-alt); border-radius: var(--radius-md); padding:22px; }
  .conduct-card h4{ font-size:16px; margin-bottom:10px; color:var(--pitch); }
  .conduct-card li{ font-size:14px; color:var(--ink-soft); padding:4px 0; }

  /* GALLERY - masonry */
  .gallery-grid{ columns: 4 220px; column-gap:14px; }
  
  
  .gallery-grid img{ width:100%; border-radius: var(--radius-sm); margin-bottom:14px; break-inside:avoid; cursor:zoom-in; transition: transform .25s ease, filter .25s ease;     height: 210px;
    object-fit: cover;}
  .gallery-grid img:hover{ transform: scale(1.02); filter:brightness(1.05); }

  /* Gallery meta row (count + swipe hint) */
  .gallery-meta{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin:-28px 0 22px; }
  .gallery-count{
    display:inline-flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:12px;
    font-weight:600; letter-spacing:.03em; color:var(--ink-soft); background:var(--paper-alt);
    padding:7px 14px; border-radius:999px; border:1px solid var(--line);
  }
  .gallery-count i{ color:var(--orange); }
  .gallery-swipe-hint{
    display:none; align-items:center; gap:7px; font-family:var(--font-mono); font-size:11.5px;
    color:var(--ink-soft); letter-spacing:.02em;
  }
  .gallery-swipe-hint i{ color:var(--orange); font-size:12px; animation: gallery-point 1.3s ease-in-out infinite; }
  @keyframes gallery-point{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(4px); } }

  .gallery-scroll-wrap{ position:relative; }

  /* Gallery nav arrows */
  .gallery-nav{
    display:none; position:absolute; top:50%; transform:translateY(-50%); z-index:5;
    width:38px; height:38px; border-radius:50%; border:none; cursor:pointer;
    background:rgba(255,255,255,0.92); color:var(--pitch-deep); align-items:center; justify-content:center;
    font-size:14px; box-shadow:0 6px 18px rgba(14,58,32,0.18);
    transition: transform .18s ease, background .18s ease;
  }
  .gallery-nav:hover{ background:#fff; transform:translateY(-50%) scale(1.08); }
  .gallery-nav:active{ transform:translateY(-50%) scale(0.94); }
  .gallery-nav-prev{ left:8px; }
  .gallery-nav-next{ right:8px; }

  /* Gallery dot indicators */
  .gallery-dots{ display:none; align-items:center; justify-content:center; gap:6px; margin-top:16px; flex-wrap:wrap; }
  .gallery-dot{
    width:6px; height:6px; border-radius:50%; background:var(--line); border:none; padding:0; cursor:pointer;
    transition: transform .2s ease, background .2s ease, width .2s ease;
  }
  .gallery-dot.active{ background:var(--orange); width:18px; border-radius:4px; }

  /* COMMUNITIES */
  .comm-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  
  .comm-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:26px; position:relative; }
  .comm-card.active{ border:2px solid var(--pitch); box-shadow: var(--shadow-card); }
  .comm-status{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.08em; padding:5px 12px; border-radius:999px; display:inline-flex; align-items:center; gap:6px; }
  .comm-status.live{ background: rgba(27,107,60,0.12); color: var(--pitch); }
  .comm-status.soon{ background: rgba(245,129,31,0.12); color: var(--orange-dark); }
  .comm-card h3{ font-size:22px; margin:14px 0 12px; }
  .comm-card ul li{ font-size:14px; color:var(--ink-soft); padding:4px 0; display:flex; justify-content:space-between; border-top:1px dashed var(--line); }
  .comm-card ul li:first-child{ border-top:none; }

  /* STATS — growth-trend signature */
  .stats-trend-wrap{ position:relative; margin-top:12px; }
  .stats-trend-line{ position:absolute; top:0; left:0; width:100%; height:56px; overflow:visible; pointer-events:none; }
  .trend-path{
    fill:none; stroke:var(--lime); stroke-width:1.5; stroke-linecap:round; opacity:0.55;
    stroke-dasharray:1; stroke-dashoffset:1;
    animation: draw-trend 1.3s ease-out .1s forwards;
    animation-play-state: paused;
  }
  .trend-dot{
    fill:var(--lime); opacity:0; transform-box:fill-box; transform-origin:center;
    animation: pop-dot .35s ease-out forwards;
    animation-play-state: paused;
  }
  .trend-dot:nth-of-type(2){ animation-delay:.34s; }
  .trend-dot:nth-of-type(3){ animation-delay:.6s; }
  .trend-dot:nth-of-type(4){ animation-delay:.86s; }
  .fade-up.in .trend-path,
  .fade-up.in .trend-dot{ animation-play-state: running; }
  @keyframes draw-trend{ to{ stroke-dashoffset:0; } }
  @keyframes pop-dot{ from{ opacity:0; transform:scale(0); } to{ opacity:.9; transform:scale(1); } }

  .stats-grid{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); gap:0; text-align:center; }
  .stat-item{ position:relative; padding:54px 14px 4px; transition: transform .25s ease; }
  .stat-item + .stat-item::before{
    content:""; position:absolute; left:0; top:54px; bottom:6px; width:1px;
    background: repeating-linear-gradient(180deg, rgba(255,255,255,0.16) 0 6px, transparent 6px 12px);
  }
  .stat-item:hover{ transform: translateY(-3px); }
  .stat-item b{
    font-family: var(--font-mono); font-weight:700; font-size: clamp(26px,3.2vw,38px);
    color: var(--lime); display:block; letter-spacing:-0.01em; font-variant-numeric: tabular-nums;
  }
  .stat-item span{
    display:block; margin-top:10px; font-size:11.5px; font-family:var(--font-mono);
    text-transform:uppercase; letter-spacing:0.07em; color:rgba(255,255,255,0.65);
  }
  .stat-item--trend b{
    width:42px; height:42px; margin:0 auto; border-radius:50%; border:1.5px solid var(--lime);
    display:flex; align-items:center; justify-content:center; font-size:17px;
    font-family: var(--font-body); color:var(--lime);
  }

  /* REGISTER */
  .register-card{ background: linear-gradient(90deg, var(--orange-dark), var(--orange)); border-radius: var(--radius-lg); padding:56px; text-align:center; color:#fff; position:relative; overflow:hidden; }
  .register-card::before{ content:""; position:absolute; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,0.12); top:-100px; right:-80px; }
  .register-card h2{ font-size: clamp(26px,4vw,38px); }
  .register-card p{ max-width:520px; margin:14px auto 30px; opacity:0.95; }
  .register-trust{ display:flex; gap:24px; justify-content:center; flex-wrap:wrap; margin-top:26px; font-family:var(--font-mono); font-size:12.5px; }
  .register-trust span{ display:inline-flex; align-items:center; gap:6px; }

  /* TESTIMONIALS */
  .testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  
  .testi-card{ background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:26px; }
  .testi-stars{ color:var(--orange); font-size:14px; letter-spacing:2px; }
  .testi-card p.quote{ font-size:14.5px; margin:14px 0 18px; color:var(--ink); }
  .testi-who{ display:flex; align-items:center; gap:10px; }
  .testi-avatar{ width:38px; height:38px; border-radius:50%; background:var(--pitch); color:#fff; font-family:var(--font-display); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; }
  .testi-who b{ display:block; font-size:13.5px; }
  .testi-who span{ font-size:12px; color:var(--ink-soft); }

  /* FAQ */
  .faq-list{ max-width:800px; margin:0 auto; }
  .faq-item{ border-bottom:1px solid var(--line); }
  .faq-q{ width:100%; text-align:left; background:none; border:none; padding:20px 4px; display:flex; justify-content:space-between; align-items:center; font-family:var(--font-display); font-weight:600; font-size:18px; gap:16px; }
  .faq-q .plus{ font-size:16px; color:var(--orange); transition: transform .2s ease; flex-shrink:0; }
  .faq-item.open .plus{ transform: rotate(135deg); }
  .faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
  .faq-a p{ padding:0 4px 20px; font-size:16px; color:var(--ink-soft); max-width:680px; }

  /* FINAL CTA */
  .final-cta{ background: linear-gradient(180deg, var(--pitch) 0%, var(--pitch-deep) 100%); color:#fff; text-align:center; padding:100px 0; position:relative; overflow:hidden; }
  .final-cta h2{ font-size: clamp(30px,5vw,50px); max-width:780px; margin:0 auto; }
  .final-cta p{ opacity:0.85; max-width:520px; margin:18px auto 34px; }
  .final-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

  /* FOOTER */
  footer{ background: var(--pitch-deep); color:rgba(255,255,255,0.8); padding:64px 0 24px; }
  .footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.12); }
  
  
  .footer-grid h4{ font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--lime); margin-bottom:16px; }
  .footer-grid li{ font-size:13.5px; padding:6px 0; display:flex; align-items:center; gap:8px; }
  .footer-grid li a:hover{ color:var(--lime); }
  .footer-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:19px; color:#fff; margin-bottom:14px;}
  .footer-logo img{ height:45px;filter: brightness(0) invert(1);}
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:22px; font-size:12.5px; flex-wrap:wrap; gap:10px; }
  .social-row{ display:flex; gap:12px; }
  .social-row a{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; }

  /* FLOATING WHATSAPP + STICKY MOBILE CTA */
  .whatsapp-float{
    position:fixed; bottom:26px; right:26px; z-index:200; width:58px; height:58px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(0,0,0,0.25); font-size:26px; color:#fff;
  }
  .whatsapp-float:hover{ transform: scale(1.06); }

  /* Back to top — progress ring + floating button */
  .back-to-top-wrap{
    position:fixed; bottom:96px; right:26px; z-index:200; width:56px; height:56px;
    opacity:0; visibility:hidden; transform:scale(.5) translateY(16px);
    transition: opacity .35s cubic-bezier(.34,1.56,.64,1), transform .35s cubic-bezier(.34,1.56,.64,1), visibility .35s;
  }
  .back-to-top-wrap.show{ opacity:1; visibility:visible; transform:scale(1) translateY(0); }

  .btt-ring{ position:absolute; inset:0; width:100%; height:100%; transform:rotate(-90deg); pointer-events:none; }
  .btt-ring-bg{ fill:none; stroke:rgba(27,67,50,0.12); stroke-width:2.5; }
  .btt-ring-progress{
    fill:none; stroke:var(--orange); stroke-width:2.5; stroke-linecap:round;
    stroke-dashoffset:132; transition: stroke-dashoffset .12s linear;
  }

  .back-to-top{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:44px; height:44px; border-radius:50%; border:none; cursor:pointer;
    background:linear-gradient(135deg, var(--pitch-dark), var(--pitch-deep));
    color:#fff; display:flex; align-items:center; justify-content:center; font-size:16px;
    box-shadow:0 8px 20px rgba(27,67,50,0.35);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  }
  .back-to-top i{ transition: transform .3s ease; }
  .back-to-top:hover{ transform:translate(-50%,-50%) scale(1.08); box-shadow:0 12px 28px rgba(27,67,50,0.45); background:linear-gradient(135deg, var(--pitch), var(--pitch-dark)); }
  .back-to-top:hover i{ animation: btt-bounce .7s ease-in-out infinite; }
  .back-to-top:active{ transform:translate(-50%,-50%) scale(0.94); }

  @keyframes btt-bounce{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-3px); } }
  .sticky-mobile-cta{
    display:none; position:fixed; bottom:0; left:0; right:0; z-index:199; background:#fff; border-top:1px solid var(--line);
    padding:12px 16px; box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  }
  

  .fade-up{ opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
  .fade-up.in{ opacity:1; transform:none; }

  .skip-link{ position:absolute; left:-999px; top:0; background:#fff; padding:10px 16px; z-index:999; }
  .skip-link:focus{ left:10px; top:10px; }
  :focus-visible{ outline: 3px solid var(--orange); outline-offset:2px; }

/* CERTIFICATIONS */
.cert-wrap{ display:flex; flex-direction:column; gap:32px; }
.cert-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }

.cert-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding:18px 18px 22px; position:relative; overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cert-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.cert-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--orange), var(--pitch)); z-index:1;
}

.cert-thumb{
  border-radius: var(--radius-sm); overflow:hidden; margin-bottom:16px;
  border:1px solid var(--line); aspect-ratio: 4/3; background: var(--paper-alt);
}
.cert-thumb img{ width:100%; height:100%; object-fit:cover; object-position: top; transition: transform .3s ease; }
.cert-card:hover .cert-thumb img{ transform: scale(1.05); }

.cert-issuer{
  font-family:var(--font-mono); font-size:11px; text-transform:uppercase;
  letter-spacing:0.08em; color: var(--orange-dark); display:block; margin-bottom:8px;
}
.cert-card h4{ font-size:15.5px; margin-bottom:12px; line-height:1.3; }
.cert-date{ font-size:12.5px; color:var(--ink-soft); display:flex; align-items:center; gap:6px; margin-top:auto; }
.cert-date i{ color:var(--pitch); font-size:12px; }

.cert-highlights{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  background:none; padding:0;
}

.cert-highlights li{
  --c: var(--orange); --tint: rgba(245,129,31,0.12);
  display:flex; flex-direction:column; gap:16px;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding:22px 20px; position:relative; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cert-highlights li::before{
  content:""; position:absolute; top:0; left:22px; right:22px; height:3px;
  background: var(--c); border-radius:0 0 3px 3px;
  transform:scaleX(.3); transform-origin:left; transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.cert-highlights li:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.cert-highlights li:hover::before{ transform:scaleX(1); }

.cert-highlights li:nth-child(2){ --c: var(--pitch); --tint: rgba(27,67,50,0.10); }
.cert-highlights li:nth-child(3){ --c: var(--orange-dark); --tint: rgba(217,106,15,0.12); }
.cert-highlights li:nth-child(4){ --c: var(--pitch-dark); --tint: rgba(45,106,79,0.12); }

.cert-highlights li i{
  width:42px; height:42px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: var(--tint); color: var(--c); font-size:17px;
}
.cert-highlights li span{ font-size:14.5px; font-weight:600; color:var(--ink); line-height:1.45; }
.cert-thumb img {
  cursor:pointer;
}

.cert-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.cert-modal.active {
  display: flex;
}

.cert-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  animation: certZoomIn 0.2s ease;
}

.cert-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

@keyframes certZoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* POLICY / LEGAL PAGES */
.policy-hero{
  background: linear-gradient(160deg, var(--pitch-deep) 0%, var(--pitch) 100%);
  color:#fff; padding:72px 0 56px; position:relative; overflow:hidden;
}
.policy-hero::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 85% 15%, rgba(183,228,199,0.14), transparent 45%);
  pointer-events:none;
}
.policy-hero .eyebrow{ color: var(--lime); position:relative; z-index:1; }
.policy-hero .eyebrow::before{ background: var(--lime); }
.policy-hero h1{ font-size: clamp(30px,4.6vw,44px); margin-top:14px; max-width:640px; position:relative; z-index:1; }
.policy-meta-row{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:22px; position:relative; z-index:1; }
.meta-pill{
  font-family: var(--font-mono); font-size:12px; color:rgba(255,255,255,0.8);
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.22);
  padding:7px 14px; border-radius:999px;
}

.policy-layout{ display:grid; grid-template-columns:230px 1fr; gap:56px; align-items:start; }
.policy-toc{ position:sticky; top:96px; }
.policy-toc-label{
  font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.08em;
  color: var(--ink-soft); margin-bottom:14px; display:block;
}
.policy-toc ol{ list-style:none; display:flex; flex-direction:column; gap:2px; counter-reset:policy-counter; }
.policy-toc li{ counter-increment:policy-counter; }
.policy-toc a{
  display:flex; gap:10px; align-items:baseline; padding:9px 10px; border-radius: var(--radius-sm);
  font-size:13.5px; color:var(--ink-soft); font-weight:600; transition:background .15s ease, color .15s ease;
}
.policy-toc a::before{
  content: counter(policy-counter, decimal-leading-zero); font-family:var(--font-mono);
  font-size:11px; color: var(--orange); flex-shrink:0;
}
.policy-toc a:hover, .policy-toc a.active{ background: var(--paper-alt); color: var(--pitch); }

.policy-content{ max-width:680px; }
.policy-section{ padding-bottom:38px; margin-bottom:38px; border-bottom:1px solid var(--line); scroll-margin-top:100px; }
.policy-section:last-child{ border-bottom:none; margin-bottom:0; padding-bottom:0; }
.policy-section .sec-num{ font-family:var(--font-mono); font-size:12px; color:var(--orange); font-weight:700; display:block; margin-bottom:8px; }
.policy-section h2{ font-size:21px; margin-bottom:14px; }
.policy-section p{ font-size:15px; color: var(--ink-soft); margin-bottom:14px; }
.policy-section ul{ display:flex; flex-direction:column; gap:10px; margin:6px 0 4px; }
.policy-section ul li{ font-size:14.5px; color: var(--ink-soft); padding-left:20px; position:relative; }
.policy-section ul li::before{ content:"—"; position:absolute; left:0; color: var(--orange); font-weight:700; }
.policy-section ul li b{ color: var(--ink); font-weight:600; }

.policy-highlight{
  background: var(--paper-alt); border-left:3px solid var(--orange); border-radius: var(--radius-sm);
  padding:16px 20px; font-size:14px; color: var(--ink-soft); margin-top:6px;
}

.policy-todo{
  border:1.5px dashed var(--orange); background: rgba(245,129,31,0.06); border-radius: var(--radius-sm);
  padding:14px 18px; font-size:13.5px; color: var(--ink-soft); margin-top:10px;
}
.policy-todo b{ color: var(--orange-dark); font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:0.06em; display:block; margin-bottom:6px; }

.policy-contact-card{ background: var(--pitch-deep); color:#fff; border-radius: var(--radius-md); padding:28px; display:flex; flex-direction:column; gap:14px; }
.policy-contact-card h3{ font-size:16.5px; }
.policy-contact-card a{ color: var(--lime); font-weight:600; }
.policy-contact-row{ display:flex; justify-content:space-between; gap:12px; font-size:13.5px; border-top:1px dashed rgba(255,255,255,0.18); padding-top:12px; }
.policy-contact-row:first-of-type{ border-top:none; padding-top:0; }
.policy-contact-row span:first-child{ color:rgba(255,255,255,0.6); }

.gallery-grid img{
    cursor:pointer;
    transition:transform .3s ease;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
}

.lightbox.active{
    display:flex;
}

.lightbox-img{
    max-width:90%;
    max-height:90vh;
    object-fit:contain;
    border-radius:12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
    position:absolute;
    display:flex;
    align-items:center;
    justify-content:center;
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    cursor:pointer;
    transition:all .3s ease;
    user-select:none;
    z-index:10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{
    background:#ff6b00;
    border-color:#ff6b00;
    transform:scale(1.08);
}

.lightbox-close{
    top:24px;
    right:24px;
    font-size:28px;
}

.lightbox-prev{
    left:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
}

.lightbox-next{
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
}

.lightbox-prev:hover,
.lightbox-next:hover{
    transform:translateY(-50%) scale(1.08);
}
#lightboxImg{
    max-width:85%;
    max-height:90vh;
    border-radius:16px;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

 /* COMMUNITY PARTNER SECTION */
.community-cta{
  margin-top:48px;
  text-align:center;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:40px;
  box-shadow:var(--shadow-card);
}

.community-cta h3{
  font-size:clamp(22px,3vw,30px);
  color:var(--pitch);
}

.community-cta p{
  max-width:650px;
  margin:14px auto 0;
  color:var(--ink-soft);
}

.community-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.community-actions .btn{
  min-width:240px;
}


/* ============================================
   PATHWAY — EQUAL BOXES, NO GRADIENT BORDER
   ============================================ */

.pathway-final {
  background: var(--pitch-deep);
  position: relative;
  overflow: hidden;
}

/* ---- Grid: 4 equal columns ---- */
.path-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding: 20px 0 10px;
}

/* ---- Glowing connector line (behind the cards) ---- */
.path-grid::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  border-radius: 4px;
  opacity: 0.5;
  box-shadow: 0 0 30px rgba(245, 129, 31, 0.25), 0 0 60px rgba(183, 228, 199, 0.1);
  z-index: 0;
  transition: opacity 0.4s ease;
}
.path-grid:hover::before {
  opacity: 0.8;
}

/* ---- Each step card ---- */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---- The orb with number ---- */
.step-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pitch-deep);
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(183, 228, 199, 0);
  z-index: 2;
}

.step-card:hover .step-orb {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 30px rgba(183, 228, 199, 0.35);
  transform: scale(1.05);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--lime);
  transition: color 0.3s ease;
}
.step-card:hover .step-number {
  color: var(--pitch-deep);
}

/* ---- Card content (glassmorphism, NO gradient border) ---- */
.step-content {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 18px 26px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card:hover .step-content {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ---- Icon ---- */
.step-icon {
  font-size: 30px;
  color: var(--lime);
  margin-bottom: 14px;
  transition: transform 0.4s ease, color 0.4s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.1);
  color: #fff;
}

/* ---- Text ---- */
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 220px;
}

/* ============================================
   SESSION — RIBBON (Larger fonts, no scroll)
   ============================================ */

.session-ribbon {
  position: relative;
  overflow: hidden;
}

/* ---- Ribbon track (flex-wrap, no scroll) ---- */
.ribbon-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px 24px;
  padding: 34px 0 14px;
  overflow: visible;
}

/* ---- Connecting dashed line (hidden on wrap) ---- */
.ribbon-track::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(27, 67, 50, 0.2) 0px,
    rgba(27, 67, 50, 0.2) 8px,
    transparent 8px,
    transparent 14px
  );
  z-index: 0;
  pointer-events: none;
}

/* ---- Each step ---- */
.ribbon-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 96px;
  position: relative;
  z-index: 1;
  cursor: default;
  transition: transform 0.3s ease;
}
.ribbon-step:hover {
  transform: translateY(-4px);
}

/* ---- Marker (circle with number) ---- */
.step-marker {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.35s ease;
  z-index: 2;
}

/* Phase color on hover */
.phase-prep .step-marker {
  border-color: #1A6BB0;
}
.phase-skills .step-marker {
  border-color: #C77D00;
}
.phase-match .step-marker {
  border-color: #B33636;
}

.step-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-soft);
  transition: all 0.35s ease;
}
.ribbon-step:hover .step-num {
  color: #fff;
}
.phase-prep:hover .step-marker {
  background: #1A6BB0;
  border-color: #1A6BB0;
  box-shadow: 0 0 24px rgba(26, 107, 176, 0.3);
}
.phase-skills:hover .step-marker {
  background: #C77D00;
  border-color: #C77D00;
  box-shadow: 0 0 24px rgba(199, 125, 0, 0.3);
}
.phase-match:hover .step-marker {
  background: #B33636;
  border-color: #B33636;
  box-shadow: 0 0 24px rgba(179, 54, 54, 0.3);
}

/* ---- Ring animation on hover ---- */
.step-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
}
.ribbon-step:hover .step-ring {
  border-color: var(--lime);
  transform: scale(1.1);
  opacity: 0.6;
}

/* ---- Label (icon + title) ---- */
.step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
}
.step-label i {
  font-size: 20px;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}
.ribbon-step:hover .step-label i {
  color: var(--orange);
}
.ribbon-step:hover .step-label span {
  color: var(--pitch);
}

/* ---- Tooltip (description, appears on hover) ---- */
.step-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
  z-index: 10;
}
.step-tooltip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
}
.ribbon-step:hover .step-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ---- Legend ---- */
.ribbon-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}
.ribbon-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.prep {
  background: #1A6BB0;
}
.legend-dot.skills {
  background: #C77D00;
}
.legend-dot.match {
  background: #B33636;
}
.ribbon-legend i {
  color: var(--orange);
  font-size: 15px;
}

.pitch-mark{
    position:absolute; top:-120px; right:-160px; width:520px; height:520px;
    border:1px solid rgba(22,36,28,0.06); border-radius:50%;
    pointer-events:none;
  }
  .conduct-section{ overflow:hidden; }
  .pitch-mark::after{
    content:""; position:absolute; inset:60px; border:1px solid rgba(22,36,28,0.06); border-radius:50%;
  }

  .section-head{ max-width:640px; margin-bottom:64px; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:var(--accent); margin-bottom:18px;
  }
  .eyebrow::before{ content:""; width:22px; height:2px; background:var(--accent); display:inline-block; }
  h2{
    font-size:clamp(34px,4.4vw,50px);
    line-height:1.05;
    letter-spacing:-0.02em;
    margin:0 0 18px;
    
  }
  .section-head p{
    font-size:17px; line-height:1.65; color:var(--ink-soft); margin:0;
  }

  .conduct-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }

  .conduct-card{
    --c: var(--c-parents);
    background:var(--paper);
    border-radius:16px;
    padding:30px 26px 28px;
    position:relative;
    border:1px solid var(--line);
    box-shadow:0 1px 2px rgba(22,36,28,0.03);
    transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  }
  .conduct-card::before{
    content:"";
    position:absolute; top:0; left:26px; right:26px; height:3px;
    background:var(--c);
    border-radius:0 0 3px 3px;
    transform:scaleX(.32);
    transform-origin:left;
    transition:transform .45s cubic-bezier(.2,.8,.2,1);
  }
  .conduct-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 34px -18px rgba(22,36,28,0.28);
    border-color:transparent;
  }
  .conduct-card:hover::before{ transform:scaleX(1); }

  .conduct-card:nth-child(1){ --c: var(--c-parents); }
  .conduct-card:nth-child(2){ --c: var(--c-players); }
  .conduct-card:nth-child(3){ --c: var(--c-community); }
  .conduct-card:nth-child(4){ --c: var(--c-whatsapp); }

  .card-icon{
    width:46px; height:46px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background:color-mix(in srgb, var(--c) 12%, white);
    color:var(--c);
    font-size:18px;
    margin-bottom:20px;
    transition:transform .35s ease;
  }
  .conduct-card:hover .card-icon{ transform:scale(1.08) rotate(-4deg); }

  .conduct-card h4{
    margin:0 0 16px;
    font-size:16.5px;
    font-weight:700;
    letter-spacing:-0.01em;
  }

  .conduct-card ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;min-height: 178px; }
  .conduct-card li{
    display:flex; align-items:flex-start; gap:10px;
    font-size:14.5px; line-height:1.5;
    color:var(--ink-soft);
  }
  .conduct-card li i{
    color:var(--c); font-size:12px; margin-top:4px; flex-shrink:0;
  }

  .conduct-foot{
    margin-top:16px; padding-top:16px; border-top:1px dashed var(--line);
    font-size:12.5px; font-weight:600; letter-spacing:.03em; color:var(--c);
    display:flex; align-items:center; gap:6px;
  }


   /* ===== TESTIMONIALS ===== */
  .testi-section-v2{ background:var(--paper-alt); position:relative; overflow:hidden; }
  .testi-section-v2::before{
    content:""; position:absolute; top:-140px; right:-140px; width:420px; height:420px;
    border-radius:50%; border:1px solid rgba(27,67,50,0.08); pointer-events:none;
  }
 
  .testi-grid-v2{
    display:grid; grid-template-columns:repeat(2,1fr); gap:24px; position:relative; z-index:1;
  }
 
  .testi-card-v2{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--radius-md);
    padding:32px 30px 28px; position:relative; overflow:hidden;
    transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
    opacity:0; transform:translateY(16px); animation:testiIn .5s ease forwards;
  }
  .testi-card-v2:hover{
    transform:translateY(-5px); box-shadow:var(--shadow-card); border-color:transparent;
  }
  .testi-card-v2::before{
    content:""; position:absolute; top:0; left:28px; right:28px; height:3px;
    background:linear-gradient(90deg, var(--orange), var(--pitch));
    transform:scaleX(.3); transform-origin:left; transition:transform .45s cubic-bezier(.2,.8,.2,1);
  }
  .testi-card-v2:hover::before{ transform:scaleX(1); }
 
  .testi-quote-icon{
    width:42px; height:42px; border-radius:12px; background:var(--paper-deep); color:var(--pitch);
    display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:20px;
  }
 
  .testi-headline{
    font-family:var(--font-mono); font-size:11.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
    color:var(--orange-dark); margin-bottom:14px;
  }
 
  .testi-quote{
    font-size:16px; line-height:1.7; color:var(--ink); margin-bottom:24px;
  }
 
  .testi-attribution{
    display:flex; align-items:center; gap:14px; padding-top:20px; border-top:1px dashed var(--line);
  }
  .testi-avatar-v2{
    width:44px; height:44px; border-radius:50%; background:var(--pitch); color:#fff;
    font-family:var(--font-display); font-weight:700; font-size:16px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .testi-who-v2 b{ display:block; font-size:14.5px; font-weight:700; }
  .testi-who-v2 span{ display:block; font-size:12.5px; color:var(--ink-soft); margin-top:2px; }
  .testi-child-tag{
    margin-left:auto; font-family:var(--font-mono); font-size:11.5px; color:var(--pitch);
    background:var(--paper-deep); padding:6px 12px; border-radius:999px; white-space:nowrap; font-weight:600;
  }
 
  .testi-hidden{ display:none; }
 
  @keyframes testiIn{ to{ opacity:1; transform:translateY(0); } }
 
  .testi-more-wrap{ display:flex; justify-content:center; margin-top:40px; }
  .btn-outline-testi{
    display:inline-flex; align-items:center; gap:10px;
    font-family:var(--font-display); font-weight:600; font-size:15px;
    padding:14px 28px; border-radius:999px; border:2px solid var(--pitch); color:var(--pitch);
    background:transparent; cursor:pointer; transition:all .2s ease;
  }
  .btn-outline-testi:hover{ background:var(--pitch); color:#fff; }
  .btn-outline-testi i{ transition:transform .3s ease; }
  .btn-outline-testi.open i{ transform:rotate(180deg); }
 
  .testi-footer{
    text-align:center; margin-top:40px; font-size:13px; color:var(--ink-soft);
    font-family:var(--font-mono); letter-spacing:.02em;
  }
 
  /* ===== MOBILE: SWIPEABLE CAROUSEL ===== */
  .testi-dots{
    display:none; justify-content:center; gap:8px; margin-top:22px;
  }
  .testi-dot{
    width:7px; height:7px; border-radius:50%; background:var(--line); border:none; padding:0; cursor:pointer;
    transition:background .25s ease, transform .25s ease;
  }
  .testi-dot.active{ background:var(--pitch); transform:scale(1.3); }
 
  .testi-swipe-hint{
    display:none; align-items:center; justify-content:center; gap:8px;
    font-family:var(--font-mono); font-size:11.5px; color:var(--ink-soft);
    margin-top:14px; letter-spacing:.03em;
  }
  .testi-swipe-hint i{ color:var(--orange); font-size:12px; }

/* ======================== */
/* RESPONSIVE / MEDIA QUERIES (consolidated, mobile-first, one block per breakpoint) */
/* ======================== */

@media (prefers-reduced-motion: reduce) {
  .trust-track{ animation:none; }
  .hero-photo-card img{ animation:none; }
  .trend-path{ animation:none; stroke-dashoffset:0; }
  .trend-dot{ animation:none; opacity:.9; }
}

@media (max-width: 980px) {
  .nav-links{ display:none; }
  .nav-toggle{ display:block; font-size:22px; }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-photo-card img{ height:360px; }
  .snap-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:32px; }
  .cert-grid{ grid-template-columns:repeat(2,1fr); }
  .cert-highlights{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 920px) {
  .path-grid{
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .path-grid::before{ display: none; }
  .path-grid::after{
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg, var(--orange), var(--lime));
    border-radius: 6px;
    opacity: 0.3;
    z-index: 0;
    box-shadow: 0 0 30px rgba(245, 129, 31, 0.15);
  }
  .step-card{
    flex-direction: row;
    gap: 20px;
    padding: 14px 0;
    align-items: center;
    text-align: left;
  }
  .step-orb{ width: 54px; height: 54px; margin-bottom: 0; flex-shrink: 0; z-index: 2; }
  .step-number{ font-size: 15px; }
  .step-content{ flex: 1; padding: 18px 20px; align-items: flex-start; text-align: left; }
  .step-content p{ max-width: 100%; font-size:15px; }
  .step-icon{ font-size: 24px; margin-bottom: 6px; }
  .step-content h3{ font-size: 18px; }
  .step-card:hover .step-content{ transform: translateY(0) translateX(4px); }
}

@media (max-width: 900px) {
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .coach-wrap{ grid-template-columns:1fr; }
  .coach-photo img{ height:360px; }
  .age-grid{ grid-template-columns:repeat(2,1fr); }
  .pathway{ flex-direction:column; }
  .pathway-arrow{ transform:rotate(90deg); }
  .bring-grid{ grid-template-columns:repeat(3,1fr); }
  .jersey-wrap{ grid-template-columns:1fr; }
  .safety-grid{ grid-template-columns:repeat(2,1fr); }
  .conduct-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{
    columns: unset;
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    gap:14px;
    padding:4px 24px 10px;
    margin:0 -24px;
    scrollbar-width:none;
  }
  .gallery-grid::-webkit-scrollbar{ display:none; }
  .gallery-grid img{
    flex:0 0 70%;
    max-width:300px;
    height:340px;
    width:auto;
    margin-bottom:0;
    object-fit:cover;
    scroll-snap-align:center;
    box-shadow:var(--shadow-card);
  }
  /* .gallery-scroll-wrap::after{
    content:"";
    position:absolute; top:0; right:0; bottom:10px; width:56px;
    background:linear-gradient(90deg, transparent, var(--paper));
    pointer-events:none;
  } */
  .gallery-meta{ margin-top:-20px; }
  .gallery-swipe-hint{ display:inline-flex; }
  .gallery-nav{ display:flex; }
  .gallery-dots{ display:flex; }
  .comm-grid{ grid-template-columns:1fr; }
  .stats-trend-line{ display:none; }
  .stats-grid{ grid-template-columns:repeat(3,1fr); row-gap:28px; }
  .stat-item{ padding:8px 14px; }
  .stat-item::before, .stat-item + .stat-item::before{ display:none; }
  .testi-grid{ grid-template-columns:1fr; }
  .policy-layout{ grid-template-columns:1fr; }
  .policy-toc{ position:static; margin-bottom:32px; }
  .policy-toc ol{ flex-direction:row; flex-wrap:wrap; gap:8px; }
  .policy-toc a{ background:#fff; border:1px solid var(--line); }
  .policy-toc a::before{ display:none; }
  .section-pad{ padding:64px 0; }
  .final-cta{ padding:64px 0; }
  .testi-grid-v2{
    display:flex;
    grid-template-columns:none;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    gap:16px;
    padding:6px 24px 10px;
    margin:0 -24px;
    scrollbar-width:none;
  }
  .testi-grid-v2::-webkit-scrollbar{ display:none; }
  .testi-card-v2{ flex:0 0 85%; scroll-snap-align:center; max-width:420px; }
  .testi-card-v2.testi-hidden{ display:flex !important; flex-direction:column; }
  .testi-more-wrap{ display:none; }
  .testi-dots{ display:flex; }
  .testi-swipe-hint{ display:flex; }
}

@media (max-width: 820px) {
  .ribbon-track{ gap: 8px 18px; }
  .ribbon-track::before{ display: none; }
  .ribbon-step{ flex: 0 0 80px; }
  .step-marker{ width: 48px; height: 48px; }
  .step-num{ font-size: 17px; }
  .step-label{ font-size: 11.5px; }
  .step-label i{ font-size: 17px; }
  .step-tooltip{ font-size: 12px; padding: 8px 14px; white-space: normal; max-width: 140px; }
  .ribbon-legend{ font-size: 12.5px; gap: 24px; }
}

@media (max-width: 800px) {
  .fee-card{ grid-template-columns:1fr; }
  .fee-main, .fee-details{ padding:28px; }
}

@media (max-width: 768px) {
  #lightboxImg{ max-width:95%; }
  .lightbox-btn{ width:48px; height:48px; font-size:18px; }
  .lightbox-prev{ left:15px; }
  .lightbox-next{ right:15px; }
  .lightbox-close{ top:15px; right:15px; }
  .sticky-mobile-cta{ display:flex; gap:10px; }
  .whatsapp-float{ bottom:82px; width:50px; height:50px; font-size:22px; right:16px; }
  .back-to-top-wrap{ bottom:144px; right:16px; width:48px; height:48px; }
  .back-to-top{ width:38px; height:38px; font-size:14px; }
  .community-cta{ padding:28px 22px; }
  .community-actions{ flex-direction:column; align-items:center; }
  .community-actions .btn{ width:100%; max-width:340px; }
}

@media (max-width: 700px) {
  .policy-list{ grid-template-columns:1fr; }
  .cert-highlights{ grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .hero-float-card{ left:14px; bottom:-20px; padding:12px 16px; }
}

@media (max-width: 600px) {
  .why-grid{ grid-template-columns: 1fr; }
  .ribbon-track{ gap: 6px 12px; padding: 20px 0 8px; }
  .ribbon-step{ flex: 0 0 70px; }
  .step-marker{ width: 40px; height: 40px; margin-bottom: 6px; }
  .step-num{ font-size: 14px; }
  .step-label{ font-size: 10px; }
  .step-label i{ font-size: 14px; }
  .step-tooltip{ display: none; }
  .ribbon-legend{ gap: 16px; font-size: 11px; margin-top: 18px; }
}

@media (max-width: 560px) {
  .snap-grid{ grid-template-columns: 1fr; }
  .age-grid{ grid-template-columns:1fr; }
  .bring-grid{ grid-template-columns:repeat(2,1fr); }
  .safety-grid{ grid-template-columns:1fr; }
  .conduct-grid{ grid-template-columns:1fr; }
  .conduct-card ul{ min-height: auto; }
  .gallery-grid img{ flex:0 0 78%; height:280px; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr; }
  .cert-grid{ grid-template-columns:1fr; }
  .nav-logo img {height: 42px;}
  .register-card {padding: 16px;}
  .btn{padding: 12px 24px; font-size: 14px;}
  .btn-sm {padding: 6px 14px;font-size: 12px;}
  .section-head{margin-bottom: 30px;}
  .hero-photo-card img{height: auto;}
  .coach-photo img {height: auto;}

}

@media (max-width: 520px) {
  .step-card{ gap: 14px; padding: 10px 0; }
  .step-orb{ width: 44px; height: 44px; }
  .step-number{ font-size: 13px; }
  .step-content{ padding: 14px 16px; }
  .step-content h3{ font-size: 16px; }
  .step-content p{ font-size: 14px; }
  .path-grid::after{ left: 28px; }
  .testi-card-v2{ padding:26px 22px 22px; flex-basis:88%; }
  .testi-child-tag{ display:none; }
}