*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: #fff;
      color: #1a1a2e;
      overflow-x: hidden;
      line-height: 1.65
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    :root {
      --green: #1DB954;
      --green-dark: #14993e;
      --green-light: #e8f9ee;
      --green-mid: #c5f0d5;
      --navy: #0c1824;
      --text: #1a1a2e;
      --muted: #5a6478;
      --border: #e5e9f0;
      --bg-soft: #f7f9fc;
      --white: #fff;
      --r: 14px;
      --r-sm: 8px;
      --sh: 0 4px 24px rgba(0, 0, 0, .07);
      --sh-lg: 0 12px 48px rgba(0, 0, 0, .12);
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      background: rgba(39, 98, 54, 0.96);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: 0 6%;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: box-shadow .3s
    }

    nav.scrolled {
      box-shadow: 0 2px 24px rgba(0, 0, 0, .08)
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .nav-logo-img {
      height: 36px;
      width: auto;
      display: block
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.8rem
    }

    .nav-links a {
      font-size: .85rem;
      font-weight: 500;
      color: #fff;
      transition: color .2s;
      white-space: nowrap
    }

    .nav-links a:hover {
      color: var(--navy)
    }

    .nav-cta {
      background: var(--green);
      color: #ffffff !important;
      padding: .55rem 1.3rem;
      border-radius: 50px;
      font-weight: 700 !important;
      font-size: .85rem;
      transition: background .2s, transform .15s !important
    }

    .nav-cta:hover {
      background: var(--green-dark) !important;
      transform: translateY(-1px)
    }

    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: .3s
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .ham.open span:nth-child(2) {
      opacity: 0
    }

    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mob-menu {
      display: none;
      position: fixed;
      inset: 68px 0 0 0;
      background: #fff;
      z-index: 190;
      padding: 2rem 6%;
      flex-direction: column;
      gap: 1rem;
      overflow-y: auto
    }

    .mob-menu.open {
      display: flex
    }

    .mob-menu a {
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      padding: .6rem 0;
      border-bottom: 1px solid var(--border)
    }

    .mob-menu .mob-cta {
      margin-top: .5rem;
      background: var(--green);
      color: #fff;
      text-align: center;
      padding: .9rem;
      border-radius: 50px;
      font-weight: 700;
      border-bottom: none
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      padding: 120px 6% 80px;
      display: flex;
      align-items: center;
      background: linear-gradient(135deg, #f2fbf5 0%, #fff 45%, #f5f7ff 100%);
      position: relative;
      overflow: hidden
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -180px;
      width: 650px;
      height: 650px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29, 185, 84, .1) 0%, transparent 70%);
      pointer-events: none
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -120px;
      left: -80px;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29, 185, 84, .06) 0%, transparent 70%);
      pointer-events: none
    }

    .hero-wrap {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--green-light);
      border: 1px solid var(--green-mid);
      color: var(--green-dark);
      border-radius: 50px;
      padding: .4rem 1rem .4rem .65rem;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 1.6rem
    }

    .pill-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 2s infinite;
      flex-shrink: 0
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(1.4)
      }
    }

    .hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--navy);
      margin-bottom: 1.4rem;
      letter-spacing: -.025em
    }

    .hero h1 .hl {
      color: var(--green);
      font-style: italic;
      position: relative;
      display: inline-block
    }

    .hero h1 .hl::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
      opacity: .35
    }

    .hero p {
      font-size: 1.02rem;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.78;
      margin-bottom: 2.2rem
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.8rem
    }

    .btn-g {
      background: var(--green);
      color: #fff;
      padding: .8rem 1.8rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .9rem;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .2s, transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(29, 185, 84, .28)
    }

    .btn-g:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(29, 185, 84, .38)
    }

    .btn-o {
      border: 1.5px solid var(--border);
      color: var(--navy);
      padding: .8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: .9rem;
      transition: border-color .2s, background .2s
    }

    .btn-o:hover {
      border-color: var(--green);
      background: var(--green-light)
    }

    .hero-stats {
      display: flex;
      gap: 2.2rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      flex-wrap: wrap
    }

    .st-n {
      font-family: 'Fraunces', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1
    }

    .st-n em {
      color: var(--green);
      font-style: normal;
      font-size: 1.2rem
    }

    .st-l {
      font-size: .74rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-top: .2rem
    }

    /* HERO IMAGE COLLAGE */
    .hero-visual {
      position: relative;
      height: 560px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .collage {
      position: relative;
      width: 100%;
      height: 100%
    }

    /* floating badge */
    .float-badge {
      position: absolute;
      z-index: 20;
      background: var(--navy);
      border-radius: 16px;
      padding: .9rem 1.2rem;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
      animation: floatUp 3.2s ease-in-out infinite
    }

    @keyframes floatUp {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .fb-inner {
      display: flex;
      align-items: center;
      gap: .7rem
    }

    .fb-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(29, 185, 84, .25)
    }

    .fb-text {
      font-size: .75rem;
      font-weight: 700;
      color: #fff;
      white-space: nowrap
    }

    .fb-sub {
      font-size: .65rem;
      color: rgba(255, 255, 255, .45);
      white-space: nowrap
    }

    /* image frames */
    .img-frame {
      position: absolute;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
      transition: transform .4s ease
    }

    .img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .img-frame:hover {
      transform: scale(1.03) !important
    }

    /* decorative ring */
    .deco-ring {
      position: absolute;
      border-radius: 50%;
      border: 2px dashed rgba(29, 185, 84, .25);
      pointer-events: none;
      animation: spinSlow 18s linear infinite
    }

    @keyframes spinSlow {
      to {
        transform: rotate(360deg)
      }
    }

    .deco-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--green);
      opacity: .6
    }

    /* green accent blob */
    .green-blob {
      position: absolute;
      border-radius: 50%;
      background: rgba(29, 185, 84, .08);
      pointer-events: none
    }

    /* pill overlay */
    .img-pill {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(12, 24, 36, .82);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: .35rem .85rem;
      font-size: .72rem;
      font-weight: 700;
      color: #fff;
      white-space: nowrap;
      letter-spacing: .04em
    }

    /* tag chip on images */
    .img-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--green);
      border-radius: 6px;
      padding: .22rem .6rem;
      font-size: .66rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: .07em;
      text-transform: uppercase
    }

    /* count badge */
    .count-badge {
      position: absolute;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(29, 185, 84, .4);
      z-index: 30
    }

    .count-badge .cn {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1
    }

    .count-badge .cl {
      font-size: .5rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .7);
      letter-spacing: .05em;
      text-transform: uppercase
    }

    /* SHARED */
    .sec {
      padding: 88px 6%
    }

    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%
    }

    .tag-lbl {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      border-radius: 50px;
      padding: .28rem .9rem;
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      margin-bottom: .9rem
    }

    .sec-h {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: .85rem;
      letter-spacing: -.02em
    }

    .sec-h .gr {
      color: var(--green);
      font-style: italic
    }

    .sec-p {
      font-size: .97rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.75
    }

    /* PROBLEM STRIP */
    .prob {
      background: var(--navy);
      padding: 56px 6% 80px;
      position: relative;
      overflow: hidden
    }

    .prob::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: radial-gradient(rgba(29, 185, 84, .06) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none
    }

    .prob-tag-row {
      max-width: 1200px;
      margin: 0 auto .9rem;
      position: relative;
      z-index: 1
    }

    .prob-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      position: relative;
      z-index: 1
    }

    .prob .tag-lbl {
      background: rgba(29, 185, 84, .15);
      color: var(--green)
    }

    .prob .sec-h {
      color: #fff
    }

    .prob .sec-p {
      color: rgba(255, 255, 255, .5)
    }

    .prob-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2rem
    }

    .ps {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r);
      padding: 1.4rem;
      transition: border-color .3s, background .3s
    }

    .ps:hover {
      border-color: rgba(29, 185, 84, .3);
      background: rgba(29, 185, 84, .05)
    }

    .ps-n {
      font-family: 'Fraunces', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--green);
      line-height: 1
    }

    .ps-l {
      font-size: .83rem;
      color: rgba(255, 255, 255, .45);
      margin-top: .4rem;
      line-height: 1.4
    }

    .prob-list {
      display: flex;
      flex-direction: column;
      gap: .85rem
    }

    .pl-item {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: var(--r-sm);
      padding: 1rem 1.2rem;
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      transition: border-color .3s, background .3s, transform .3s
    }

    .pl-item:hover {
      border-color: rgba(29, 185, 84, .25);
      background: rgba(255, 255, 255, .07);
      transform: translateX(4px)
    }

    .pl-ico {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(29, 185, 84, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green)
    }

    .pl-item h4 {
      font-size: .88rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .2rem
    }

    .pl-item p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .42);
      line-height: 1.5
    }

    /* PILLARS */
    .pillars-bg {
      background: var(--bg-soft)
    }

    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.4rem;
      margin-top: 2.8rem
    }

    .pillar {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2rem;
      transition: box-shadow .3s, transform .3s, border-color .3s;
      position: relative;
      overflow: hidden
    }

    .pillar::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s
    }

    .pillar:hover {
      box-shadow: var(--sh-lg);
      transform: translateY(-4px);
      border-color: rgba(29, 185, 84, .18)
    }

    .pillar:hover::after {
      transform: scaleX(1)
    }

    .pil-n {
      font-family: 'Fraunces', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--green);
      line-height: 1;
      margin-bottom: .7rem
    }

    .pillar h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .5rem
    }

    .pillar p {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7
    }

    /* TRACKS */
    .tracks-tabs {
      display: flex;
      gap: .4rem;
      background: var(--bg-soft);
      border-radius: 50px;
      padding: .3rem;
      margin-top: 2.5rem;
      width: fit-content;
      flex-wrap: wrap
    }

    .tb {
      padding: .55rem 1.3rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-family: 'Manrope', sans-serif;
      font-size: .84rem;
      font-weight: 600;
      background: transparent;
      color: var(--muted);
      transition: all .25s
    }

    .tb.on {
      background: #fff;
      color: var(--navy);
      box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
    }

    .track-panels {
      margin-top: 2rem
    }

    .tp {
      display: none
    }

    .tp.on {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start
    }

    .tp-l h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: .7rem
    }

    .track-tag {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      border-radius: 4px;
      padding: .2rem .65rem;
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 1.1rem
    }

    .tp-l p {
      font-size: .93rem;
      color: var(--muted);
      line-height: 1.76;
      margin-bottom: 1.4rem
    }

    .tools-h {
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .7rem
    }

    .tools-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem
    }

    .chip {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: .32rem .78rem;
      font-size: .79rem;
      font-weight: 600;
      color: var(--navy)
    }

    .tp-r {
      background: var(--navy);
      border-radius: var(--r);
      padding: 2rem
    }

    .tp-r h4 {
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 1.2rem
    }

    .focus-list {
      display: flex;
      flex-direction: column;
      gap: .65rem
    }

    .fi {
      display: flex;
      align-items: center;
      gap: .75rem;
      background: rgba(255, 255, 255, .05);
      border-radius: 8px;
      padding: .75rem 1rem
    }

    .fi::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0
    }

    .fi span {
      font-size: .86rem;
      color: rgba(255, 255, 255, .75);
      font-weight: 500
    }

    /* CURRICULUM */
    .curr-bg {
      background: var(--bg-soft)
    }

    .phases-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem;
      margin-top: 2.8rem
    }

    .ph-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.6rem;
      cursor: pointer;
      transition: all .3s;
      position: relative;
      overflow: hidden
    }

    .ph-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: .3s
    }

    .ph-card:hover,
    .ph-card.on {
      border-color: rgba(29, 185, 84, .28);
      box-shadow: var(--sh)
    }

    .ph-card:hover::after,
    .ph-card.on::after {
      transform: scaleX(1)
    }

    .ph-num {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: .9rem
    }

    .ph-card.on .ph-num {
      background: var(--green);
      color: #fff
    }

    .ph-wk {
      font-size: .73rem;
      font-weight: 700;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: .35rem
    }

    .ph-card h3 {
      font-size: .93rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .35rem
    }

    .ph-card p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.5
    }

    .ph-detail {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2.2rem;
      margin-top: 1.4rem;
      display: none
    }

    .ph-detail.on {
      display: block
    }

    .ph-dt {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.4rem
    }

    .pd-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: .7rem
    }

    .pd-i {
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      background: var(--bg-soft);
      border-radius: 8px;
      padding: .85rem 1rem
    }

    .pd-arr {
      color: var(--green);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: .05rem
    }

    .pd-i span {
      font-size: .86rem;
      color: var(--text);
      line-height: 1.5
    }

    /* ASSESSMENT */
    .assess-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      margin-top: 2.8rem;
      align-items: start
    }

    .spider-box {
      background: var(--bg-soft);
      border-radius: var(--r);
      padding: 1.8rem;
      text-align: center
    }

    .spider-legend {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      margin-top: .9rem;
      flex-wrap: wrap
    }

    .leg-i {
      display: flex;
      align-items: center;
      gap: .45rem;
      font-size: .8rem;
      font-weight: 600;
      color: var(--muted)
    }

    .leg-d {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .axes-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .9rem
    }

    .ax-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: .95rem;
      display: flex;
      gap: .7rem;
      align-items: flex-start;
      transition: border-color .2s, transform .2s, box-shadow .2s
    }

    .ax-card:hover {
      border-color: rgba(29, 185, 84, .25);
      transform: translateY(-2px);
      box-shadow: var(--sh)
    }

    .ax-ic {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green-dark)
    }

    .ax-card h4 {
      font-size: .83rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .12rem
    }

    .ax-card p {
      font-size: .76rem;
      color: var(--muted);
      line-height: 1.45
    }


    /* TEAM */
    .team-bg {
      background: #fff
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 2.8rem
    }

    .tm-card {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2rem;
      transition: box-shadow .3s, transform .3s
    }

    .tm-card:hover {
      box-shadow: var(--sh-lg);
      transform: translateY(-3px)
    }

    .tm-ico {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      margin-bottom: 1.1rem;
      transition: background .3s, color .3s
    }

    .tm-card:hover .tm-ico {
      background: var(--green);
      color: #fff
    }

    .tm-badge {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      border-radius: 4px;
      padding: .2rem .65rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .85rem
    }

    .tm-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .5rem
    }

    .tm-card p {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.65
    }

    /* DELIVERABLES */
    .del-bg {
      background: var(--navy);
      position: relative;
      overflow: hidden
    }

    .del-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(29, 185, 84, .05) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none
    }

    .del-bg .tag-lbl {
      background: rgba(29, 185, 84, .15);
      color: var(--green)
    }

    .del-bg .sec-h {
      color: #fff
    }

    .del-bg .sec-p {
      color: rgba(255, 255, 255, .48)
    }

    .del-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 2.8rem
    }

    .del-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r);
      padding: 2rem;
      text-align: center;
      transition: background .3s, border-color .3s, transform .3s
    }

    .del-card:hover {
      background: rgba(255, 255, 255, .09);
      border-color: rgba(29, 185, 84, .28);
      transform: translateY(-4px)
    }

    .del-ico {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(29, 185, 84, .15);
      margin: 0 auto .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green)
    }

    .del-card h3 {
      font-size: .93rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .45rem
    }

    .del-card p {
      font-size: .82rem;
      color: rgba(255, 255, 255, .42);
      line-height: 1.6
    }

    /* LOGISTICS */
    .log-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 2.8rem
    }

    .log-step {
      background: var(--bg-soft);
      border-radius: var(--r);
      padding: 1.8rem;
      border: 1px solid var(--border);
      transition: border-color .3s, transform .3s, box-shadow .3s
    }

    .log-step:hover {
      border-color: rgba(29, 185, 84, .25);
      transform: translateY(-3px);
      box-shadow: var(--sh)
    }

    .log-icon {
      width: 48px;
      height: 48px;
      background: var(--green-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--green-dark)
    }

    .log-step h3 {
      font-size: .98rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .45rem
    }

    .log-step p {
      font-size: .86rem;
      color: var(--muted);
      line-height: 1.65
    }


    /* PRICING */
    .price-bg {
      background: var(--bg-soft)
    }

    .price-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
      max-width: 820px;
      margin-top: 2.8rem
    }

    .pc {
      background: #fff;
      border: 2px solid var(--border);
      border-radius: var(--r);
      padding: 2.5rem;
      transition: border-color .3s
    }

    .pc.feat {
      border-color: var(--green);
      position: relative;
      overflow: hidden
    }

    .best {
      position: absolute;
      top: 18px;
      right: -30px;
      background: var(--green);
      color: #fff;
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .28rem 2.8rem;
      transform: rotate(45deg)
    }

    .plan-n {
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .5rem
    }

    .plan-p {
      font-family: 'Fraunces', serif;
      font-size: 2.7rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: .25rem
    }

    .plan-p small {
      font-size: 1rem;
      font-weight: 400;
      color: var(--muted)
    }

    .plan-save {
      display: inline-block;
      background: #fff8e0;
      color: #b37700;
      border-radius: 4px;
      padding: .18rem .55rem;
      font-size: .76rem;
      font-weight: 700;
      margin-bottom: 1.4rem
    }

    .plan-div {
      height: 1px;
      background: var(--border);
      margin: 1.4rem 0
    }

    .plan-feats {
      display: flex;
      flex-direction: column;
      gap: .75rem;
      margin-bottom: 1.8rem
    }

    .pf {
      display: flex;
      align-items: center;
      gap: .75rem;
      font-size: .86rem;
      color: var(--muted)
    }

    .pf::before {
      content: '✓';
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-size: .62rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 18px
    }

    .price-note {
      font-size: .83rem;
      color: var(--muted);
      line-height: 1.65;
      max-width: 600px;
      margin-top: 1.4rem;
      padding: 1rem 1.2rem;
      background: var(--green-light);
      border-radius: var(--r-sm);
      border-left: 3px solid var(--green)
    }

    /* CTA BAND */
    .cta-band {
      background: linear-gradient(135deg, #0c1824, #142235);
      padding: 96px 6%;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .cta-band::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(29, 185, 84, .13) 0%, transparent 70%);
      pointer-events: none
    }

    .cta-band .tag-lbl {
      background: rgba(29, 185, 84, .15);
      color: var(--green)
    }

    .cta-band h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.15;
      position: relative
    }

    .cta-band p {
      color: rgba(255, 255, 255, .52);
      font-size: 1rem;
      max-width: 460px;
      margin: 0 auto 2.5rem;
      line-height: 1.75;
      position: relative
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative
    }

    .btn-wh {
      border: 1.5px solid rgba(255, 255, 255, .2);
      color: #fff;
      padding: .8rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: .9rem;
      transition: border-color .2s, background .2s
    }

    .btn-wh:hover {
      border-color: rgba(255, 255, 255, .5);
      background: rgba(255, 255, 255, .06)
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 64px 6% 0
    }

    .ft-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    .ft-brand .fb-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem
    }

    .ft-logo-img {
      height: 32px;
      width: auto;
      display: block;
    
    }

    .ft-brand p {
      font-size: .85rem;
      color: rgba(255, 255, 255, .42);
      line-height: 1.75;
      max-width: 320px;
      margin-bottom: 1.4rem
    }

    .ft-socials {
      display: flex;
      gap: .6rem
    }

    .ft-soc {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .45);
      font-size: .8rem;
      font-weight: 700;
      transition: background .2s, color .2s, border-color .2s
    }

    .ft-soc:hover {
      background: var(--green);
      color: #fff;
      border-color: var(--green)
    }

    .ft-col h4 {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 1.1rem
    }

    .ft-col ul {
      display: flex;
      flex-direction: column;
      gap: .6rem
    }

    .ft-col a {
      font-size: .85rem;
      color: rgba(255, 255, 255, .47);
      transition: color .2s
    }

    .ft-col a:hover {
      color: var(--green)
    }

    .ft-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1.5rem 0
    }

    .ft-bottom p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .28)
    }

    .ft-legal {
      display: flex;
      gap: 1.4rem;
      flex-wrap: wrap
    }

    .ft-legal a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .28);
      transition: color .2s
    }

    .ft-legal a:hover {
      color: rgba(255, 255, 255, .65)
    }

    .ft-powered a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .28);
      display: flex;
      align-items: center;
      gap: .4rem;
      transition: color .2s
    }

    .ft-powered a:hover {
      color: rgba(255, 255, 255, .65)
    }

    .lf-mark {
      width: 16px;
      height: 16px;
      background: rgba(255, 255, 255, .12);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .lf-logo {
      width: 14px;
      height: 14px;
      object-fit: contain;
      display: block;
    }

    /* REVEAL */
    .rv {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .6s ease, transform .6s ease
    }

    .rv.in {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .hero-wrap {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .hero-visual {
        height: 420px
      }

      .prob-inner {
        grid-template-columns: 1fr
      }

      .phases-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .assess-grid {
        grid-template-columns: 1fr
      }

      .del-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
      }

      .tp.on {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:768px) {
      nav .nav-links {
        display: none
      }

      .ham {
        display: flex
      }

      .hero {
        padding: 96px 6% 60px
      }

      .sec,
      .prob,
      .del-bg,
      .price-bg,
      .cta-band {
        padding: 64px 6%
      }

      .pillars-grid,
      .team-grid,
      .price-grid,
      .log-grid {
        grid-template-columns: 1fr
      }

      .del-grid {
        grid-template-columns: 1fr 1fr
      }

      .price-grid {
        max-width: 100%
      }

      .hero-stats {
        gap: 1.4rem
      }

      .ft-grid {
        grid-template-columns: 1fr
      }

      .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem
      }

      .axes-grid {
        grid-template-columns: 1fr
      }

      .hero-visual {
        display: none
      }
    }

    @media(max-width:480px) {
      .phases-grid {
        grid-template-columns: 1fr
      }

      .del-grid {
        grid-template-columns: 1fr
      }

      .tracks-tabs {
        width: 100%
      }

      .tb {
        flex: 1;
        text-align: center;
        font-size: .78rem;
        padding: .5rem .5rem
      }

      .hero-btns {
        flex-direction: column
      }

      .btn-g,
      .btn-o {
        text-align: center;
        justify-content: center
      }

      .cta-btns {
        flex-direction: column;
        align-items: center
      }

      .prob-stats {
        grid-template-columns: 1fr 1fr
      }
    }