/* ─── TOKENS ─── */

    :root {
      --white: #ffffff;
      --black: #000000;
      --dark: #0f0f0f;
      --dark2: #181818;
      --green: #a8d832;
      --green-dark: #8fbd1a;
      --green-glow: rgba(168,216,50,.25);
      --light-bg: #f0f4ea;
      --grey: #f5f5f2;
      --muted: #080808;
      --text: #080808;
      --border: rgba(0,0,0,0.08);
      --border-dark: rgba(255,255,255,0.07);
      --radius: 18px;
      --radius-sm: 12px;
      --font-sans: "Suisse Intl",sans-serif; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Book.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SuisseIntl';
  src: url('../fonts/SuisseIntl-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ─────────────────────────────────────
   Utility classes
───────────────────────────────────── */
.font-book     { font-family: var(--font-sans); font-weight: 300; }
.font-regular  { font-family: var(--font-sans); font-weight: 400; }
.font-medium   { font-family: var(--font-sans); font-weight: 500; }
.font-semibold { font-family: var(--font-sans); font-weight: 600; }
.font-bold     { font-family: var(--font-sans); font-weight: 700; }

body {
  font-family: "Suisse Intl",sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

    h1, h2, h3, h4 { font-family: 'SuisseIntl', serif; letter-spacing: -.01em; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; }

 

    /* ─── NAVBAR ─── */
    .navbar {
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      /* border-bottom: 1px solid var(--border); */
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: box-shadow .3s, background .3s;
    }
    .navbar.scrolled {
      box-shadow: 0 4px 32px rgba(0,0,0,.07);
      background: rgba(255,255,255,.98);
    }
    .navbar-brand { 
      font-size: 1.3rem;
      color: var(--text) !important;
      display: flex; align-items: center; gap: 7px;
    }
    .brand-dot {
      width: 8px; height: 8px;
      background: var(--green);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 0 var(--green-glow);
      animation: dotPulse 2.5s infinite;
    }
    @keyframes dotPulse {
      0%   { box-shadow: 0 0 0 0 rgba(168,216,50,.5); }
      70%  { box-shadow: 0 0 0 8px rgba(168,216,50,0); }
      100% { box-shadow: 0 0 0 0 rgba(168,216,50,0); }
    }
    .nav-link {
      font-size: 18px;
      font-weight: 400;
      color: var(--text) ;
      padding: 6px 14px ;
      transition: color .2s;
      position: relative;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--green);
      transition: left .2s, right .2s;
      border-radius: 2px;
    }
    .nav-link:hover::after { left: 14px; right: 14px; }
    .nav-link:hover { color: var(--green-dark) !important; }
.mt-80{ margin-top: 80px !important; }
    /* ─── BUTTONS ─── */
    .svc-cta-actions .btn-green { background: #2a2a2a;}
    .btn-green {
      background: var(--black);
      color: var(--white);
      font-weight: 500;
      font-size: 16px;
      padding: 8px 8px 8px 24px;
      border-radius: 100px;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: background .2s, transform .22s, box-shadow .22s;
      cursor: pointer;
      white-space: nowrap;
    }
.btn-green .ic-play{background: var(--green);width: 36px;height: 36px;padding: 5px;border-radius: 30px;text-align: center;}
    .btn-green:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(168,216,50,.38);
    }
    .btn-green:active { transform: translateY(0); }
    .btn-outline {
      background: transparent; color: var(--text);
      font-weight: 600; font-size: .875rem;
      padding: 14px 28px;
      border-radius: 100px; border: 1.5px solid rgba(0,0,0,.18);
      display: inline-flex; align-items: center; gap: 9px;
      transition: border-color .2s, transform .22s, box-shadow .22s;
      cursor: pointer;
    }
    .btn-outline:hover {
      border-color: var(--text);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,.08);
    }
    .btn-outline-white {
      background: transparent; color: var(--white);
      font-weight: 600; font-size: .875rem;
      padding: 14px 28px;
      border-radius: 100px; border: 1.5px solid rgba(255,255,255,.2);
      display: inline-flex; align-items: center; gap: 9px;
      transition: border-color .2s, background .2s, transform .22s;
      cursor: pointer;
    }
    .btn-outline-white:hover {
      border-color: rgba(255,255,255,.6);
      background: rgba(255,255,255,.06);
      transform: translateY(-2px);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 100px 20px 80px;
      position: relative; overflow: hidden;
      background: var(--white);
    }
    /* Grid background */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--light-bg); color: #4a6a0a;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
      opacity: 0; animation: fadeUp .6s .1s ease forwards;
    }
    .hero-eyebrow-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
    .hero-h1 {
      font-size: clamp(2.6rem, 6.5vw, 5.2rem);
      line-height: 1.05; letter-spacing: -.03em;
      color: var(--text); max-width: 860px; margin: 0 auto 22px;
      opacity: 0; animation: fadeUp .75s .2s ease forwards;
    }
    .hero-h1 em {font-style: normal;/* color: var(--green-dark); */}
    .hero-sub {
      font-size: 22px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 64px;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp .75s .35s ease forwards;
    }
    .hero-ctas {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 64px;
      opacity: 0; animation: fadeUp .75s .45s ease forwards;
    }
    /* Hero video frame */
    .hero-video-frame {
      width: 100%;
      max-width: 1120px;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.14), 0 0 0 1px rgba(0,0,0,.06);
      position: relative;
      cursor: pointer;
      opacity: 0;
      animation: fadeUp .85s .6s ease forwards;
      margin: 0px auto;
    }
    .hero-video-inner {
      aspect-ratio: 16/8;
      background: linear-gradient(135deg, #12121e 0%, #1a1a30 35%, #0f2040 65%, #1a0f20 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .hero-video-inner::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(168,216,50,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(233,69,96,.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(50,100,200,.08) 0%, transparent 60%);
      animation: bgShift 8s ease-in-out infinite alternate;
    }
    @keyframes bgShift {
      from { opacity: .7; }
      to   { opacity: 1; }
    }
    .vid-orb {
      position: absolute; border-radius: 50%;
    }
    .vid-orb-1 {
      width: 100%;
      /* height: clamp(120px, 22%, 200px); */
      /* background: radial-gradient(circle at 35% 35%, #3a3a6a, #1a1a3a); */
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      /* animation: orbFloat 7s ease-in-out infinite;*/
    }
    .vid-orb-1 video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    } 
    .vid-orb-2 {
      width: clamp(100px, 18%, 165px); height: clamp(100px, 18%, 165px);
      background: radial-gradient(circle at 35% 35%, #6a2040, #2a0f1a);
      right: 9%; top: 15%;
      animation: orbFloat 9s ease-in-out infinite reverse;
    }
    .vid-orb-3 {
      width: clamp(60px, 10%, 90px); height: clamp(60px, 10%, 90px);
      background: radial-gradient(circle, rgba(168,216,50,.3), transparent);
      right: 25%; bottom: 15%;
      animation: orbFloat 5s ease-in-out infinite;
    }
    @keyframes orbFloat {
      0%, 100% { transform: translateY(-50%) translateX(0); }
      50%       { transform: translateY(-50%) translateX(14px); }
    }
    .vid-orb-2 { animation: orbFloat2 9s ease-in-out infinite reverse; }
    .vid-orb-3 { animation: orbFloat3 5s ease-in-out infinite; }
    @keyframes orbFloat2 {
      0%, 100% { transform: translateX(0); }
      50%       { transform: translateX(-10px) translateY(8px); }
    }
    @keyframes orbFloat3 {
      0%, 100% { transform: translateX(0) scale(1); }
      50%       { transform: translateX(8px) scale(1.1); }
    }
    .vid-lines {
      position: absolute; left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      display: flex; gap: 5px;
    }
    .vid-line {
      width: 3px; border-radius: 2px;
      background: linear-gradient(to bottom, transparent, rgba(168,216,50,.6), transparent);
      animation: linePulse 1.8s ease-in-out infinite;
    }
    .vid-line:nth-child(1) { height: 40px; animation-delay: 0s; }
    .vid-line:nth-child(2) { height: 60px; animation-delay: .15s; }
    .vid-line:nth-child(3) { height: 80px; animation-delay: .3s; }
    .vid-line:nth-child(4) { height: 55px; animation-delay: .45s; }
    .vid-line:nth-child(5) { height: 70px; animation-delay: .6s; }
    .vid-line:nth-child(6) { height: 45px; animation-delay: .75s; }
    .vid-line:nth-child(7) { height: 65px; animation-delay: .9s; }
    @keyframes linePulse {
      0%, 100% { opacity: .3; transform: scaleY(.8); }
      50%       { opacity: 1;  transform: scaleY(1); }
    }
    .hero-play-btn {
      position: absolute; z-index: 3;
      width: 78px; height: 78px;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(16px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.5rem;
      transition: transform .3s, background .3s, box-shadow .3s;
      box-shadow: 0 0 0 1px rgba(255,255,255,.15);
    }
    .hero-video-frame:hover .hero-play-btn {
      transform: scale(1.1);
      background: rgba(168,216,50,.3);
      box-shadow: 0 0 40px rgba(168,216,50,.3), 0 0 0 1px rgba(168,216,50,.4);
    }
    .vid-label {
      position: absolute; bottom: 20px; left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
      color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 500;
      padding: 6px 14px; border-radius: 100px;
      border: 1px solid rgba(255,255,255,.1);
      white-space: nowrap; z-index: 3;
    }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      background: var(--white);
      padding: 24px 0;
      /* border-top: 1px solid var(--border); */
      /* border-bottom: 1px solid var(--border); */
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
    }
    .trust-item i { color: var(--green-dark); font-size: .85rem; }

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--grey);
      padding: 56px 0;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: var(--text); line-height: 1;
      margin-bottom: 6px;
    }
    .stat-num span { color: var(--green-dark); }
    .stat-label { font-size: .8rem; color: var(--muted); font-weight: 500; }
    .stat-divider {
      width: 1px; background: var(--border);
      height: 60px; align-self: center;
    }

    /* ─── SECTION BASE ─── */
    .section { padding: 100px 0; }
    .section-sm { padding: 70px 0; }
    .section-label {
      font-size: .72rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--green-dark); margin-bottom: 12px;
    }
    .section-label-light { color: rgba(255,255,255,.45); }

    /* ─── PAIN / HAVE YOU FELT ─── */
    .pain-visual {
      width: 100%; max-width: 360px; margin: 0 auto;
      aspect-ratio: 1;
      border-radius: 24px;
      background: linear-gradient(135deg, #f0f4ea, #e8f0d8);
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem;
      box-shadow: 0 20px 60px rgba(0,0,0,.07);
      position: relative; overflow: hidden;
    }
    .pain-visual::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(168,216,50,.2), transparent 60%);
    }
    .pain-h { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 22px; }
    .pain-list{
      list-style:none;
      padding:0;
      margin:-8px 0 0;
    }
    .pain-list li{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:14px 0;
      font-family:"Suisse Intl",sans-serif;
      font-size:19px;
      font-weight:400;
      color:#4b4b4b;
      line-height:1.6;
      border-bottom: 1px solid var(--border);
    }
    .pain-list li:last-child{ border-bottom:none; }
    .pain-list li i{
      color:var(--green);
      font-size:13px;
      margin-top:6px;
      flex-shrink:0;
    }
    .pain-list li span{ flex:1; }

    /* ─── WHY LOSING ─── */
    .why-wrap {
      background: var(--dark);
      border-radius: 26px; overflow: hidden;
      margin: 0;
    }
    .why-inner { padding: 72px 40px; }
    .why-h { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); max-width: 280px; margin-bottom: 16px; }
    .why-p {color: #fff;font-size: 18px;line-height: 1.7;max-width: 300px;}
    .why-card {
      background: #fff;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius);
      padding: 28px 24px;
      height: 100%;
      transition: background .3s, transform .3s, border-color .3s;
      transform-style: preserve-3d;
      perspective: 600px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-content: center;
      align-items: center;
    }
    .why-card:hover {
      background: rgba(255,255,255,.07);
      color: #fff;
      border-color: rgba(168,216,50,.25);
    }

.why-card {}
    .why-icon {
      width: 64px;
      height: 64px;
      background: rgba(168,216,50,.1);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      font-size: 1rem;
      margin-bottom: 32px;
    }
    .why-card h5 {
        font-size: 22px;
        font-weight: 700;
        /* color: var(--black); */
        margin-bottom: 8px;
    }
    .why-card p {/* color: var(--black); */font-size: 18px;line-height: 1.65;}

    /* ─── BUILD SECTION ─── */
    .build-img-wrap {
      /* border-radius: 32px; */
      /* overflow: hidden; */
      /* background: linear-gradient(135deg, #232323, #3a3a3a); */
      /* aspect-ratio: 4/3; */
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: center; */
      /* font-size: 4rem; */
      /* color: rgba(255,255,255,.1); */
      /* box-shadow: 0 20px 60px rgba(0,0,0,.1); */
      /* position: relative; */ text-align: right;
    }
    .build-img-wrap video{
    width: 100%;
    max-width: 480px;
    border-radius: 40px;
}
.build-img-wrap img{ width:100%;}
    .build-img-wrap::after {
      content: 'TEAM IN ACTION';
      position: absolute; 
      font-size: 1.2rem; color: rgba(255,255,255,.06);
      letter-spacing: .4em;
    }
    .step-card {
      padding: 28px 24px;
      border-radius: 24px;
      transition: background .3s, transform .3s;
      height: 100%;
      background: #EDF8E2;
      margin: 0 24px;
      display: flex;
      gap: 16px;
      flex-direction: row;
      align-content: center;
    }
    .step-card:hover { background: var(--grey); transform: translateY(-4px); }
    .step-num {
      display: inline-block;
      width: 64px;
      height: 64px;
      background: hsl(77deg 77% 43% / 26%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      font-family: "New Amsterdam", sans-serif;
      color: var(--black);
      margin-bottom: 0;
    }
    .step-card h5 {font-size: 1.2rem;margin-bottom: 8px;margin-top: 4px;}
    .step-card p {font-size: 16px;color: var(--muted);line-height: 1.65;margin: 0;}
    .revenue-bar {
      /* background: var(--dark2); */
      padding: 32px 0;
      margin-top: 72px;
      text-align: center;
    }
    .revenue-bar p {color: #000;font-size: 18px;margin-bottom: 6px;}
    .revenue-bar strong {
      font-size: clamp(1.5rem, 3vw, 2.4rem);
      color: var(--black);
      letter-spacing: .08em;
      text-transform: uppercase;
      position: relative;
    }
    .revenue-bar strong em {/* color: var(--green); */font-style: normal;}
.revenue-bar strong i{
    position: absolute;
    top: -8px;
    z-index: -1;
    width: 110%;
    left: -12px;
}
.revenue-bar strong i img{}
/* ─── HOW WE WORK ─── */
    .howwork-bg {background: #DAE6E4;/* border-radius: 48px; */border-top-left-radius: 64px;border-top-right-radius: 64px;position: relative;}
    .howwork-bg:before{
    background: #fff;
    position: absolute;
    content: '';
    height: 100px;
    top: 0;
    z-index: -1;
    width: 100%;
    }
    .svc-bento2-outer:before{
    background: #DAE6E4;
    position: absolute;
    content: '';
    height: 100px;
    top: 0;
    z-index: -1;
    width: 100%;
    }
    .hw-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      height: 100%;
      transition: transform .3s, box-shadow .3s;
      box-shadow: 0 2px 16px rgba(0,0,0,.05);
    }
    .hw-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.1); background:#000;}
.hw-card:hover h5, .hw-card:hover p{color:#fff;}
.hw-card:hover .hw-icon img+img{
    filter: invert(30);
}
    .hw-card-dark { background: var(--dark); }
    .hw-card-body {padding: 32px 32px;}
    .hw-icon {
      width: 100%;
      height: 48px;
      border-radius: var(--radius-sm);
      /* background: var(--light-bg); */
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* color: var(--green-dark); */
      font-size: 1.1rem;
      margin-bottom: 32px;
    }
.hw-img{
    text-align: center;
    margin-bottom: 40px;
}
.hw-img img{
    margin: 0px auto;
}
    .hw-card-dark .hw-icon { background: rgba(168,216,50,.1); color: var(--green); }
    .hw-card h5 {font-size: 1.25rem;margin-bottom: 10px;font-weight: 600;}
    .hw-card p {font-size: 16px;color: var(--muted);line-height: 1.65;}
    .hw-card-dark h5 { color: var(--white); }
    .hw-card-dark p { color: rgba(255,255,255,.45); }
    /* Waveform */
    .hw-wave { padding: 22px 28px 0; display: flex; align-items: center; gap: 3px; height: 56px; }
    .hw-wave span {
      display: block; width: 4px; border-radius: 3px;
      background: var(--green);
      animation: wv 1.4s ease-in-out infinite;
    }
    .hw-wave span:nth-child(1)  { height: 14px; animation-delay: 0s; }
    .hw-wave span:nth-child(2)  { height: 28px; animation-delay: .1s; }
    .hw-wave span:nth-child(3)  { height: 20px; animation-delay: .2s; }
    .hw-wave span:nth-child(4)  { height: 36px; animation-delay: .3s; }
    .hw-wave span:nth-child(5)  { height: 18px; animation-delay: .4s; }
    .hw-wave span:nth-child(6)  { height: 32px; animation-delay: .5s; }
    .hw-wave span:nth-child(7)  { height: 24px; animation-delay: .6s; }
    .hw-wave span:nth-child(8)  { height: 22px; animation-delay: .7s; }
    .hw-wave span:nth-child(9)  { height: 38px; animation-delay: .8s; }
    .hw-wave span:nth-child(10) { height: 16px; animation-delay: .9s; }
    .hw-wave span:nth-child(11) { height: 28px; animation-delay: 1s; }
    .hw-wave span:nth-child(12) { height: 12px; animation-delay: 1.1s; }
    @keyframes wv {
      0%, 100% { transform: scaleY(1); opacity: .8; }
      50%       { transform: scaleY(.35); opacity: .5; }
    }
    /* Identify visual */
    .hw-identify-vis {
      padding: 20px 28px 0;
      display: flex; justify-content: center;
    }
    .hw-id-circle {
      width: 80px; height: 80px; border-radius: 50%;
      border: 2px solid var(--light-bg);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .hw-id-circle::after {
      content: '';
      position: absolute; inset: -6px;
      border-radius: 50%;
      border: 1.5px dashed rgba(143,189,26,.3);
      animation: spin 12s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .hw-id-dots {
      position: absolute;
      width: 100%; height: 100%;
      top: 0; left: 0;
    }
    .hw-id-dot {
      position: absolute;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green);
    }
    .hw-id-dot:nth-child(1) { top: -4px; left: 50%; transform: translateX(-50%); }
    .hw-id-dot:nth-child(2) { bottom: -4px; right: 20%; }
    .hw-id-dot:nth-child(3) { left: -4px; top: 50%; transform: translateY(-50%); }
    /* Execute chart visual */
    .hw-chart-vis {
      padding: 16px 28px 0;
      display: flex; align-items: flex-end; gap: 6px; height: 64px;
    }
    .hw-bar {
      flex: 1; border-radius: 4px 4px 0 0;
      background: var(--light-bg);
      transition: height .4s ease;
    }
    .hw-bar.active { background: var(--green); }

    /* ─── CAROUSEL BUTTONS ─── */
    .carousel-btn {
      width: 46px; height: 46px;
      background: var(--dark); border-radius: 50%; border: none;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: .85rem; flex-shrink: 0;
      transition: background .2s, transform .2s; cursor: pointer;
    }
    .carousel-btn:hover { background: var(--green-dark); transform: scale(1.05); }
    .carousel-nav { display: flex; gap: 10px; align-items: center; }

    /* ─── FAQ ─── */
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: rgba(143,189,26,.35); }
    .faq-q {
      padding: 20px 24px; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      font-weight: 600; font-size: 16px; gap: 16px;
      user-select: none;
      transition: background .2s;
    }
    .faq-item.open .faq-q { background: var(--grey); }
    .faq-icon {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--grey); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: .72rem;
      transition: transform .3s, background .3s, color .3s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--green); color: var(--black);
    }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
      padding: 0 24px;
    }
    .faq-a-inner { padding: 20px 0 20px; font-size: 16px; color: var(--muted); line-height: 1.7; }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 24px; }

    /* ─── CTA FOOTER BAND ─── */
    .cta-band {
      background: #000000;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
.cta-band video{
    position: absolute;
    top: -15%;
    width: 100%;
}
.cta-band .container{
    max-width: 620px;
    text-align: center;
}
.cta-band.branding-cta .container{
    max-width: 960px;}
   
    .cta-eyebrow {font-size: .72rem;font-weight: 700;letter-spacing: .12em;text-transform: uppercase;color: rgba(255,255,255,.35);margin-bottom: 16px;text-align: center;}
    .cta-h {
      font-size: clamp(2.6rem, 7vw, 5.2rem);
      color: var(--white);
      line-height: 1.04;
      margin-bottom: 22px;
      max-width: 100%;
      text-align: center;
    }
    .cta-p {color: rgba(255,255,255,0.8);font-size: 20px;line-height: 1.7;max-width: 520px;/* margin-bottom: 40px; */text-align: center;margin: 0px auto 40px auto;}
    .cta-bg-text {
      position: absolute;
      right: -2%;
      top: 0;
      /* font-size: clamp(7rem, 20vw, 18rem); */
      /* color: rgba(255,255,255,.025); */
      /* line-height: 1; */
      /* pointer-events: none; */
      /* user-select: none; */
      /* letter-spacing: -.05em; */
    }
    .cta-white{
    margin-bottom: 40px;
    background: #93C319;
    margin: 0px auto;
}

    /* ─── FOOTER ─── */
    .footer {
      background: var(--dark);
      border-top: 1px solid var(--border-dark);
      padding: 40px 0;
    }
    .footer-brand { font-size: 1.25rem;
      color: var(--white); display: flex; align-items: center; gap: 7px;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,.38); font-size: .82rem; transition: color .2s; }
    .footer-links a:hover { color: var(--white); }
    .social-links { display: flex; gap: 14px; align-items: center; }
    .social-link {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5); font-size: .85rem;
      transition: background .2s, color .2s, transform .2s;
    }
    .social-link:hover { background: var(--green); color: var(--black); transform: translateY(-2px); }
    .footer-copy {color: rgba(255,255,255,.2);font-size: .75rem;margin-top: 32px;/* padding-top: 24px; *//* border-top: 1px solid var(--border-dark); *//* text-align: center; */}

    /* ─── VIDEO MODAL ─── */
    #videoModal .modal-dialog { max-width: 880px; }
    #videoModal .modal-content { background: #000; border-radius: 18px; overflow: hidden; border: none; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
    #videoModal .modal-header { border: none; padding: 12px 16px; background: transparent; position: absolute; right: 0; top: 0; z-index: 10; }
    #videoModal .btn-close { filter: invert(1); opacity: .7; }
    #videoModalBody { width: 100%; aspect-ratio: 16/9; position: relative; }
    .vid-modal-inner {
      width: 100%; height: 100%;
      background: #111;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 14px;
    }
    .vid-modal-play {
      width: 80px; height: 80px;
      background: rgba(168,216,50,.15); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .vid-modal-play i { color: var(--green); font-size: 1.6rem; margin-left: 4px; }

    /* ─── ENQUIRY MODAL ─── */
    #enquiryModal .modal-dialog { max-width: 600px; }
    #enquiryModal .modal-content { border-radius: 22px; border: none; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.2); }
    #enquiryModal .modal-header { background: var(--dark); border: none; padding: 36px 40px 24px; }
    #enquiryModal .modal-body { padding: 28px 40px 40px; }
    .enq-h { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: 10px; }
    .enq-sub { color: rgba(255,255,255,.42); font-size: .84rem; line-height: 1.65; }
    .field-label { font-size: .78rem; font-weight: 700; color: var(--text); margin-bottom: 6px; display: block; letter-spacing: .02em; }
    .field-wrap { margin-bottom: 14px; }
    .field-wrap .field-focus-line{ display: none;}
    .field {
      width: 100%; border: 1.5px solid rgba(0,0,0,.1);
      border-radius: 10px; padding: 12px 16px;
      font-size: .875rem; 
      transition: border-color .2s, box-shadow .2s;
      background: #fafafa; color: var(--text);
      outline: none; 
    }
    .field:focus {
      border-color: var(--green-dark);
      box-shadow: 0 0 0 3px rgba(143,189,26,.12);
      background: white;
    }
    select.field { cursor: pointer; }
    .btn-submit {
      width: 100%; padding: 16px;
      background: var(--green); color: var(--black);
      font-weight: 700; font-size: .93rem;
      border: none; border-radius: 100px;
      cursor: pointer; margin-top: 6px;
      transition: background .2s, transform .2s, box-shadow .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(168,216,50,.35); }
    .nda-note {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: .78rem; color: var(--muted); line-height: 1.55; margin-top: 14px;
    }
    .nda-note i { color: var(--green-dark); margin-top: 2px; flex-shrink: 0; }
    /* Step indicator in modal header */
    .enq-progress {
      display: flex; gap: 5px; margin-bottom: 20px;
    }
    .enq-prog-dot {
      height: 3px; flex: 1; background: rgba(255,255,255,.15);
      border-radius: 2px; transition: background .3s;
    }
    .enq-prog-dot.active { background: var(--green); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes rippleAnim {
      to { transform: scale(1); opacity: 0; }
    }
    @keyframes sparkFloat {
      0%   { transform: translateY(0) scale(1); opacity: 1; }
      100% { transform: translateY(-28px) scale(0); opacity: 0; }
    }
    .reveal {
      opacity: 0; transform: translateY(32px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }
    .reveal-left {
      opacity: 0; transform: translateX(-32px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal-left h2{ font-size: 56px;}
    .reveal-left p{font-size: 18px;line-height: 1.5;max-width: 400px;}
    .reveal-left.in { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0; transform: translateX(32px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal-right.in { opacity: 1; transform: translateX(0); }
    .reveal.in .fade-up{ opacity: 1;}

    /* ─── TOAST ─── */
    .toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
    #successToast {
      background: var(--dark); color: white;
      border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 16px 40px rgba(0,0,0,.3);
      font-size: .875rem;
    }

    #testimonials{
    border-top-left-radius: 64px;
    border-top-right-radius: 64px;
    background: #fff;
    }
    /* ─── TESTIMONIAL SINGLE-CARD CAROUSEL ─── */
    .testimonials-h {font-size: clamp(1.8rem, 4vw, 4rem);margin-bottom: 52px;text-align: center;}

    /* Outer bleed wrapper */
    .testi-outer {
      overflow: hidden;
      padding: 12px 0 16px;
      cursor: grab;
      user-select: none;
    }
    .testi-outer.dragging { cursor: grabbing; }

    /* Track — flex row of all cards */
    #testiTrack {
      display: flex;
      gap: 20px;
      transition: transform .48s cubic-bezier(.4,0,.2,1);
      will-change: transform;
      padding: 0 calc((100vw - min(100vw, 1320px)) / 2 + 0px);
    }

    /* Individual slide */
    .testi-slide {
      flex-shrink: 0;
      width: 260px;
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 3.5/4;
      position: relative;
      cursor: pointer;
      transition: transform .35s, box-shadow .35s, opacity .4s;
      /* opacity: .55; */
      /* transform: scale(.96); */
    }
    @media (min-width: 576px)  { .testi-slide { width: 280px; } }
    @media (min-width: 992px)  { .testi-slide {width: 350px;} }

    /* Active (center) card */
    .testi-slide.active {
      opacity: 1;
      transform: scale(1);
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
    }
    /* Adjacent cards slightly visible */
    .testi-slide.near { opacity: .75; transform: scale(.97); }

    .testi-slide .person-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      /* font-size: 4rem; */
    }
    .testi-slide .person-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
    }
    .testi-slide .person-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%) scale(.85);
      width: 56px; height: 56px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1rem;
      transition: transform .3s, background .3s, box-shadow .3s;
      box-shadow: 0 0 0 1px rgba(255,255,255,.15);
    }
    .testi-slide:hover .person-play,
    .testi-slide.active .person-play {
      transform: translate(-50%,-50%) scale(1);
      background: rgba(168,216,50,.35);
      box-shadow: 0 0 24px rgba(168,216,50,.3), 0 0 0 1px rgba(168,216,50,.4);
    }
    .testi-slide .person-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px;
    }
    .testi-slide .person-info strong {display: block;color: white;font-size: 16px;}
    .testi-slide .person-info span   {color: rgba(255,255,255,.6);font-size: 14px;}

    /* Dots */
    .testi-dot {
      height: 4px; border-radius: 2px; flex: 1; max-width: 32px;
      background: var(--border);
      transition: background .3s, max-width .3s, flex .3s;
      cursor: pointer;
    }
    .testi-dot.active { background: var(--dark); max-width: 48px; flex: 1.5; }

    /* ─── TRUST / PROOF SECTION ─── */
    .trust-proof-section {
      background: var(--white);
      padding-bottom: 0;
      overflow: hidden;
    }

    /* Marquee ticker */
    .trust-ticker-wrap {
      background: var(--green);
      padding: 14px 0;
      overflow: hidden;
    }
    .trust-ticker { overflow: hidden; width: 100%; }
    .trust-ticker-inner {
      display: flex; gap: 32px; align-items: center;
      white-space: nowrap;
      animation: tickerScroll 28s linear infinite;
      width: max-content;
    }
    .trust-ticker-inner span {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .04em;
      color: rgb(0 0 0);
      flex-shrink: 0;
    }
    .ticker-dot {color: var(--black) !important;font-size: .55rem !important;}
    @keyframes tickerScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .trust-ticker-wrap:hover .trust-ticker-inner { animation-play-state: paused; }
    .decade-section{ padding: 120px 0;}
    .decade-section h2{font-size:clamp(2rem,4.5vw,3.4rem);line-height:1.1;margin-bottom:20px;}
    .decade-section h2 em{/* color:var(--green); */font-style: normal;}
    .decade-section p{color: var(--black);font-size: 18px;line-height:1.75;max-width:400px;}

    /* Badges */
    .trust-badges { display: flex; gap: 10px; flex-wrap: wrap; }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--grey);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      transition: background .2s, border-color .2s, transform .2s;
    }
    .trust-badge:hover { background: var(--light-bg); border-color: var(--green); transform: translateY(-2px); }
    .trust-badge i {color: var(--green-dark);font-size: 14px;}

    /* Trust grid */
    .trust-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .trust-card {
      border-radius: 18px; padding: 28px 24px;
      position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }
    .trust-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
    .trust-card-dark  { background: var(--dark); }
    .trust-card-green { background: var(--green); }
    .trust-card-light { background: var(--grey); border: 1px solid var(--border); }
    .trust-card-num {
      font-size: clamp(2rem,4vw,3rem);
      line-height: 1;
      margin-bottom: 14px;
      font-weight: 600;
      /* font-family: "New Amsterdam", sans-serif; */
    }
    .trust-card-dark  .trust-card-num  { color: var(--white); }
    .trust-card-green .trust-card-num  { color: var(--black); }
    .trust-card-light .trust-card-num  { color: var(--text); }
    .trust-card-label {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .trust-card-dark  .trust-card-label { color: rgba(255,255,255,.8); }
    .trust-card-green .trust-card-label { color: rgba(0,0,0,.75); }
    .trust-card-light .trust-card-label { color: var(--text); }
    .trust-card-sub   {font-size: 14px;line-height: 1.5;}
    .trust-card-dark  .trust-card-sub   { color: rgba(255,255,255,.35); }
    .trust-card-green .trust-card-sub   { color: rgba(0,0,0,.5); }
    .trust-card-light .trust-card-sub   { color: var(--muted); }
    .trust-card-icon {
      position: absolute; right: 20px; top: 20px;
      font-size: 1.4rem; opacity: .12;
    }
    .trust-card-dark  .trust-card-icon { color: white; }
    .trust-card-green .trust-card-icon { color: black; }
    .trust-card-light .trust-card-icon { color: var(--green-dark); opacity: .18; }

    /* Trusted by logos */
    .trusted-by-row {
      border-top: 1px solid var(--border);
      padding: 40px 0 60px;
      text-align: center;
    }
    .trusted-by-label {
      font-size: .75rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
    }
    .trusted-logos {
      display: flex;
      gap: 64px;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
    .trusted-logo {
      font-size: 1.6rem;
      color: rgba(0,0,0,.18);
      letter-spacing: -.01em;
      transition: color .25s, transform .25s;
      cursor: default;
    }
    .trusted-logo span { font-style: italic; }
    .trusted-logo:hover { color: var(--text); transform: scale(1.05); }

    /* ─── FOOTER MINIMAL ─── */
    .footer {
      background: #000000;
      padding: 48px 0 0;
    }
    .footer-brand {  font-size: 1.3rem;
      color: var(--white); display: flex; align-items: center; gap: 7px;
    }
    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      padding-bottom: 36px;
      align-content: center;
    }
    .footer-divider {
      height: 1px;
      background: var(--border-dark);
    }
    .footer-bottom {
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap;
      gap: 16px; padding: 24px 0;
    }
    .footer-copy {color: rgba(255,255,255,.8);font-size: 14px;margin: 0;}
    .footer-email-link {
      color: rgba(255,255,255,.45); font-size: .82rem;
      display: flex; align-items: center; gap: 7px;
      transition: color .2s;
    }
    .footer-email-link i { color: var(--green); font-size: .78rem; }
    .footer-email-link:hover { color: var(--white); }
    .footer-socials { display: flex; gap: 10px; align-items: center; }
    .footer-social {
      width: 34px; height: 34px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.4); font-size: .82rem;
      transition: background .2s, color .2s, transform .2s;
    }
    .footer-social:hover {
      background: var(--green); color: var(--black);
      transform: translateY(-3px);
    }
    .footer-contact-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 28px;
      padding: 0;
    }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 9px;
      color: rgba(255,255,255,.8);
      font-size: 14px;
    }
    .footer-contact-item i { color: var(--green); font-size: .82rem; flex-shrink: 0; }
    .footer-contact-item a {
      color: rgba(255,255,255,.8);
      transition: color .2s;
    }
    .footer-contact-item a:hover { color: var(--white); }
    .footer-contact-item span { line-height: 1.5; }
 
    @media (max-width: 576px) {
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
      .footer-contact-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* ─── MODAL ANIMATIONS & POLISH ─── */
    .modal.fade .modal-dialog {
      transform: translateY(32px) scale(.97);
      transition: transform .35s cubic-bezier(.34,1.3,.64,1), opacity .35s ease;
    }
    .modal.show .modal-dialog {
      transform: translateY(0) scale(1);
    }
    /* Input focus ripple */
    .field-wrap { position: relative; }
    .field-focus-line {
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 2px; background: var(--green);
      border-radius: 0 0 10px 10px;
      transition: left .25s ease, right .25s ease;
      pointer-events: none;
    }
    .field:focus ~ .field-focus-line { left: 0; right: 0; }
    /* Field shake on error */
    @keyframes fieldShake {
      0%, 100% { transform: translateX(0); }
      20%       { transform: translateX(-6px); }
      40%       { transform: translateX(6px); }
      60%       { transform: translateX(-4px); }
      80%       { transform: translateX(4px); }
    }
    .field.error {
      border-color: #e05252 !important;
      animation: fieldShake .4s ease;
    }
    /* Form success state */
    .form-success-overlay {
      position: absolute; inset: 0;
      background: var(--white);
      border-radius: inherit;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 14px;
      opacity: 0; pointer-events: none;
      transition: opacity .4s ease;
      z-index: 10; padding: 40px;
      text-align: center;
    }
    .form-success-overlay.show { opacity: 1; pointer-events: all; }
    .success-check {
      width: 72px; height: 72px;
      background: var(--light-bg);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: var(--green-dark);
      animation: popIn .5s cubic-bezier(.34,1.56,.64,1) forwards;
    }
    @keyframes popIn {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 991px) {
      .why-inner { padding: 48px 24px; }
      .why-wrap { margin: 0 8px; }
      #enquiryModal .modal-header { padding: 28px 28px 20px; }
      #enquiryModal .modal-body { padding: 22px 28px 32px; }
      .cta-bg-text { display: none; }
    }
    @media (max-width: 767px) {
      .hero { padding: 80px 16px 60px; min-height: auto;}
      .section { padding: 70px 0; }
      .stat-divider { display: none; }
      .step-card { border-bottom: 1px solid var(--border); border-radius: 16px; padding: 24px 16px;  margin-bottom: 12px;margin: 0;}
      .step-card:last-child { border-bottom: none; }
      .footer-links { gap: 14px; }
      #programs .row{ gap: 12px; }
      .howwork-bg{border-top-left-radius: 40px;
    border-top-right-radius: 40px;}
    }
    @media (max-width: 480px) {
      .hero-h1 { font-size: 2.2rem; }
      .hero-ctas { flex-direction: column; align-items: center; }
      #enquiryModal .modal-header { padding: 22px 20px 16px; }
      #enquiryModal .modal-body { padding: 18px 20px 28px; }
    }



/* ── HERO ── */
.ab-hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ab-hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  /* color: var(--green-dark); */
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.ab-hero-eyebrow::before {content:'';width:24px;height:1px;background: var(--black);}

.ab-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 60px;
}
@media(max-width:991px){ .ab-hero-grid{ grid-template-columns:1fr; gap:32px; } }

.ab-hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}
.ab-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--green-dark);
}
.ab-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding-bottom: 8px;
}
.ab-hero-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.78;
  max-width: 420px;
}
.ab-hero-stat-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.ab-hero-stat strong {
  display: block;
  font-size: 2rem;
  /* font-weight: 700; */
  letter-spacing: 2px;
  color: var(--black);
  line-height: 1;
  font-family: "New Amsterdam", sans-serif;
}
.ab-hero-stat strong em {
  font-style: normal;
  color: var(--black);
}
.ab-hero-stat span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 4px;
  display: block;
}

/* ── WHO WE ARE — split image section ── */
.ab-who {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.ab-who-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: center;
}
@media(max-width:991px){ .ab-who-grid{ grid-template-columns:1fr; gap:48px; } }

.ab-who-img {
  position: relative;
  /* border-radius: 24px; */
  /* overflow: hidden; */
  /* aspect-ratio: 4/5; */
}
.ab-who-img video{width: 100%;border-radius: 24px;}
.ab-who-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ab-who-img:hover img { transform: scale(1.04); }
.ab-who-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--black);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
}
.ab-who-img-badge i {
  font-size: 1.2rem;
  color: var(--green);
}
.ab-who-img-badge p {
  margin: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}
.ab-who-img-badge strong {
  color: var(--white);
  display: block;
  font-size: .92rem;
}

.ab-section-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.ab-section-label::before { content:''; width:18px; height:1px; background:rgba(0,0,0,.2); }

.ab-who-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.ab-who-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.82;
  margin-bottom: 18px;
}
.ab-who-content p:last-of-type { margin-bottom: 0; }

.ab-objective {
    margin-top: 40px;
    padding: 32px 36px;
    background: #d4dcd9;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}
.ab-objective::before {
  content: '"';
  position: absolute;
  right: 20px; top: -10px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.ab-objective-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.ab-objective p {
  font-size: 1.15rem;
  color: var(--black);
  line-height: 1.55;
  font-style: italic; 
  margin: 0;
}

/* ── NOT AN AGENCY ── */
.ab-identity {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.ab-identity-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: center;
}
@media(max-width:991px){ .ab-identity-header{ grid-template-columns:1fr; gap:24px; } }
.ab-identity-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.04em;
  line-height: 1.02;
  font-weight: 700;
}
.ab-identity-header h2 em {font-style: italic;font-weight: 300;color: var(--green-dark);}
.ab-identity-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.78;
  max-width: 380px;
  align-self: flex-end;
}

.ab-identity-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media(max-width:767px){ .ab-identity-row{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .ab-identity-row{ grid-template-columns:1fr; } }

.ab-id-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.ab-id-item:last-child { border-right: none; }
@media(max-width:767px){
  .ab-id-item { border-bottom: 1px solid var(--border); padding: 40px 8px;}
  .ab-id-item:nth-child(2n) { border-right: none; }
  .ab-id-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width:480px){
  .ab-id-item { border-right: none; }
  .ab-id-item:last-child { border-bottom: none; }
}

.ab-id-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 20px;
}
.ab-id-icon.no  { background: #fff0f0; color: #e55; }
.ab-id-icon.yes { background: var(--light-bg); color: var(--green-dark); }
.ab-id-tag {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 8px;
}
.ab-id-tag.no  { color: #e55; }
.ab-id-tag.yes { color: var(--green-dark); }
.ab-id-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ab-id-item p  {font-size: 15px;color: #666;line-height: 1.65;margin: 0;}

/* ── 4 REASONS — editorial numbered rows ── */
.ab-reasons {
  padding: 100px 0;
  background: var(--black);
}
.ab-reasons-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 0;
  align-items: flex-end;
}
@media(max-width:991px){ .ab-reasons-top{ grid-template-columns:1fr; gap:24px; } }
.ab-reasons-top h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.02;
  font-weight: 700;
}
.ab-reasons-top h2 em {font-style: italic;font-weight: 300;color: var(--green);}
.ab-reasons-top p {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  line-height: 1.78;
  max-width: 380px;
  align-self: flex-end;
}

.ab-reason-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: start;
  transition: background .25s;
}
.ab-reason-row:hover { background: rgba(255,255,255,.015); }
.ab-reason-row:last-child { border-bottom: none; }
@media(max-width:767px){
  .ab-reason-row { grid-template-columns: 60px 1fr; gap: 20px; display: flex;       flex-direction: column;}
  .ab-reason-body-right { grid-column: 2; }
}

.ab-reason-num {
  font-family: 'New Amsterdam', sans-serif;
  font-size: 4rem;
  color: var(--green);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -.02em;
}
.ab-reason-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0;
  padding-top: 6px;
}
.ab-reason-body {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  line-height: 1.82;
  margin: 0;
  padding-top: 6px;
}

/* ── END STATEMENT ── */
.ab-end {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.ab-end-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
@media(max-width:767px){ .ab-end-inner{ grid-template-columns:1fr; gap:36px; } }
.ab-end h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  font-weight: 700;
}
.ab-end h2 em {font-style: italic;font-weight: 300;color: var(--green-dark);}
.ab-end p {
  font-size: 1rem;
  color: #555;
  line-height: 1.78;
  margin-top: 20px;
  max-width: 560px;
}
.ab-end-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  flex-shrink: 0;
}
@media(max-width:767px){ .ab-end-actions{ align-items:flex-start; flex-direction:row; flex-wrap:wrap; } }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(0,0,0,.15);
  color: #555;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  background: transparent;
}
.btn-outline-dark:hover { border-color: var(--black); color: var(--black); }

/* ── scroll fade ── */
.fade-up{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease}
.fade-up.in{opacity:1;transform:translateY(0)}
.fd1{transition-delay:.05s}.fd2{transition-delay:.1s}.fd3{transition-delay:.15s}.fd4{transition-delay:.2s}

 

/* ── Custom cursor ── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s ease, width .2s ease, height .2s ease, background .2s ease;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(168,216,50,.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all .18s ease;
}
body:has(.svc-row:hover) .cursor-ring {
  width: 80px; height: 80px;
  background: rgba(168,216,50,.06);
  border-color: var(--green);
}

/* ── Navbar override ── */
.navbar { border-bottom: 1px solid var(--border); }

/* ── PAGE HERO ── */
.svc-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}
@media(max-width:767px){ .svc-hero-grid{ grid-template-columns:1fr; } }

.svc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  /* color: var(--green-dark); */
  margin-bottom: 32px;
}
.svc-hero-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--black);
}

.svc-hero h1 {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.04em;
  /* font-weight: 700; */
  color: var(--black);
  margin: 0;
}
.svc-hero h1 em {
  font-style: italic;
  color: var(--green-dark);
  font-weight: 300;
}
.svc-hero-sub {
  font-size: 18px;
  color: #666;
  line-height: 1.75;
  max-width: 380px;
  text-align: right;
}
@media(max-width:767px){ .svc-hero-sub { text-align:left; max-width:100%; } }

/* ── SERVICES ACCORDION ── */
.svc-list { padding: 0; }

.svc-row {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: background .3s;
}
.svc-row:first-child { border-top: 1px solid var(--border); }
.svc-row:hover {background: #f5f5f269;}
.svc-row.open {/* background: #fafaf8; */}

.svc-row-header {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  user-select: none;
}
@media(max-width:767px){
  .svc-row-header { grid-template-columns: 56px 1fr auto; gap:16px; padding:24px 0; }
  .svc-row-tag { display:none; }
}

.svc-row-num {
  font-family: 'New Amsterdam', sans-serif;
  font-size: 1.1rem;
  color: rgba(0,0,0,.2);
  letter-spacing: .06em;
  line-height: 1;
  padding-top: 3px;
}
.svc-row-title {
  font-size: clamp(1.4rem, 3.5vw, 2.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; color: var(--black); transition: color .2s;
}
.svc-row:hover .svc-row-title,
.svc-row.open .svc-row-title {/* color: var(--green-dark); */}

.svc-row-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  background: var(--grey);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.svc-row.open .svc-row-tag {
  background: var(--light-bg);
  color: var(--black);
}

.svc-row-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: rgba(0,0,0,.4);
  transition: all .3s;
  flex-shrink: 0;
}
.svc-row.open .svc-row-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  transform: rotate(45deg);
}

/* ── Expanded panel ── */
.svc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.4,0,.2,1);
}
.svc-row.open .svc-panel { max-height: 520px; }

.svc-panel-inner {
  display: grid;
  grid-template-columns: 80px 1fr 260px 280px;
  gap: 28px;
  padding: 0 0 48px;
  align-items: start;
}
@media(max-width:1199px){
  .svc-panel-inner { grid-template-columns: 80px 1fr 240px; }
  .svc-panel-img { display:none; }
}
@media(max-width:991px){
  .svc-panel-inner { grid-template-columns: 56px 1fr; }
  .svc-panel-right { display:none; }
  .svc-panel-img  { display:none; }
}
@media(max-width:575px){
  .svc-panel-inner { grid-template-columns: 1fr; padding-left:0; }
  .svc-panel-spacer { display:none; }
}

.svc-panel-spacer { /* empty first column */ }
.svc-panel-body p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}
.svc-panel-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.svc-panel-tag {
  font-size: .78rem;
  font-weight: 600;
  /* color: var(--green-dark); */
  background: var(--light-bg);
  border-radius: 100px;
  padding: 6px 14px;
}
.svc-panel-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.svc-panel-cta:hover { color: var(--green-dark); border-color: var(--green-dark); }
.svc-panel-cta i { font-size: .7rem; transition: transform .2s; }
.svc-panel-cta:hover i { transform: translate(3px,-3px); }

.svc-panel-right {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.svc-panel-right-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(0,0,0,.3); margin-bottom: 4px;
}
.svc-panel-right-item {
  font-size: .88rem; color: #444;
  display: flex; align-items: center; gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.svc-panel-right-item:last-child { border-bottom: none; }
.svc-panel-right-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}


/* ── Panel image ── */
.svc-panel-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.svc-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: grayscale(15%);
}
.svc-row.open .svc-panel-img img { transform: scale(1.04); filter: grayscale(0); }

/* ── MARQUEE STRIP ── */
.svc-marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--black);
  margin: 0px 0;
}
.svc-marquee-inner {
  display: flex; gap: 56px; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.svc-marquee-inner span {
  font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  flex-shrink: 0;
}
.svc-marquee-inner span.dot { color: var(--green); font-size: .5rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── WHY SECTION ── */
.svc-why {
  padding: 80px 0 100px;
}
.svc-why-header {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
@media(max-width:767px){ .svc-why-header{ grid-template-columns:1fr; gap:28px; } }
.svc-why-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05; letter-spacing: -.03em;
  font-weight: 500;
}
.svc-why-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  max-width: 400px;
  margin-top: auto;
  align-self: flex-end;
}

.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media(max-width:767px){ .svc-why-grid{ grid-template-columns:1fr; } }

.svc-why-item {
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-why-item:nth-child(3n) { border-right: none; padding-right:0; }
.svc-why-item:nth-child(n+4) {/* border-bottom: none; */}
@media(max-width:767px){
  .svc-why-item { border-right:none; padding-right:0; padding:32px 0; }
  .svc-why-item:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .svc-why-item:last-child { border-bottom: none; }
}

.svc-why-num {
  font-family: 'New Amsterdam', sans-serif;
  font-size: 3rem; color: rgba(0,0,0,.07); line-height:1;
  margin-bottom: 20px;
}
.svc-why-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.svc-why-item p {font-size: 16px;color: #555;line-height: 24px;margin: 0;max-width: 400px;}

/* ── CTA BAND ── */
.svc-cta {
  background: var(--black);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.svc-cta::before {
  content: 'GROWTH';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem,18vw,16rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
  white-space: nowrap;
}
.svc-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative; z-index: 1;
}
@media(max-width:767px){ .svc-cta-inner{ grid-template-columns:1fr; gap:32px; } }
.svc-cta h2 {
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 700;
}
.svc-cta h2 em {
  font-style: italic;
  font-weight: 300; 
}
.svc-cta-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end;
}
@media(max-width:767px){ .svc-cta-actions{ align-items:flex-start; flex-direction:row; flex-wrap:wrap; } 
  .svc-row.open .svc-panel {
    max-height: fit-content;
}}
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  border-radius: 100px; padding: 12px 24px;
  font-size: .85rem; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
  background: transparent;
  cursor: pointer;
}
.btn-white-outline:hover {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.05);
}

/* ── HOVER LINE EFFECT on rows ── */
.svc-row::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .4s ease;
}
.svc-row:hover::after { width: 100%; }
.svc-row.open::after { width: 100%; background: var(--green-dark); }

/* Scroll-fade in */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: .08s; }
.fade-up-d2 { transition-delay: .16s; }
.fade-up-d3 { transition-delay: .24s; }
.fade-up-d4 { transition-delay: .32s; }
.fade-up-d5 { transition-delay: .40s; }
.fade-up-d6 { transition-delay: .48s; }


/* ══ CONTACT PAGE ══ */
 
/* ── SPLIT HERO ── */
.ct-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px; /* navbar height */
}
@media(max-width:991px){
  .ct-hero { grid-template-columns: 1fr; min-height: auto; }
  .ct-hero-right { display: none; }
}

/* Left — dark editorial */
.ct-hero-left {
  background: var(--black);
  padding: 80px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media(max-width:575px){ .ct-hero-left{ padding:56px 28px 56px; } }
 
.ct-tag {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 48px;
}
.ct-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
  display: inline-block;
}

.ct-hero-h {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}
.ct-hero-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--green); 
}

.ct-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 340px;
  margin-top: 32px;
  margin-bottom: auto;
}

.ct-info-row {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 40px;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ct-info-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.ct-info-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 3px;
}
.ct-info-value {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
  line-height: 1.5;
}
a.ct-info-value:hover { color: var(--green); }

.ct-socials {
  display: flex; gap: 10px; margin-top: 28px;
}
.ct-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.ct-social-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(168,216,50,.08);
}

/* Right — light form panel */
.ct-hero-right {
  background: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
@media(max-width:1200px){ .ct-hero-right{ padding: 64px 44px; } }

.ct-form-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(0,0,0,.3); margin-bottom: 32px;
  display: flex; align-items: center; gap: 10px;
}
.ct-form-label::before {
  content: '';
  width: 18px; height: 1px;
  background: rgba(0,0,0,.2);
}

.ct-form { display: flex; flex-direction: column; gap: 0; }

.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media(max-width:575px){ .ct-field-row{ grid-template-columns:1fr; } }

.ct-field-group {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ct-field-group.full { grid-column: 1 / -1; }
.ct-field-group label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0,0,0,.35);
  margin-bottom: 8px;
}
.ct-field-group input,
.ct-field-group select,
.ct-field-group textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  padding: 0;
  resize: none;
  /* appearance: none; */
}
.ct-field-group input::placeholder,
.ct-field-group select::placeholder,
.ct-field-group textarea::placeholder { color: rgba(0,0,0,.2); font-weight: 400; }
.ct-field-group select {/* cursor: pointer; */}
.ct-field-group select option { color: var(--black); }

/* animated underline */
.ct-field-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--green-dark);
  transition: width .35s ease;
}
.ct-field-group:focus-within .ct-field-line { width: 100%; }
.ct-field-group.error .ct-field-line { width: 100%; background: #e55; }

.ct-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
}
.ct-nda {
  font-size: .75rem; color: rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 7px;
}
.ct-nda i { color: var(--green-dark); }

.btn-ct-submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 700;
  cursor: pointer;
  transition: background .25s, transform .2s;
  position: relative; overflow: hidden;
}
.btn-ct-submit:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ct-submit .arrow-circle {
  width: 32px; height: 32px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: .7rem;
  transition: transform .3s;
}
.btn-ct-submit:hover .arrow-circle { transform: rotate(-45deg); }

/* ── SUCCESS overlay ── */
.ct-success {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
  z-index: 10;
}
.ct-success.show { opacity: 1; pointer-events: all; }
.ct-success-icon {
  width: 72px; height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--green-dark);
}
.ct-success h3 { font-size: 1.8rem; letter-spacing: -.02em; margin: 0; }
.ct-success p { font-size: .95rem; color: #666; max-width: 300px; line-height: 1.7; margin: 0; }

/* ── BOTTOM INFO STRIP ── */
.ct-bottom {
  background: var(--grey);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.ct-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media(max-width:767px){ .ct-bottom-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .ct-bottom-grid{ grid-template-columns: 1fr; } }

.ct-bottom-item {
  padding: 0 36px;
  border-right: 1px solid var(--border);
}
.ct-bottom-item:first-child { padding-left: 0; }
.ct-bottom-item:last-child { border-right: none; }
@media(max-width:767px){
  .ct-bottom-item { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .ct-bottom-item:last-child { border-bottom: none; }
  .ct-bottom-item:nth-child(2n) { padding-left: 28px; border-left: 1px solid var(--border); }
}
@media(max-width:480px){
  .ct-bottom-item:nth-child(2n) { padding-left: 0; border-left: none; }
}

.ct-bottom-ico {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: .9rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.ct-bottom-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.ct-bottom-item p { font-size: .85rem; color: #666; line-height: 1.65; margin: 0; }

/* ── FAQ STRIP ── */
.ct-faq { padding: 80px 0; }
.ct-faq-h {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.03em;
  font-weight: 700;
  margin-bottom: 48px;
}
.ct-faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.ct-faq-item:first-of-type { border-top: 1px solid var(--border); }
.ct-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 1rem; font-weight: 600;
}
.ct-faq-q i {
  font-size: .75rem; color: rgba(0,0,0,.3);
  transition: transform .3s;
  flex-shrink: 0;
}
.ct-faq-item.open .ct-faq-q i { transform: rotate(45deg); color: var(--green-dark); }
.ct-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.ct-faq-item.open .ct-faq-a { max-height: 200px; }
.ct-faq-a p {
  padding: 0 0 24px;
  font-size: .92rem; color: #555; line-height: 1.8; margin: 0;
  max-width: 680px;
}
 

/* ── SERVICE CARDS (index teaser) ── */
    .services-section { padding: 100px 0; background: var(--white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 56px;
    }
    @media(max-width:991px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
    @media(max-width:575px){ .services-grid{ grid-template-columns: 1fr; } }

    .svc-card {
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 32px 28px;
      background: var(--white);
      transition: border-color .25s, transform .25s, box-shadow .25s;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .svc-card:hover {
      border-color: var(--green);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,.07);
    }
    .svc-card-icon {
      width: 52px; height: 52px;
      background: var(--light-bg);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      color: var(--green-dark); font-size: 1.2rem;
    }
    .svc-card h4 { font-size: 1.1rem; font-weight: 700; margin: 0; }
    .svc-card p  { font-size: .92rem; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
    .svc-learn-btn {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .82rem; font-weight: 700;
      color: var(--green-dark);
      background: var(--light-bg);
      border: none; border-radius: 100px;
      padding: 8px 18px;
      cursor: pointer;
      transition: background .2s, transform .2s;
      align-self: flex-start;
      margin-top: 4px;
    }
    .svc-learn-btn:hover { background: var(--green); color: var(--black); transform: translateX(3px); }
    .svc-learn-btn i { font-size: .7rem; }

    /* ── SERVICE DRAWER ── */
    .svc-drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.45);
      z-index: 1200;
      opacity: 0; pointer-events: none;
      transition: opacity .35s ease;
    }
    .svc-drawer-overlay.open { opacity: 1; pointer-events: all; }
    .svc-drawer {
      position: fixed; top: 0; right: 0; bottom: 0;
      width: min(560px, 95vw);
      background: var(--white);
      z-index: 1201;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
      display: flex; flex-direction: column;
    }
    .svc-drawer.open { transform: translateX(0); }
    .svc-drawer-header {
      background: var(--dark);
      padding: 40px 40px 32px;
      position: sticky; top: 0; z-index: 2;
      flex-shrink: 0;
    }
    .svc-drawer-close {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08);
      border: none; border-radius: 50%;
      color: white; font-size: .85rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }
    .svc-drawer-close:hover { background: rgba(255,255,255,.18); }
    .svc-drawer-label {
      font-size: .68rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--green); margin-bottom: 10px;
    }
    .svc-drawer-title {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      color: var(--white); line-height: 1.1; margin: 0;
    }
    .svc-drawer-body { padding: 36px 40px 48px; flex: 1; }
    .svc-drawer-body p { font-size: 1rem; line-height: 1.75; color: #333; margin-bottom: 20px; }
    .svc-drawer-services-list { list-style: none; padding: 0; margin: 24px 0 0; }
    .svc-drawer-services-list li {
      padding: 11px 0;
      border-bottom: 1px solid var(--border);
      font-size: .92rem;
      color: var(--text);
      display: flex; align-items: center; gap: 10px;
    }
    .svc-drawer-services-list li:last-child { border-bottom: none; }
    .svc-drawer-services-list li::before {
      content: '';
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--green); flex-shrink: 0;
    }
    .svc-drawer-cta {
      margin-top: 32px;
    }

/* ═══════════════════════════════════════════════════
   TEXT MASK REVEAL — word-by-word slide up
═══════════════════════════════════════════════════ */

/* Container — no overflow on the element itself */
.text-reveal {
  overflow: visible;
}

/* Each word is a clip container */
.text-reveal .word {
  display: inline-block;
  /* overflow: hidden; */           /* this is the mask */
  vertical-align: bottom;
  line-height: inherit;
  /* tiny top margin so descenders don't clip */
  /* padding-bottom: 0.08em; */
  /* margin-bottom: -0.08em; */
}

/* The inner span starts below and slides up */
.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.5s ease;
  will-change: transform, opacity;
}

/* When .words-visible is added — all word-inners slide into place */
.text-reveal.words-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ── Hero h1 — bigger, slower, more dramatic ── */
.hero-h1.text-reveal .word-inner {
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.6s ease;
}

/* ── Hero sub — lighter, slightly faster ── */
.hero-sub.text-reveal .word-inner {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.45s ease;
}

/* ── Section h2s — medium ── */
.pain-h.text-reveal .word-inner,
.why-h.text-reveal .word-inner,
.cta-h.text-reveal .word-inner,
.testimonials-h.text-reveal .word-inner {
  transition:
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.52s ease;
}

/* ═══════════════════════════════════════════════════
   PAGE TRANSITION CURTAIN
═══════════════════════════════════════════════════ */
#pageCurtain {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
  /* Default: hidden below viewport */
  transform: translateY(100%);
}

/* Page load — curtain starts covering screen (translateY 0)
   then exits upward */
#pageCurtain.curtain-visible {
  transform: translateY(0);
}

/* Exits upward out of view */
#pageCurtain.curtain-exit {
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Link click — covers screen from bottom up */
#pageCurtain.curtain-cover {
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}


/* ═══════════════════════════════════════════════════
   TEXT MASK REVEAL — all pages, h1 h2 h3
═══════════════════════════════════════════════════ */
.text-reveal {
  overflow: visible;
}
 

.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.5s  ease;
  will-change: transform, opacity;
}

.text-reveal.words-visible .word-inner {
  transform: translateY(0);
  opacity: 1;
  padding: 0;
}

/* h1 — bigger spring */
h1.text-reveal .word-inner,
.hero-h1.text-reveal .word-inner {
  transition:
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.65s ease;
}

/* h2 — medium */
h2.text-reveal .word-inner {
  transition:
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.52s ease;
}

/* h3 — quick */
h3.text-reveal .word-inner {
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.42s ease;
}

/* hero sub — lighter */
.hero-sub.text-reveal .word-inner {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.45s ease;
}

/* ══════════════════════════════════════
   BLOG / INSIGHTS SECTION
══════════════════════════════════════ */
.blog-section{
  background: var(--dark);
  padding: 100px 0;
}
.blog-eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color: var(--green); margin-bottom:18px;
}
.blog-eyebrow .dot{ width:7px;height:7px;border-radius:50%;background:var(--green); }

.blog-viewall{
  display:inline-flex; align-items:center; gap:9px;
  color: rgba(255,255,255,.55); font-size:.88rem; font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.18); padding-bottom:4px;
  transition: color .2s, gap .25s, border-color .2s;
}
.blog-viewall:hover{ color:var(--green); border-color:var(--green); gap:14px; }

.blog-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:18px;
}
@media(max-width:991px){ .blog-grid{ grid-template-columns:1fr; } }

.blog-card{
  display:block;
  border-radius:20px;
  overflow:hidden;
  background: var(--dark2);
  text-decoration:none;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.blog-card:hover{ transform: translateY(-6px); }

.blog-card-img{
  position:relative;
  aspect-ratio: 16/10;
  overflow:hidden;
}
.blog-card-feat .blog-card-img{ aspect-ratio: 16/11; }
.blog-card-img img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .6s ease, filter .4s ease;
  filter: grayscale(35%) brightness(.85);
}
.blog-card:hover .blog-card-img img{
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.blog-card-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5) 100%);
}

.blog-card-body{ padding: 22px 22px 26px; }
.blog-tag{
  display:inline-block;
  font-size:.66rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color: var(--green); background: rgba(168,216,50,.1);
  border:1px solid rgba(168,216,50,.25);
  padding:5px 12px; border-radius:100px; margin-bottom:14px;
}
.blog-card-body h3{
  font-size:1.15rem; font-weight:700; color:#fff; line-height:1.35;
  letter-spacing:-.01em; margin-bottom:14px;
  transition: color .2s;
}
.blog-card-feat .blog-card-body h3{ font-size:1.5rem; }
.blog-card:hover .blog-card-body h3{ color: var(--green); }

.blog-card-meta{
  display:flex; align-items:center; gap:8px;
  font-size:.78rem; color:rgba(255,255,255,.4);
}
.blog-card-meta .sep{ opacity:.5; }

.bl-hero{ background:var(--dark); padding:150px 0 80px; }
.bl-hero-tag{ display:inline-flex; align-items:center; gap:9px; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green); margin-bottom:24px; }
.bl-hero-tag .dot{ width:7px;height:7px;border-radius:50%;background:var(--green); }
.bl-hero h1{font-size: clamp(3.5rem, 8vw, 6.5rem);color:#fff;line-height:.96;letter-spacing:-.04em;font-weight:700;margin-bottom:20px;}
.bl-hero p{ color:rgba(255,255,255,.5); font-size:1.05rem; max-width:480px; line-height:1.75; }

.bl-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-top:36px; }
.bl-filter{ font-size:.8rem; font-weight:600; color:rgba(255,255,255,.5); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:100px; padding:8px 18px; transition:all .2s; cursor:pointer; }
.bl-filter.active,.bl-filter:hover{ background:var(--green); color:#000; border-color:var(--green); }

.bl-grid-section{ background:var(--dark); padding:20px 0 100px; }
.bl-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media(max-width:991px){ .bl-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:575px){ .bl-grid{ grid-template-columns:1fr; } }

/* ── ARTICLE HERO ── */
.art-hero{ background:var(--dark); padding:150px 0 0; }
.art-breadcrumb{ display:flex; align-items:center; gap:8px; margin-bottom:32px; }
.art-breadcrumb a{ color:rgba(255,255,255,.4); font-size:.8rem; text-decoration:none; }
.art-breadcrumb a:hover{ color:var(--green); }
.art-breadcrumb span{ color:rgba(255,255,255,.2); font-size:.8rem; }
.art-breadcrumb strong{ color:rgba(255,255,255,.7); font-size:.8rem; }

.art-tag{ display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--green); background:rgba(168,216,50,.1); border:1px solid rgba(168,216,50,.25); padding:6px 14px; border-radius:100px; margin-bottom:24px; }
.art-hero h1{ font-size:clamp(2.4rem,5.5vw,4.2rem); color:#fff; line-height:1.08; letter-spacing:-.035em; font-weight:700; max-width:880px; margin-bottom:32px; }
.art-meta-row{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.art-author{ display:flex; align-items:center; gap:12px; }
.art-author-avatar{ width:42px;height:42px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-weight:800;color:#000;font-size:.9rem; }
.art-author-name{ color:#fff; font-size:.88rem; font-weight:600; }
.art-author-role{ color:rgba(255,255,255,.4); font-size:.75rem; }
.art-meta-sep{ width:1px; height:32px; background:rgba(255,255,255,.1); }
.art-meta-item{ color:rgba(255,255,255,.45); font-size:.82rem; display:flex; align-items:center; gap:7px; }

.art-cover{ aspect-ratio:21/9; overflow:hidden; margin-top:48px; }
.art-cover img{ width:100%;height:100%;object-fit:cover;display:block; }

/* ── ARTICLE BODY ── */
.art-body-section{ padding:64px 0 100px; background:#fff; }
.art-body-grid{ display:grid; grid-template-columns: 1fr 240px; gap:64px; }
@media(max-width:991px){ .art-body-grid{ grid-template-columns:1fr; } .art-toc{ display:none; } }

.art-content{ max-width:680px; }
.art-content p{ font-size:1.08rem; color:#2a2a2a; line-height:1.85; margin-bottom:24px; }
.art-content h2{ font-size:1.7rem; font-weight:700; letter-spacing:-.02em; margin:48px 0 18px; color:var(--black); }
.art-content h3{ font-size:1.25rem; font-weight:700; margin:32px 0 14px; }
.art-content ul{ margin:0 0 24px; padding-left:22px; }
.art-content li{ font-size:1.05rem; color:#2a2a2a; line-height:1.8; margin-bottom:10px; }
.art-content blockquote{
  border-left:3px solid var(--green-dark); padding:6px 0 6px 24px; margin:36px 0;
  font-size:1.25rem; font-style:italic; color:#222; line-height:1.6; font-weight:500;
}
.art-pullquote{
  background:var(--light-bg); border-radius:18px; padding:32px 36px; margin:40px 0;
  font-size:1.15rem; font-weight:600; color:var(--black); line-height:1.6;
}
.art-divider{ height:1px; background:var(--border); margin:48px 0; }

/* Table of contents — sticky sidebar */
.art-toc{ position:sticky; top:100px; align-self:start; }
.art-toc-label{ font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(0,0,0,.3); margin-bottom:16px; }
.art-toc a{display:block;font-size:.85rem;color:#555;text-decoration:none;padding: 8px 0 8px 12px;border-left:2px solid var(--border);transition:color .2s, border-color .2s;}
.art-toc a:hover, .art-toc a.active{ color:var(--green-dark); border-color:var(--green-dark); }

.art-share{ display:flex; gap:10px; margin-top:32px; }
.art-share a{width: 36px;height: 36px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:#666;font-size:.85rem;transition:all .2s;padding: 0;}
.art-share a:hover{ background:var(--black); border-color:var(--black); color:#fff; }

/* ── AUTHOR CARD ── */
.art-author-card{ background:var(--grey); border-radius:20px; padding:32px; display:flex; gap:18px; align-items:center; margin-top:56px; }
.art-author-card-avatar{ width:60px;height:60px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-weight:800;color:#000;font-size:1.3rem;flex-shrink:0; }
.art-author-card h4{ font-size:1.05rem; font-weight:700; margin-bottom:4px; }
.art-author-card p{ font-size:.88rem; color:#666; margin:0; line-height:1.6; }

/* ── RELATED ARTICLES ── */
.art-related{ background:var(--dark); padding:90px 0; }
.art-related h2{ color:#fff; font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:700; letter-spacing:-.03em; margin-bottom:44px; }
.art-related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media(max-width:767px){ .art-related-grid{ grid-template-columns:1fr; } }

/* ── CTA STRIP ── */
.art-cta{ background:var(--grey); padding:64px 0; }
.art-cta-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.art-cta-inner h3{ font-size:1.6rem; font-weight:700; letter-spacing:-.02em; max-width:440px; }

  
.ed-section{padding: 140px 0;}
.ed-section.tight{padding: 140px 0;}
.ed-head{
  display:grid;
  /* grid-template-columns:1fr 1fr; */
  gap: 8px;
  padding-bottom: 32px;
  margin-bottom:8px;
  grid-auto-flow: row;
}
.ed-section h5{
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0;
    text-transform: uppercase;
}

@media(max-width:767px){ .ed-head{ grid-template-columns:1fr; gap:24px; } }
.ed-head h2{
  font-size:clamp(2.1rem,4.6vw,3.6rem);
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight: 500;
}
.ed-head h2 em{ font-style:normal;}
.ed-head p{font-size: 18px;color:#555;line-height:1.8;max-width:720px;align-self:flex-end;}
.ed-head.center{ display:block; text-align:center; }
.ed-head.center h2{ max-width:820px; margin:0 auto 20px; }
.ed-head.center p{ max-width:560px; margin:0 auto; text-align:center; }

.ed-eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:26px; color:var(--black);
}
.ed-eyebrow::before{ content:''; display:inline-block; width:24px; height:1px; background:var(--black); }
.ed-eyebrow.light{ color:rgba(255,255,255,.8); }
.ed-eyebrow.light::before{ background:rgba(255,255,255,.5); }

/* ── Static editorial row list (light bg) ── */
.ed-row-list{ border-top:1px solid var(--border); }
.ed-row{
  display:grid; grid-template-columns:220px 1fr; gap:32px;
  padding:38px 0; border-bottom:1px solid var(--border);
  align-items:baseline;
}
@media(max-width:767px){ .ed-row{ grid-template-columns:1fr; gap:10px; padding:28px 0; } }
.ed-row-label{
  font-size: 13px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(0,0,0,.38);
  padding-top: 0px;
}
.ed-row-body h4{font-size:1.3rem;font-weight:700;letter-spacing:-.015em;margin-bottom: 0;}
.ed-row-body p{font-size: 24px;color:#444;line-height:1.75;max-width: 100%;margin: 0;font-weight: 600;}
.ed-row-body .ed-row-cta{
  display:inline-flex; align-items:center; gap:9px; margin-top:16px;
  font-size:.85rem; font-weight:700; color:var(--black); text-decoration:none;
  border-bottom:1.5px solid var(--black); padding-bottom:2px; transition:color .2s, border-color .2s;
}
.ed-row-body .ed-row-cta:hover{ color:var(--green-dark); border-color:var(--green-dark); }
.ed-row-body .ed-row-cta i{ font-size:.7rem; transition:transform .2s; }
.ed-row-body .ed-row-cta:hover i{ transform:translate(3px,-3px); }

/* ── Dark section wrapper + rows (icon/avatar + label + body) ── */
.ed-dark{ background:var(--black); color:#fff; }
.ed-dark .ed-head h2, .ed-dark h2{ color:#fff; }
.ed-dark .ed-head p{ color:rgba(255,255,255,.55); }
.ed-dark-list{ border-top:1px solid var(--border-dark); }
.ed-dark-row{
  display:grid; grid-template-columns:64px 200px 1fr; gap:28px;
  padding:34px 0; border-bottom:1px solid var(--border-dark);
  align-items:center;
}
@media(max-width:767px){ .ed-dark-row{ grid-template-columns:44px 1fr; gap:14px; padding:26px 0; } .ed-dark-row-label{ grid-column:2; } }
.ed-dark-avatar{
  width:48px; height:48px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; font-weight:800; color:var(--green); flex-shrink:0;
  transition: background .3s, border-color .3s, color .3s;
}
.ed-dark-row:hover .ed-dark-avatar{ background:var(--green); border-color:var(--green); color:var(--black); }
.ed-dark-label{ font-size:1.15rem; font-weight:700; letter-spacing:-.01em; color:#fff; }
.ed-dark-num{ font-family:'New Amsterdam',sans-serif; font-size:1rem; color:rgba(255,255,255,.3); }
.ed-dark-body p{font-size: 20px;color:rgba(255,255,255,.55);line-height:1.75;max-width:560px;margin:0;}
.ed-dark-label img{ border-radius:10px;}
@media(max-width:767px){ .ed-dark-body{ grid-column:1/-1; } }

/* ── Statement block — big centered/left declarative line ── */
.ed-statement{ padding:96px 0; text-align:center;    background: #DAE6E4; }
.ed-statement.dark{ background:var(--black); color:#fff; }
.ed-statement blockquote{
  font-size:clamp(1.5rem,3.6vw,2.6rem); font-weight:700; letter-spacing:-.025em; line-height:1.35;
  max-width:900px; margin:0 auto; color:inherit;
}
.ed-statement blockquote em{ font-style:italic; font-weight:300; color:var(--green-dark); }
.ed-statement.dark blockquote em{ color:var(--green); }
.ed-statement p.ed-statement-sub{ margin-top:22px; font-size:1rem; color:#666; max-width:520px; margin-left:auto; margin-right:auto; line-height:1.7; }
.ed-statement.dark p.ed-statement-sub{color:rgba(255,255,255,.5);font-size: 20px;}

/* ── Cross-link callout box ── */
.ed-crosslink{
  border:1.5px solid var(--border); border-radius:20px; padding:32px 36px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-top:8px;
}
.ed-crosslink p{ font-size:1rem; color:#444; line-height:1.7; max-width:480px; margin:0; }
.ed-crosslink a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration:none;
  transition:color .2s, border-color .2s;
  background: #000000;
  padding: 16px 24px;
  border-radius: 40px;
}
.ed-crosslink a:hover{background: var(--green-dark);border-color:var(--green-dark);color: #000;}

/* ── svc-why grid, 3-row (9-item) variant ── */
.svc-why-grid.grid-9 .svc-why-item:nth-child(3n){ border-right:none; padding-right:0; }
.svc-why-grid.grid-9 .svc-why-item:nth-child(n+7){ border-bottom:none; }
@media(max-width:767px){
  .svc-why-grid.grid-9 .svc-why-item{ border-right:none; padding-right:0; padding:32px 0; border-bottom:1px solid var(--border); }
  .svc-why-grid.grid-9 .svc-why-item:last-child{ border-bottom:none; }
}

/* ── svc-why grid, 2-column (4-item) variant ── */
.svc-why-grid.grid-4{ grid-template-columns:repeat(2,1fr); }
.svc-why-grid.grid-4 .svc-why-item{ border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.svc-why-grid.grid-4 .svc-why-item:nth-child(2n){ border-right:none; padding-right:0; }
.svc-why-grid.grid-4 .svc-why-item:nth-child(n+3){ border-bottom:none; }
@media(max-width:767px){
  .svc-why-grid.grid-4 .svc-why-item{ border-right:none; padding-right:0; padding:32px 0; border-bottom:1px solid var(--border); }
  .svc-why-grid.grid-4 .svc-why-item:last-child{ border-bottom:none; }
}

/* ── svc-why grid, 5-item variant (3 + 2) ── */
.svc-why-grid.grid-5 .svc-why-item:nth-child(3n){ border-right:none; padding-right:0; }
.svc-why-grid.grid-5 .svc-why-item:nth-child(n+4){ border-bottom:none; }
@media(max-width:767px){
  .svc-why-grid.grid-5 .svc-why-item{ border-right:none; padding-right:0; padding:32px 0; border-bottom:1px solid var(--border); }
  .svc-why-grid.grid-5 .svc-why-item:last-child{ border-bottom:none; }
}

/* ── Compact final CTA split (form) — shorter than the full-height contact hero ── */
.svc-final{ display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--border); }
@media(max-width:991px){ .svc-final{ grid-template-columns:1fr; } }
.svc-final-left{
  background:var(--black); padding:88px 64px; display:flex; flex-direction:column; justify-content:center;
  position:relative; overflow:hidden;
}
@media(max-width:575px){ .svc-final-left{ padding:56px 28px; } }
 
.svc-final-right{
  background:var(--white); padding:88px 64px; display:flex; flex-direction:column; justify-content:center;
  border-left:1px solid var(--border); position:relative;
}
@media(max-width:1200px){ .svc-final-right{ padding:64px 44px; } }
@media(max-width:575px){ .svc-final-right{ padding:56px 28px; } }

/* ── Fade-up reveal, scoped to these pages (no JS needed beyond main.js .reveal) ── */
.ed-fade{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.ed-fade.in{ opacity:1; transform:translateY(0); }

/* ── Before → After transformation row (3-col with arrow) ── */
.ed-row-transform{ grid-template-columns:1fr 40px 1fr; align-items:center; }
.ed-row-transform .ed-row-body:first-of-type{ text-align:right; }
.ed-row-transform .ed-arrow{ text-align:center; color:var(--green-dark); }
@media(max-width:767px){
  .ed-row-transform{ grid-template-columns:1fr; gap:8px; text-align:left; }
  .ed-row-transform .ed-row-body:first-of-type{ text-align:left; }
  .ed-row-transform .ed-arrow{ text-align:left; transform:rotate(90deg); display:inline-block; margin:2px 0; }
}
.ed-check{
  width:34px; height:34px; border-radius:50%; border:1.5px solid var(--green-dark);
  color:var(--green-dark); display:flex; align-items:center; justify-content:center; font-size:.78rem;
}
.ed-dark .ed-check{ border-color:var(--green); color:var(--green); }

/* ── Split content / visual layout (text left, graphic right) ── */
.ed-split{
  display:grid; grid-template-columns:1fr .92fr; gap:80px; align-items:center;
}
@media(max-width:991px){ .ed-split{ grid-template-columns:1fr; gap:48px; } }
.ed-split .ed-head{display:block;margin-bottom: 0;}
.ed-split .ed-head p{ max-width:460px; margin-top:16px; align-self:auto; }
.ed-split .ed-row-list{ border-top:1px solid var(--border); }
.ed-split .ed-row{ grid-template-columns:56px 1fr; padding:26px 0; }
.ed-split-visual{ position:relative; }
.ed-split-visual video{ border-radius:20px; display:block; width: 420px; }

/* Positioning-map visual (branding.html) */
.pos-map{
  position:relative; background:var(--dark); border-radius:24px;
  aspect-ratio:1/1; max-width:480px; margin:0 auto; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.pos-map::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 50%, rgba(168,216,50,.10), transparent 65%);
}
.pos-map-rings{ position:relative; width:78%; aspect-ratio:1/1; }
.pos-map-ring{
  position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.1);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.pos-map-ring.r1{ width:100%; height:100%; }
.pos-map-ring.r2{ width:68%; height:68%; }
.pos-map-ring.r3{ width:38%; height:38%; border-color:rgba(168,216,50,.35); }
.pos-map-center{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:15%; aspect-ratio:1/1; border-radius:50%;
  background:var(--green); box-shadow:0 0 0 8px rgba(168,216,50,.14), 0 0 30px rgba(168,216,50,.5);
}
.pos-map-center-label{
  position:absolute; top:100%; left:50%; transform:translate(-50%,10px);
  font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--green); white-space:nowrap;
}
.pos-map-tag{
  position:absolute; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.55); font-size:.72rem; font-weight:600; letter-spacing:.02em;
  padding:7px 14px; border-radius:100px; white-space:nowrap; backdrop-filter:blur(2px);
}
.pos-map-tag span{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.35); display:inline-block; margin-right:7px; }
.pos-map-tag.t1{ top:6%; left:2%; }
.pos-map-tag.t2{ top:16%; right:0%; }
.pos-map-tag.t3{ bottom:10%; left:-2%; }
.pos-map-tag.t4{ bottom:2%; right:4%; }
@media(max-width:575px){ .pos-map-tag{ font-size:.62rem; padding:5px 10px; } }

/* Website mockup visual (website-design.html) */
.site-mock{
  position:relative; background:var(--grey); border:1px solid var(--border);
  border-radius:24px; padding:20px; max-width:480px; margin:0 auto;
}
.site-mock-chrome{
  display:flex; align-items:center; gap:6px; padding:0 4px 16px;
}
.site-mock-dot{ width:9px; height:9px; border-radius:50%; background:rgba(0,0,0,.15); }
.site-mock-bar{
  flex:1; height:22px; margin-left:10px; border-radius:100px; background:#fff;
  border:1px solid var(--border);
}
.site-mock-screen{
  background:#fff; border-radius:14px; padding:26px 24px; position:relative; overflow:visible;
}
.site-mock-line{ height:14px; border-radius:4px; background:rgba(0,0,0,.85); }
.site-mock-line.w60{ width:60%; }
.site-mock-line.w40{ width:40%; margin-top:10px; }
.site-mock-para{ margin-top:16px; }
.site-mock-para .site-mock-line{ height:8px; background:rgba(0,0,0,.14); margin-top:8px; width:100%; }
.site-mock-para .site-mock-line.short{ width:70%; }
.site-mock-media{
  margin-top:18px; height:90px; border-radius:10px;
  background:repeating-linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.05) 8px, rgba(0,0,0,.02) 8px, rgba(0,0,0,.02) 16px);
}
.site-mock-cta{
  margin-top:18px; display:inline-flex; align-items:center; gap:8px;
  background:var(--green); color:var(--black); font-weight:700; font-size:.78rem;
  padding:11px 20px; border-radius:100px;
}
.site-mock-note{
  position:absolute; display:flex; align-items:center; gap:8px;
  font-size:.68rem; font-weight:700; color:var(--black);
  background:#fff; border:1px solid var(--border); padding:7px 12px 7px 8px; border-radius:100px;
  box-shadow:0 8px 20px rgba(0,0,0,.08); white-space:nowrap;
}
.site-mock-note i{ color:var(--green-dark); font-size:.85rem; }
.site-mock-note.n1{ top:26px; right:-14px; }
.site-mock-note.n2{ top:118px; left:-18px; }
.site-mock-note.n3{ bottom:36px; right:-10px; }
@media(max-width:575px){ .site-mock-note{ position:static; margin:8px 6px 0 0; display:inline-flex; } }



.svc-opt-label{
  max-width:1140px; margin:0 auto; padding:0 24px;
  font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted); opacity:.35; margin-bottom:14px;
}

/* shared dark bento shell */
.svc-bento-outer, .svc-bento2-outer{
  background:var(--dark);
  /* border-radius:32px; */
  padding: 140px 0px 140px;
  position:relative;
  overflow:hidden;
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.svc-bento2-outer:after{ content:'';}
@media(max-width:767px){ .svc-bento-outer, .svc-bento2-outer{ padding:44px 22px 40px; border-radius:24px; } }
 
.svc-bento-head, .svc-bento2-head{max-width:620px;margin-bottom:48px;position:relative;z-index:1;margin: 0px auto;}
.svc-bento-head h2, .svc-bento2-head h2{
  color:#fff;
  font-size: clamp(1.8rem,4vw,4rem);
  /* font-weight:700; */
  letter-spacing:-.03em;
  line-height:1.15;
  margin-bottom:16px;
}
.svc-bento-head p, .svc-bento2-head p{
  color:rgba(255,255,255,.55);
  font-size: 20px;
  line-height: 1.6;
  max-width:480px;
  margin: 0px auto;
  margin-bottom: 40px;
}
.svc-bento-cta{
  display:inline-flex; align-items:center; gap:9px; color:var(--green); font-weight:600; font-size:.9rem;
  border-bottom:1.5px solid var(--green); padding-bottom:3px; transition: gap .25s, opacity .2s;
}
.svc-bento-cta:hover{ gap:14px; color:var(--green); opacity:.85; }
 

/* ── VERSION 2 — full 6-service asymmetric grid ── */
.svc-bento2-grid{
  display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:190px; grid-auto-flow:dense;
  gap:18px; position:relative; z-index:1;
}
@media(max-width:900px){ .svc-bento2-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:200px; } }
@media(max-width:600px){ .svc-bento2-grid{ grid-template-columns:1fr; grid-auto-rows:220px; } }

.svc2-card{ position:relative; display:block; border-radius:18px; overflow:hidden; text-decoration:none; }
.svc2-card.feature{ grid-column:span 2; grid-row:span 2; }
@media(max-width:600px){ .svc2-card.feature{ grid-column:span 1; grid-row:span 1; } }
.svc2-card img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.svc2-card:hover img{ transform:scale(1.07); }
.svc2-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, transparent 35%, rgba(0,0,0,.88) 100%); }
.svc2-tag{
  position:absolute; top:14px; left:14px; z-index:2;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px);
  color:#fff; font-size:.62rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:5px 12px; border-radius:100px;
}
.svc2-arrow{
  position:absolute; top:14px; right:14px; z-index:2; width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.68rem; transition: transform .3s ease, background .3s ease, color .3s ease;
}
.svc2-card:hover .svc2-arrow{ transform:rotate(45deg); background:var(--green); color:#0f0f0f; }
.svc2-text{ position:absolute; left:0; right:0; bottom:0; padding:16px 18px 18px; z-index:2; }
.svc2-text h4{color:#fff;font-weight:700;letter-spacing:-.01em;margin-bottom:4px;font-size: 18px;}
.svc2-card.feature .svc2-text{ padding:22px 24px 24px; }
.svc2-card.feature .svc2-text h4{font-size: 28px;}
.svc2-text p{ color:rgba(255,255,255,.62); font-size:.76rem; line-height:1.45; }
.svc2-card.feature .svc2-text p{font-size: 16px;max-width:320px;}


  
/* ═══════════════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════════════ */

/* ── HERO (shares .ab-hero base) ── */
.tm-hero-desc { font-size: 1rem; color: #444; line-height: 1.82; max-width: 460px; margin-bottom: 32px; }

/* ── FOUNDER SPOTLIGHT (mirrors .ab-who split) ── */
.tm-lead { padding: 100px 0; border-bottom: 1px solid var(--border); }
.tm-lead-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
@media(max-width:991px){ .tm-lead-grid{ grid-template-columns:1fr; gap:48px; } }
.tm-lead-img { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; background:var(--dark); }
.tm-lead-img img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(.15); transition: transform .6s ease, filter .6s ease; }
.tm-lead-img:hover img { transform: scale(1.04); filter:grayscale(0); }
.tm-lead-role { font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color: var(--green-dark); margin-bottom:14px; }
.tm-lead-name { font-size: clamp(2rem, 4vw, 2.9rem); font-weight:700; letter-spacing:-.03em; line-height:1.08; margin-bottom:22px; }
.tm-lead-quote { font-size: 1.3rem; font-weight:500; line-height:1.5; letter-spacing:-.01em; color:var(--text); margin-bottom:22px; }
.tm-lead-bio { font-size:1rem; color:#555; line-height:1.82; margin-bottom:0; max-width:480px; }
.tm-lead-sign { margin-top:28px; display:flex; align-items:center; gap:14px; }
.tm-lead-sign-line { width:38px; height:1px; background:rgba(0,0,0,.2); }
.tm-lead-sign span { font-size:.8rem; color:#777; }

/* ── TEAM GRID ── */
.tm-grid-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.tm-grid-header { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:56px; }
@media(max-width:767px){ .tm-grid-header{ grid-template-columns:1fr; gap:20px; } }
.tm-grid-header p { font-size:1rem; color:#555; line-height:1.78; max-width:380px; }
.tm-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--border); border:1px solid var(--border);
}
@media(max-width:991px){ .tm-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .tm-grid{ grid-template-columns:1fr; } }
.tm-card { background:var(--white); padding:0; position:relative; overflow:hidden; }
.tm-card-img { position:relative; aspect-ratio:349/400; overflow:hidden; }
.tm-card-img img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(1); transition: transform .6s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.tm-card:hover .tm-card-img img { transform:scale(1.06); filter:grayscale(0); }
.tm-card-num { position:absolute; top:16px; left:16px; font-size:.68rem; font-weight:700; letter-spacing:.08em; color:rgba(255,255,255,.85); background:rgba(0,0,0,.35); backdrop-filter:blur(6px); padding:4px 10px; border-radius:100px; }
.tm-card-socials { position:absolute; top:16px; right:16px; display:flex; flex-direction:column; gap:8px; opacity:0; transform:translateX(6px); transition:opacity .3s ease, transform .3s ease; }
.tm-card:hover .tm-card-socials { opacity:1; transform:translateX(0); }
.tm-card-socials a { width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.9); color:var(--black); display:flex; align-items:center; justify-content:center; font-size:.72rem; transition:background .2s ease, color .2s ease; }
.tm-card-socials a:hover { background:var(--green); color:var(--black); }
.tm-card-body { padding:22px 22px 26px; }
.tm-card-name { font-size:1.15rem; font-weight:700; letter-spacing:-.015em; margin-bottom:4px; }
.tm-card-role { font-size:.78rem; font-weight:600; color:var(--green-dark); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.tm-card-tags { display:flex; flex-wrap:wrap; gap:6px; }
.tm-card-tag { font-size:.68rem; color:#777; background:var(--light-bg); padding:4px 10px; border-radius:100px; }

/* ── CULTURE / VALUES (mirrors .ab-identity row) ── */
.tm-culture { padding:100px 0; border-bottom:1px solid var(--border); }
.tm-culture-header { display:grid; grid-template-columns:1fr 1fr; gap:60px; margin-bottom:64px; align-items:center; }
@media(max-width:991px){ .tm-culture-header{ grid-template-columns:1fr; gap:24px; } }
.tm-culture-header h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing:-.04em; line-height:1.02; font-weight:700; }
.tm-culture-header h2 em { font-style:italic; font-weight:300; color:var(--green-dark); }
.tm-culture-header p { font-size:1rem; color:#555; line-height:1.78; max-width:380px; align-self:flex-end; }
.tm-culture-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
@media(max-width:767px){ .tm-culture-row{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .tm-culture-row{ grid-template-columns:1fr; } }
.tm-culture-item { padding:40px 32px; border-right:1px solid var(--border); }
.tm-culture-item:last-child { border-right:none; }
@media(max-width:767px){
  .tm-culture-item { border-bottom:1px solid var(--border); padding:40px 8px; }
  .tm-culture-item:nth-child(2n) { border-right:none; }
  .tm-culture-item:nth-last-child(-n+2) { border-bottom:none; }
}
@media(max-width:480px){
  .tm-culture-item { border-right:none; }
  .tm-culture-item:last-child { border-bottom:none; }
}
.tm-culture-num { font-size:.9rem; font-weight:700; color:var(--green-dark); margin-bottom:20px; display:block; }
.tm-culture-item h4 { font-size:1rem; font-weight:700; margin-bottom:8px; }
.tm-culture-item p { font-size:15px; color:#666; line-height:1.65; margin:0; }

/* ── JOIN US CTA (mirrors .ab-end) ── */
.tm-join { padding: 140px 0; background:var(--black); color:#fff; }
.tm-join-inner { display:grid; grid-template-columns:1.2fr 1fr; gap:60px; align-items:center; }
@media(max-width:767px){ .tm-join-inner{ grid-template-columns:1fr; gap:36px; } }
.tm-join h2 { font-size:clamp(2.2rem,5vw,3.4rem); letter-spacing:-.03em; line-height:1.08; font-weight:700; color:#fff; margin-bottom:20px; }
.tm-join h2 em { font-style:italic; font-weight:300; color:var(--green); }
.tm-join p { font-size:1rem; color:rgba(255,255,255,.55); line-height:1.8; max-width:460px; }
.tm-join-actions { display:flex; flex-direction:column; align-items:flex-end; gap:16px; }
@media(max-width:767px){ .tm-join-actions{ align-items:flex-start; } }
.tm-join-note { font-size:.82rem; color:rgba(255,255,255,.4); display:flex; align-items:center; gap:8px; }
/* ═══════════════════════════════════════════════════
   INNER-PAGE HERO — reusable, mirrors home .hero style
   (centered eyebrow / h1 / sub / cta, lighter footprint)
═══════════════════════════════════════════════════ */
.ihero {
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.ihero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 100%);
  pointer-events: none;
}
.ihero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-bg); color: #4a6a0a;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.ihero-eyebrow-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; display:inline-block; }
.ihero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--text);
  max-width: 960px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  /* font-weight: 700; */
}
.ihero h1 em {font-style: normal;/* font-weight: 300; *//* color: var(--green-dark); */}
.ihero-sub {
  font-size: 22px;
  color: var(--muted);
  max-width: 740px;
  margin: 0 auto 80px;
  line-height: 1.4;
  position: relative; z-index: 1;
}
.ihero-cta-row { display:flex; justify-content:center; position:relative; z-index:1; }
.ihero-stats {
  display:flex; justify-content:center; gap:48px; flex-wrap:wrap;
  margin: 56px auto 0; padding-top:32px; max-width:560px;
  border-top:1px solid var(--border);
  position:relative; z-index:1;
}
.ihero-stats .ab-hero-stat { text-align:center; }
@media(max-width:767px){
  .ihero{ padding:80px 0px 64px; }
  .ihero-stats{ gap:28px 36px; margin-top:40px; padding-top:24px; }
}

/* ═══════════════════════════════════════════════════
   BRANDING PAGE — new sections
═══════════════════════════════════════════════════ */

/* ── small pill row (Section 2) ── */
.brd-pill-row { display:flex; flex-wrap:wrap; gap:10px; margin: 24px 0 28px; }
.brd-pill { font-size:.8rem; font-weight:600; color:#555; background:var(--grey); border:1px solid var(--border); padding:8px 16px; border-radius:100px; }

/* ── OUR BELIEF — dark section extras (Section 3) ── */
.brd-belief-row { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; margin: 48px 0 44px; border-top:1px solid var(--border-dark); padding-top:44px; }
@media(max-width:767px){ .brd-belief-row{ grid-template-columns:1fr; gap:28px; } }
.brd-belief-item { position:relative; }
.brd-belief-num { font-size:.7rem; font-weight:700; letter-spacing:.12em; color:var(--green); margin-bottom:14px; display:block; text-transform:uppercase; }
.brd-belief-item p { font-size:1.15rem; font-weight:600; color:#fff; line-height:1.5; letter-spacing:-.01em; margin:0; }
.brd-belief-lead { font-size:1.05rem; color:rgba(255,255,255,.5); line-height:1.8; max-width:560px; margin: 8px 0 0; }
.brd-belief-quote {
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 24px 24px;
  position: relative;
  overflow: hidden;
}
.brd-belief-quote::before {
  content: '"'; position:absolute; left:24px; top:-18px;
  font-size:7rem; font-weight:900; color:rgba(255,255,255,.05); line-height:1; pointer-events:none;
}
.brd-belief-quote-label { font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:16px; }
.brd-belief-quote p.q {font-size: clamp(1.3rem, 2.6vw, 1.4rem);font-weight:600;color:#fff;line-height:1.4;letter-spacing:-.015em;margin-bottom: 8px;font-style:italic;}
.brd-belief-quote p.foot { font-size:.95rem; color:rgba(255,255,255,.45); line-height:1.7; margin:0; font-style:normal; max-width:520px; }

/* ── THE ESPERANCE METHOD — process flow (Section 5) ── */
.brd-process-section { padding:140px 0; border-bottom:1px solid var(--border); }
.brd-process { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:64px; }
.brd-process::before {
  content:'';
  position:absolute; top:34px; left:12.5%; right:12.5%; height:1px;
  background-image: linear-gradient(to right, rgba(0,0,0,.18) 0 6px, transparent 6px 14px);
  background-size: 14px 1px;
  z-index:0;
}
@media(max-width:767px){
  .brd-process{ grid-template-columns:1fr; gap:44px; }
  .brd-process::before{ top:0; bottom:0; left:34px; right:auto; width:1px; height:auto;
    background-image: linear-gradient(to bottom, rgba(0,0,0,.18) 0 6px, transparent 6px 14px);
    background-size: 1px 14px; }
}
.brd-process-step { position:relative; z-index:1; text-align:center; }
@media(max-width:767px){ .brd-process-step{ text-align:left; display:flex; gap:20px; align-items:flex-start; } }
.brd-process-icon {
  width:68px; height:68px; border-radius:50%;
  background:var(--white); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; color:var(--green-dark);
  margin:0 auto 22px;
  position:relative;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
@media(max-width:767px){ .brd-process-icon{ margin:0; flex-shrink:0; } }
.brd-process-icon::after {
  content:''; position:absolute; inset:-6px; border-radius:50%;
  border:1px solid var(--green); opacity:0; transform:scale(.85);
  transition: opacity .35s ease, transform .35s ease;
}
.brd-process-step:hover .brd-process-icon { background:var(--green); color:var(--black); transform:translateY(-4px); }
.brd-process-step:hover .brd-process-icon::after { opacity:1; transform:scale(1); }
.brd-process-num { font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--green-dark); margin-bottom:10px; }
.brd-process-step h4 { font-size:1.2rem; font-weight:700; letter-spacing:-.015em; margin-bottom:8px; }
.brd-process-step p { font-size:.92rem; color:#666; line-height:1.6; margin:0; max-width:220px; margin-left:auto; margin-right:auto; }
@media(max-width:767px){ .brd-process-step p{ margin-left:0; max-width:none; } }

/* ── WHAT WE HELP YOU BUILD — bento grid (Section 6) ── */
.brd-bento-section { padding:140px 0; border-bottom:1px solid var(--border); background:var(--grey); }
.brd-bento {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 22px;
  margin-top: 56px;
}
@media(max-width:900px){ .brd-bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; } }
@media(max-width:560px){ .brd-bento{ grid-template-columns:1fr; grid-auto-rows:auto; } }

.brd-bento-card {
  background:var(--white); border:1px solid var(--border); border-radius:20px;
  padding:32px; display:flex; flex-direction:column; justify-content:flex-end;
  position:relative; overflow:hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.brd-bento-card:hover { transform:translateY(-6px); box-shadow:0 24px 48px rgba(0,0,0,.08); border-color:transparent; }
.brd-bento-card.feature { grid-column:span 2; grid-row:span 2; background:var(--black); color:#fff; padding:40px; }
.brd-bento-card.wide { grid-column:span 2; }
@media(max-width:900px){ .brd-bento-card.feature, .brd-bento-card.wide { grid-column:span 2; } }
@media(max-width:560px){ .brd-bento-card.feature, .brd-bento-card.wide { grid-column:span 1; grid-row:span 1; min-height:220px; } }

.brd-bento-icon {
  width:52px; height:52px; border-radius:14px;
  background:var(--light-bg); color:var(--green-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; margin-bottom:20px;
  animation: brdIconFloat 3.2s ease-in-out infinite;
}
.brd-bento-card.feature .brd-bento-icon { background:rgba(168,216,50,.14); color:var(--green); }
.brd-bento-card.feature .brd-bento-icon { width:60px; height:60px; font-size:1.4rem; }
@keyframes brdIconFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.brd-bento-card:hover .brd-bento-icon { animation-play-state: paused; transform:scale(1.12) rotate(-6deg); }
.brd-bento-card h4 { font-size:1.15rem; font-weight:700; letter-spacing:-.015em; margin-bottom:8px; }
.brd-bento-card.feature h4 { font-size:1.7rem; color:#fff; }
.brd-bento-card p { font-size:.92rem; color:#666; line-height:1.6; margin:0; }
.brd-bento-card.feature p { color:rgba(255,255,255,.55); font-size:1rem; max-width:320px; }
.brd-bento-tag { position:absolute; top:24px; right:24px; font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(0,0,0,.25); }
.brd-bento-card.feature .brd-bento-tag { color:rgba(255,255,255,.3); }

/* ── STRONG BRAND CHANGES — floating cards (Section 7) ── */
.brd-float-section { padding:140px 0; border-bottom:1px solid var(--border); overflow:hidden; }
.brd-float-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
@media(max-width:900px){ .brd-float-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .brd-float-grid{ grid-template-columns:1fr; } }

.brd-float-card {
  background:var(--white); border:1px solid var(--border); border-radius:20px;
  padding:32px 28px; text-align:left;
  animation: brdFloat 5.5s ease-in-out infinite;
  transition: box-shadow .35s ease, transform .35s ease, animation-play-state .2s;
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
}
.brd-float-card:hover { animation-play-state:paused; transform:translateY(-8px); box-shadow:0 28px 56px rgba(0,0,0,.1); }
@keyframes brdFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.brd-float-card:nth-child(1){ animation-delay:0s; }
.brd-float-card:nth-child(2){ animation-delay:.6s; }
.brd-float-card:nth-child(3){ animation-delay:1.2s; }
.brd-float-card:nth-child(4){ animation-delay:1.8s; }
.brd-float-card:nth-child(5){ animation-delay:2.4s; }
.brd-float-card:nth-child(6){ animation-delay:.3s; }
.brd-float-card:nth-child(7){ animation-delay:.9s; }
.brd-float-card:nth-child(8){ animation-delay:1.5s; }
.brd-float-card:nth-child(9){ animation-delay:2.1s; }

.brd-float-icon {
  width:46px; height:46px; border-radius:12px;
  background:var(--light-bg); color:var(--green-dark);
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem; margin-bottom:18px;
}
.brd-float-card h4 { font-size:1.02rem; font-weight:700; letter-spacing:-.01em; margin-bottom:8px; }
.brd-float-card p { font-size:16px; color:#666; line-height:1.62; margin:0; }

/* ── SELECTED WORK — case studies (Section 8) ── */
.brd-case-section { padding:140px 0; background:var(--black); border-bottom:1px solid var(--border-dark); }
.brd-case-section .ed-head h2, .brd-case-section .ed-head p { color:#fff; }
.brd-case-section .ed-head p { color:rgba(255,255,255,.55); }
.brd-case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
@media(max-width:900px){ .brd-case-grid{ grid-template-columns:1fr; } }

.brd-case-card {
  position:relative; border-radius:22px; overflow:hidden;
  aspect-ratio: 3/4; display:flex; flex-direction:column; justify-content:flex-end;
}
.brd-case-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(.6) brightness(.75); transition: transform .7s cubic-bezier(.22,1,.36,1), filter .5s ease; }
.brd-case-card:hover img { transform:scale(1.08); filter:grayscale(0) brightness(.6); }
.brd-case-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.92) 100%); }
.brd-case-num { position:absolute; top:24px; left:24px; z-index:1; font-family:'SuisseIntl',serif; font-size:.85rem; font-weight:700; color:rgba(255,255,255,.5); letter-spacing:.08em; }
.brd-case-body { position:relative; z-index:1; padding:28px 26px 30px; }
.brd-case-from { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.4); text-decoration:line-through; text-decoration-color:rgba(255,255,255,.25); margin-bottom:6px; }
.brd-case-arrow { color:var(--green); font-size:.8rem; margin-bottom:6px; display:block; }
.brd-case-to { font-size:1.3rem; font-weight:700; letter-spacing:-.015em; color:#fff; line-height:1.25; }
.brd-case-tag { display:inline-block; margin-top:14px; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); border-top:1px solid rgba(255,255,255,.12); padding-top:14px; width:100%; }
.brd-case-note { text-align:center; font-size:.82rem; color:rgba(255,255,255,.35); margin-top:36px; }

/* ═══════════════════════════════════════════════════
   BRANDING PAGE — v2 refinements
═══════════════════════════════════════════════════ */

/* ── SECTION 3 — Our Belief: right side video ── */
.brd-belief-grid {display:grid;grid-template-columns: 1.3fr .95fr;gap:72px;align-items:start;}
@media(max-width:991px){ .brd-belief-grid{ grid-template-columns:1fr; gap:44px; } }
.brd-belief-media {/* border-radius:24px; *//* overflow:hidden; *//* position:relative; *//* aspect-ratio:4/5; *//* border:1px solid var(--border-dark); */margin-top: 140px;}
.brd-belief-media video{width: 100%;border-radius: 24px;}
.brd-belief-media video {width:100%;height:100%;/* object-fit:cover; *//* display:block; */}
.brd-belief-media::after {/* content:''; */position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);pointer-events:none;}
.brd-belief-media-tag { position:absolute; bottom:22px; left:22px; z-index:1; font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); display:flex; align-items:center; gap:8px; }
.brd-belief-media-tag span.dot { width:6px; height:6px; border-radius:50%; background:var(--green); display:inline-block; }
@media(max-width:991px){ .brd-belief-media{/* aspect-ratio:16/10; */margin: 0;} }

/* ── SECTION 4 — Our Approach: image left / rows right ── */
.brd-appr-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:72px; align-items:start; }
@media(max-width:991px){ .brd-appr-grid{ grid-template-columns:1fr; gap:44px; } }
.brd-appr-img { border-radius:24px; overflow:hidden; position:relative; aspect-ratio:4/5; background:var(--dark); }
.brd-appr-img img { width:100%; height:100%; object-fit:cover; display:block; filter:grayscale(.2); }
@media(max-width:991px){ }

.brd-appr-rows { display:flex; flex-direction:column; }
.brd-appr-row {display:grid;grid-template-columns:44px 1fr;gap:20px;padding:26px 0;border-bottom:1px solid var(--border);align-content: center;align-items: center;}
.brd-appr-row:first-child { padding-top:0; }
.brd-appr-row:last-of-type { border-bottom:none; }
.brd-appr-row-num { width:38px; height:38px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:.75rem; font-weight:700; color:#666; flex-shrink:0; }
.brd-appr-row-body { display:flex; flex-direction:column; gap:4px; }
@media(min-width:576px){ .brd-appr-row-body{display:grid;grid-template-columns: 0.5fr 1.2fr;gap:24px;align-items: center;} }
.brd-appr-row h4 {font-size:1.08rem;font-weight:700;letter-spacing:-.01em;margin:0;/* line-height: 38px; */}
.brd-appr-row p {font-size: 16px;color:#666;line-height:1.65;margin:0;}

.brd-appr-footer { display:grid; grid-template-columns:1.2fr 1fr; gap:28px; margin-top:36px; align-items:center; }
@media(max-width:767px){ .brd-appr-footer{ grid-template-columns:1fr; } }
.brd-appr-footer-text { font-size:1rem; color:#555; line-height:1.8; margin:0; }
.brd-appr-stat { background:var(--black); border-radius:22px; padding:32px 34px; position:relative; overflow:hidden; }
.brd-appr-stat strong { font-size:2.6rem; font-weight:800; color:var(--green); line-height:1; display:block; margin-bottom:10px; font-family:"New Amsterdam", sans-serif; letter-spacing:1px; }
.brd-appr-stat span { font-size:.92rem; color:rgba(255,255,255,.55); line-height:1.55; display:block; }

/* ── SECTION 6 — flat-color service cards ── */
.brd-flat-section { padding:140px 0; border-bottom:1px solid var(--border); background:var(--grey); }
.brd-flat-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:24px; margin-top:56px; }
.brd-flat-card:nth-child(1),
.brd-flat-card:nth-child(2),
.brd-flat-card:nth-child(3) { grid-column: span 2; }
.brd-flat-card:nth-child(4),
.brd-flat-card:nth-child(5) { grid-column: span 3; }
@media(max-width:900px){
  .brd-flat-grid{ grid-template-columns:repeat(2,1fr); }
  .brd-flat-card:nth-child(1),
  .brd-flat-card:nth-child(2),
  .brd-flat-card:nth-child(3),
  .brd-flat-card:nth-child(4),
  .brd-flat-card:nth-child(5) { grid-column: span 1; }
}
@media(max-width:600px){
  .brd-flat-grid{ grid-template-columns:1fr; }
}

.brd-flat-card {
  position:relative; overflow:hidden;
  border-radius:24px; padding:40px;
  min-height:260px;
  display:flex; flex-direction:column; justify-content:space-between;
  transition: transform .4s ease, box-shadow .4s ease;
  text-decoration:none; color:inherit;
}
.brd-flat-card:hover { transform:translateY(-6px); box-shadow:0 24px 48px rgba(0,0,0,.08); }
.brd-flat-card.c1 { background:#f5e3d3; }
.brd-flat-card.c2 { background:#eae8e3; }
.brd-flat-card.c3 { background:#e7e2f4; }
.brd-flat-card.c4 { background:#dfeee0; }
.brd-flat-card.c5 { background:#dbe7f2; }

.brd-flat-icon {
  position:absolute; right:-18px; bottom:-18px;
  font-size:9rem; line-height:1;
  transform:rotate(-12deg);
  transition: transform .5s ease;
  z-index:0;
}
.brd-flat-card:hover .brd-flat-icon { transform:rotate(-4deg) scale(1.06); }
.brd-flat-card.c1 .brd-flat-icon{ color:rgba(201,123,63,.35); }
.brd-flat-card.c2 .brd-flat-icon{ color:rgba(120,118,112,.3); }
.brd-flat-card.c3 .brd-flat-icon{ color:rgba(124,107,191,.3); }
.brd-flat-card.c4 .brd-flat-icon{ color:rgba(90,138,82,.3); }
.brd-flat-card.c5 .brd-flat-icon{ color:rgba(71,120,168,.3); }

.brd-flat-tag { position:relative; z-index:1; display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.6); backdrop-filter:blur(6px); font-size:.72rem; font-weight:700; letter-spacing:.04em; color:#444; padding:7px 14px 7px 10px; border-radius:100px; width:fit-content; }
.brd-flat-tag .dot { width:7px; height:7px; border-radius:50%; display:inline-block; }
.brd-flat-card.c1 .dot{ background:#c97b3f; }
.brd-flat-card.c2 .dot{ background:#787670; }
.brd-flat-card.c3 .dot{ background:#7c6bbf; }
.brd-flat-card.c4 .dot{ background:#5a8a52; }
.brd-flat-card.c5 .dot{ background:#4778a8; }

.brd-flat-body { position:relative; z-index:1; max-width:380px; }
.brd-flat-body h4 { font-size:1.4rem; font-weight:700; letter-spacing:-.02em; margin-bottom:10px; color:#1a1a1a; }
.brd-flat-body p {font-size: 16px;color:#4a4a45;line-height:1.65;margin:0 0 18px;}
.brd-flat-link {position:relative;z-index:1;display:inline-flex;align-items:center;gap:8px;font-size:.85rem;font-weight:700;color:#1a1a1a;text-decoration:none;width:fit-content;border-bottom:1px solid rgba(0,0,0,.35);padding-bottom:2px;display: none;}
.brd-flat-link i { font-size:.75rem; transition: transform .25s ease; }
.brd-flat-card:hover .brd-flat-link i { transform:translateX(4px); }

/* ── SECTION 8 v2 — Selected Work: editorial row list (no photos) ── */
.brd-case-list { margin-top:64px; border-top:1px solid rgba(255,255,255,.14); }
.brd-case-row {
  display:grid; grid-template-columns:64px 1fr auto 52px;
  align-items:center; gap:28px;
  padding:36px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
  transition: padding-left .4s ease, background .4s ease;
  cursor:default;
}
.brd-case-row:hover { padding-left:16px; background:rgba(255,255,255,.03); }
.brd-case-row-num { font-size:.85rem; font-weight:700; color:rgba(255,255,255,.35); letter-spacing:.04em; }
.brd-case-row-flow { display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; }
.brd-case-row-from { font-size:1.05rem; font-weight:600; color:rgba(255,255,255,.4); text-decoration:line-through; text-decoration-color:rgba(255,255,255,.3); text-decoration-thickness:1px; }
.brd-case-row-arrow { color:var(--green); font-size:1rem; }
.brd-case-row-to { font-size:clamp(1.3rem,2.4vw,1.9rem); font-weight:700; letter-spacing:-.02em; color:#fff; font-style:italic; }
.brd-case-row-tag { font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.4); white-space:nowrap; }
.brd-case-row-go {
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.85rem; flex-shrink:0;
  transition: background .35s ease, border-color .35s ease, transform .35s ease, color .35s ease;
}
.brd-case-row:hover .brd-case-row-go { background:var(--green); border-color:var(--green); color:var(--black); transform:rotate(45deg); }
@media(max-width:767px){
  .brd-case-row { grid-template-columns:1fr; gap:12px; padding:28px 0; }
  .brd-case-row:hover { padding-left:0; }
  .brd-case-row-go { display:none; }
  .brd-case-row-flow { gap:10px; }
  .container.ed-section { padding: 140px 12px;}
.cta-band video { top: 0%;  width: 300%;  /* object-fit: cover; */}
.ihero-sub {  font-size: 18px;}
.reveal-left h2 {
    font-size: 32px;
}
.howwork-bg:before{ top: -30px;}

}
/* ═══════════════════════════════════════════════════
   GROWTH ASSESSMENT — step form
═══════════════════════════════════════════════════ */
.ga-page { background:var(--grey); padding:60px 0px 100px; min-height:100vh; }
.ga-shell { max-width:760px; margin:0 auto; }

/* stepper */
.ga-stepper { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:40px; position:relative; }
.ga-stepper::before { content:''; position:absolute; top:15px; left:6%; right:6%; height:1px; background:var(--border); z-index:0; }
.ga-stepper-item { position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:10px; flex:1; }
.ga-stepper-dot { width:30px; height:30px; border-radius:50%; background:var(--white); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:700; color:#999; transition: all .35s ease; }
.ga-stepper-label { font-size:.72rem; color:#999; font-weight:600; letter-spacing:.01em; text-align:center; transition:color .35s ease; }
.ga-stepper-item.done .ga-stepper-dot { background:var(--black); border-color:var(--black); color:var(--green); }
.ga-stepper-item.active .ga-stepper-dot { background:var(--green); border-color:var(--green); color:var(--black); transform:scale(1.12); }
.ga-stepper-item.active .ga-stepper-label { color:var(--black); }
.ga-stepper-item.done .ga-stepper-label { color:#555; }
@media(max-width:640px){ .ga-stepper-label{ display:none; } .ga-stepper{ margin-bottom:28px; } }

/* progress bar (mobile-first simple variant, also shown on intro) */
.ga-progress-track { height:3px; background:var(--border); border-radius:100px; overflow:hidden; margin-bottom:36px; }
.ga-progress-fill { height:100%; width:0%; background:var(--green); border-radius:100px; transition:width .5s cubic-bezier(.22,1,.36,1); }
.ga-progress-meta { display:flex; justify-content:space-between; font-size:.75rem; color:#888; margin-bottom:10px; font-weight:600; }

/* card */
.ga-card { background:var(--white); border:1px solid var(--border); border-radius:28px; padding:56px; position:relative; overflow:hidden; }
@media(max-width:640px){ .ga-card{ padding:32px 24px; border-radius:22px; } }

.ga-step { display:none; }
.ga-step.active { display:block; animation: gaFadeIn .45s ease; }
@keyframes gaFadeIn { from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }

.ga-step-tag { display:inline-flex; align-items:center; gap:8px; font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--green-dark); margin-bottom:16px; }
.ga-step-title { font-size:clamp(1.5rem,3.4vw,2.1rem); font-weight:700; letter-spacing:-.02em; line-height:1.2; margin-bottom:10px; }
.ga-step-sub { font-size:.98rem; color:#666; line-height:1.6; margin-bottom:36px; max-width:520px; }

/* text/select fields */
.ga-field { margin-bottom:22px; }
.ga-field label { display:block; font-size:.8rem; font-weight:700; color:var(--text); margin-bottom:8px; letter-spacing:.01em; }
.ga-field input, .ga-field select {
  width:100%; border:1px solid var(--border); background:var(--grey);
  border-radius:12px; padding:15px 16px; font-size:.98rem; color:var(--black);
  transition:border-color .2s ease, background .2s ease;
}
.ga-field input:focus, .ga-field select:focus { outline:none; border-color:var(--green); background:var(--white); }
.ga-field input::placeholder { color:rgba(0,0,0,.3); }
.ga-field.error input, .ga-field.error select { border-color:#e55; }
.ga-field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:560px){ .ga-field-row{ grid-template-columns:1fr; } }

/* choice pills (radio / checkbox cards) */
.ga-choice-hint { font-size:.8rem; color:#888; margin:-24px 0 20px; font-weight:600; }
.ga-choice-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:8px; }
.ga-choice-grid.single-col { grid-template-columns:1fr; }
@media(max-width:560px){ .ga-choice-grid{ grid-template-columns:1fr; } }

.ga-choice { position:relative; }
.ga-choice input { position:absolute; opacity:0; width:0; height:0; }
.ga-choice label {
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  border:1px solid var(--border); border-radius:14px; padding:16px 18px;
  cursor:pointer; transition: border-color .2s ease, background .2s ease;
  font-size:.94rem; font-weight:600; color:var(--text); background:var(--white);
}
.ga-choice label:hover { border-color:rgba(0,0,0,.25); }
.ga-choice input:checked + label { border-color:var(--green); background:rgba(168,216,50,.08); }
.ga-choice-mark {
  width:20px; height:20px; border-radius:50%; border:1px solid var(--border);
  flex-shrink:0; display:flex; align-items:center; justify-content:center;
  transition: all .2s ease; background:var(--white);
}
.ga-choice input:checked + label .ga-choice-mark { background:var(--green); border-color:var(--green); }
.ga-choice input:checked + label .ga-choice-mark::after { content:'\f00c'; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:.55rem; color:var(--black); }
.ga-choice.checkbox .ga-choice-mark { border-radius:6px; }
.ga-choice.disabled label { opacity:.4; cursor:not-allowed; }

.ga-other-field { margin-top:4px; margin-bottom:20px; display:none; }
.ga-other-field.show { display:block; }

/* nav row */
.ga-nav-row { display:flex; align-items:center; justify-content:space-between; margin-top:40px; padding-top:28px; border-top:1px solid var(--border); }
.ga-back-btn { display:inline-flex; align-items:center; gap:8px; font-size:.9rem; font-weight:600; color:#666; background:none; border:none; cursor:pointer; transition:color .2s ease; }
.ga-back-btn:hover { color:var(--black); }
.ga-back-btn.invisible { visibility:hidden; }
.ga-continue-btn {
  background:var(--black); color:var(--white); font-weight:600; font-size:.96rem;
  padding:15px 28px; border-radius:100px; border:none; display:inline-flex; align-items:center; gap:10px;
  cursor:pointer; transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ga-continue-btn:hover { background:var(--green-dark); transform:translateY(-2px); box-shadow:0 10px 24px rgba(168,216,50,.3); }
.ga-continue-btn:disabled { opacity:.4; cursor:not-allowed; transform:none; box-shadow:none; }

/* intro screen */
.ga-intro { text-align:center; padding:20px 0 8px; }
.ga-intro-badge { display:inline-flex; align-items:center; gap:8px; background:var(--light-bg); color:#4a6a0a; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:8px 16px; border-radius:100px; margin-bottom:28px; }
.ga-intro h1 { font-size:clamp(2rem,5vw,3rem); font-weight:700; letter-spacing:-.03em; line-height:1.12; margin-bottom:14px; }
.ga-intro-sub { font-size:1.15rem; font-weight:600; color:var(--green-dark); margin-bottom:22px; }
.ga-intro p.desc { font-size:1rem; color:#666; line-height:1.75; max-width:480px; margin:0 auto 36px; }
.ga-intro-time { display:flex; align-items:center; justify-content:center; gap:10px; font-size:.85rem; color:#888; margin-bottom:32px; font-weight:600; }
.ga-intro-time i { color:var(--green-dark); }

/* confirmation screen */
.ga-done { text-align:center; padding:12px 0; }
.ga-done-icon { width:72px; height:72px; border-radius:50%; background:var(--black); color:var(--green); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin:0 auto 26px; }
.ga-done h2 { font-size:clamp(1.7rem,3.6vw,2.4rem); font-weight:700; letter-spacing:-.02em; margin-bottom:14px; }
.ga-done p.lead { font-size:1rem; color:#666; line-height:1.75; max-width:480px; margin:0 auto 40px; }
.ga-done-options { display:grid; grid-template-columns:1fr 1fr; gap:18px; text-align:left; }
@media(max-width:640px){ .ga-done-options{ grid-template-columns:1fr; } }
.ga-done-opt { border-radius:20px; padding:28px; border:1px solid var(--border); position:relative; overflow:hidden; cursor:pointer; transition: transform .3s ease, box-shadow .3s ease; }
.ga-done-opt:hover { transform:translateY(-4px); box-shadow:0 20px 40px rgba(0,0,0,.08); }
.ga-done-opt.rec { background:var(--black); border-color:var(--black); }
.ga-done-badge { position:absolute; top:18px; right:18px; font-size:.6rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; background:var(--green); color:var(--black); padding:5px 10px; border-radius:100px; }
.ga-done-opt-icon { width:44px; height:44px; border-radius:12px; background:var(--light-bg); color:var(--green-dark); display:flex; align-items:center; justify-content:center; font-size:1.05rem; margin-bottom:18px; }
.ga-done-opt.rec .ga-done-opt-icon { background:rgba(168,216,50,.14); color:var(--green); }
.ga-done-opt h4 { font-size:1.08rem; font-weight:700; margin-bottom:8px; }
.ga-done-opt.rec h4 { color:#fff; }
.ga-done-opt p { font-size:.86rem; color:#666; line-height:1.55; margin:0 0 18px; }
.ga-done-opt.rec p { color:rgba(255,255,255,.55); }
.ga-done-opt-cta { font-size:.84rem; font-weight:700; display:inline-flex; align-items:center; gap:8px; color:var(--black); }
.ga-done-opt.rec .ga-done-opt-cta { color:var(--green); }

.ga-toast { position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--black); color:#fff; padding:14px 24px; border-radius:100px; font-size:.88rem; font-weight:600; display:flex; align-items:center; gap:10px; opacity:0; pointer-events:none; transition:opacity .3s ease, transform .3s ease; z-index:999; box-shadow:0 20px 40px rgba(0,0,0,.25); }
.ga-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }
.ga-toast i { color:var(--green); }

/* ═══════════════════════════════════════════════════
   EDITORIAL v2 TEMPLATE — shared by about-v2 / service-v2
═══════════════════════════════════════════════════ */

/* hero: centered heading + big photo below */
.edx-hero { padding:120px 0px 0; text-align:center; }
.edx-hero h1 {font-size: clamp(1.9rem,5vw,4.4rem);font-weight:700;letter-spacing:-.03em;line-height:1.2;max-width:640px;margin:0 auto;}
.edx-hero-photo-wrap { max-width:1180px; margin:56px auto 0; padding:0 20px; }
.edx-hero-photo {border-radius: 40px;overflow:hidden;/* aspect-ratio:2.3/1; */}
.edx-hero-photo img { width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:767px){ .edx-hero{ padding:140px 20px 0; } .edx-hero-photo{ aspect-ratio:4/5; } }

/* two-column split row (label-left or heading-left + content-right) */
.edx-row { max-width:1180px; margin:0 auto; padding:96px 20px; display:grid; grid-template-columns:.55fr 1fr; gap:48px; }
@media(max-width:900px){ .edx-row{ grid-template-columns:1fr; gap:20px; padding:64px 20px; } }
.edx-row-label {font-size: 1rem;/* font-weight:700; */letter-spacing: 0;text-transform:uppercase;color: #000000;padding-top:6px;}
.edx-row h2 { font-size:clamp(1.6rem,2.8vw,2.15rem); font-weight:700; letter-spacing:-.03em; line-height:1.22; margin:0; }
.edx-row-body p {font-size: 22px;color: #000000;line-height: 1.4;margin:0 0 18px;max-wi;max-width: 100%;}
.edx-row-body p:last-child { margin-bottom:0; }
.edx-row-body a.hl { color:var(--text); font-weight:700; text-decoration:underline; text-decoration-color:rgba(0,0,0,.25); text-underline-offset:3px; }
.edx-row-body a.hl:hover { text-decoration-color:var(--green-dark); }

/* two overlapping images */
.edx-duo {max-width:1180px;margin:0 auto;padding:0 20px 96px;display:flex;align-items:flex-end;gap: 48px;}
.edx-duo img.a {width: 45%;border-radius:20px;/* aspect-ratio:6/5; *//* object-fit:cover; */}
.edx-duo img.b {width: 45%;border-radius:20px;/* aspect-ratio:4/5; *//* object-fit:cover; */margin-bottom: -100px;box-shadow:0 30px 60px rgba(0,0,0,.12);}
.edx-duo .svc-why-header{
    margin-top: 140px;
    margin-bottom: 0;
    padding: 0;
    grid-template-columns: 2fr 1fr;
}

.edx-row-body .ihero-stats{
    width: 100%;
    margin: 0;
}
.edx-row-body .ab-hero-stat strong{
    font-size: 64px;
    font-weight: 300;
}
@media(max-width:767px){
  .edx-duo{ flex-direction:column; align-items:flex-start; padding-bottom:64px; }
  .edx-duo img.a, .edx-duo img.b{ width:100%; margin-bottom:0; }
  .edx-duo img.b{ margin-top:24px; }
}

/* full width photo */
.edx-full-photo { max-width:1180px; margin:0 auto; padding:0 20px 96px; }
.edx-full-photo-inner { border-radius:26px; overflow:hidden; aspect-ratio:16/8; }
.edx-full-photo-inner img { width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:767px){ .edx-full-photo-inner{ aspect-ratio:4/5; } .edx-full-photo{ padding-bottom:64px; } }

/* pill / logo grid — minimal, unboxed (matches reference) */
.edx-grid-wrap { max-width:1180px; margin:0 auto; padding:0 20px 96px; }
.edx-logo-row { display:grid; grid-template-columns:repeat(4,1fr); row-gap:40px; column-gap:24px; margin-top:8px; }
.edx-logo-chip { display:flex; align-items:center; justify-content:flex-start; padding:0; background:none; border:none; }
.edx-logo-chip img {max-width:150px;max-height: 80px;object-fit:contain;filter:grayscale(1) opacity(.7);transition:filter .3s ease, transform .3s ease;}
.edx-logo-chip:hover img { filter:grayscale(0) opacity(1); transform:translateY(-2px); }
@media(max-width:640px){ .edx-logo-row{ grid-template-columns:repeat(2,1fr); row-gap:32px; } }

.edx-tag-row { display:grid; grid-template-columns:repeat(3,1fr); row-gap:0; column-gap:24px; margin-top:8px; }
.edx-tag-chip { background:none; border:none; border-top:1px solid var(--border); padding:22px 0; text-align:left; font-size:1rem; font-weight:700; letter-spacing:-.01em; color:var(--text); display:flex; align-items:center; transition: color .25s ease, padding-left .25s ease; }
.edx-tag-chip:hover { color:var(--green-dark); padding-left:6px; }
@media(max-width:640px){ .edx-tag-row{ grid-template-columns:repeat(2,1fr); } }

/* testimonial */
.edx-testi { max-width:1180px; margin:0 auto; padding:0 20px 96px; display:grid; grid-template-columns:.55fr 1fr; gap:48px; }
@media(max-width:900px){ .edx-testi{ grid-template-columns:1fr; gap:16px; } }
.edx-testi-label { font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#999; padding-top:4px; }
.edx-testi-client { display:block; font-size:.7rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text); margin-top:6px; }
.edx-testi blockquote { font-size:clamp(1.05rem,1.8vw,1.3rem); font-weight:500; line-height:1.65; letter-spacing:-.01em; color:var(--text); margin:0; font-style:italic; }

/* dark benefits list */
.edx-dark {background:var(--black);padding: 140px 0px;margin-top: 120px;}
.edx-dark-inner { max-width:1180px; margin:0 auto; }
.edx-dark h2 {font-size: clamp(2.2rem, 5vw, 3.8rem);font-weight:700;letter-spacing:-.03em;line-height:1.2;color:#fff;margin-bottom:64px;max-width: 650px;}
.edx-benefit-row {display:grid;grid-template-columns: 56px 1.8fr 2.0fr;gap:32px;align-items: center;padding:32px 0;align-content: center;font-weight: 400;}
.edx-benefit-row:last-child { }
@media(max-width:767px){ .edx-benefit-row{ grid-template-columns:1fr; gap:14px; padding:26px 0; } }
.edx-benefit-icon { width:64px; height:64px; border-radius:16px; border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; color:var(--green); font-size:1.5rem; }
.edx-benefit-label {font-size: 14px;/* font-weight:700; */letter-spacing:.04em;text-transform:uppercase;color:rgba(255,255,255,.9);line-height:1.5;text-align: right;margin-right: 24px;}
.edx-benefit-desc {font-size: 24px;color: #fff;line-height: 1.2;margin:0;}

/* closing row (reuses edx-row spacing but tighter top) */
.edx-closing {padding-top: 0;}

/* ── edx hero eyebrow (for pages that need "Our Services" style label above H1) ── */
.edx-hero-eyebrow { font-size:.85rem; font-weight:600; color:#888; margin-bottom:14px; }

/* ── OUR SOLUTIONS — numbered service rows with Read More (services reference) ── */
.edx-solutions { max-width:1180px; margin:0 auto; padding:96px 20px 40px; }
.edx-solutions h2 { font-size:clamp(2rem,4.4vw,3rem); font-weight:700; letter-spacing:-.03em; line-height:1.1; margin-bottom:56px; }
.edx-sol-list { }
.edx-sol-row {display:grid;grid-template-columns: .7fr 1.3fr;gap:40px;padding:44px 0;}
@media(max-width:767px){ .edx-sol-row{ grid-template-columns:1fr; gap:16px; padding:32px 0; } }
.edx-sol-label {font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color: #000;padding-top:4px;}
.edx-sol-desc {font-size: 22px;color:var(--text);line-height: 1.4;max-width: 480px;margin-bottom: 24px;}
.edx-sol-btn {display:inline-flex;align-items:center;gap:8px;border:1px solid var(--border);border-radius:100px;padding: 18px 30px;font-size: 1.2rem;font-weight: 400;color:var(--text);text-decoration:none;transition: background .25s ease, color .25s ease, border-color .25s ease;}
.edx-sol-btn:hover { background:var(--black); color:#fff; border-color:var(--black); }

/* ── Rope-line: interactive cursor-bending divider ── */
.rope-line { position:relative; width:100%; height:150px; margin:-59px 0; z-index:2; }
.rope-line canvas { position:absolute; left:0; top:0; width:100%; height:100%; display:block; }
@media(max-width:640px){ .rope-line{ height:90px; margin:-33px 0; } }
/* ─────────────────────────────────────
   404 — ERROR PAGE
───────────────────────────────────── */
.err-404 {
  padding: 160px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  min-height: 78vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.err-404::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none;
}
.err-404-num {
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .85;
  color: var(--text);
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.err-404-num span {
  color: var(--green);
  -webkit-text-stroke: 2px var(--black);
  position: relative;
  display: inline-block;
}
.err-404-num span::after{
  content:'';
  position:absolute; inset:10%;
  background: var(--green);
  border-radius:50%;
  z-index:-1;
}
.err-404 h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -.03em;
  margin: 18px 0 16px;
  position: relative; z-index: 1;
}
.err-404-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.55;
  position: relative; z-index: 1;
}
.err-404-actions {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
@media(max-width:767px){ .err-404{ padding:130px 20px 72px; } }

/* ─────────────────────────────────────
   PROBLEM / TRAP CARDS  (dark photo-card grid)
───────────────────────────────────── */
.trap-section { background: #000; padding: 100px 0; position: relative; overflow: hidden; }
.trap-section .container { max-width: 1060px; margin: 0 auto; }
.trap-section .fade-up { opacity: 1;}
.trap-eyebrow { color: rgba(255,255,255,.45); }
.trap-h {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--white);
  letter-spacing: -.03em;
  max-width: 620px;
  margin-bottom: 56px;
}
.trap-h em { font-style: normal; color: var(--green); }
.cb-summary-cards {
        grid-template-columns: repeat(2, 30rem);
        gap: 5rem;
        display: grid;
        justify-content: space-between; 
    }
.trap-grid:last-child {
        margin-top: 15rem;
    }
.trap-grid {
      display: grid;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    gap: 6rem;
}
.trap-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 600px;
  width: 480px;
  background-position: center;
  isolation: isolate;
  transition: transform .35s ease;
}
.trap-card:hover { transform: translateY(-4px); }
.trap-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.88) 100%);
  z-index: 0;
}
.trap-card.tall {/* grid-row: span 2; *//* min-height: 500px; */}
.trap-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 30px; z-index: 1; }
.trap-card-body h5 { color: var(--white); font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.trap-card-body p { color: rgba(255,255,255,.62); font-size: .95rem; line-height: 1.55; margin: 0; max-width: 380px; }
@media(max-width:767px){
  .trap-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 2rem;}
  .trap-card.tall { grid-row: auto;  }
  .trap-card{    min-height: 480px;  width: 360px;}
  .trap-card-body{ padding: 24px;}
  .trap-grid:last-child { margin-top: 0;}
  
}

/* ─────────────────────────────────────
   FAQ PAGE
───────────────────────────────────── */
.faq-page-list { max-width: 800px; margin: 0 auto; }
.faq-page-list .faq-item { background: var(--white); }
.faq-cta-strip {
  max-width: 800px; margin: 56px auto 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--grey);
}
.faq-cta-strip h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 4px; }
.faq-cta-strip p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ─────────────────────────────────────
   CONTACT PAGE V2  (breadcrumb + info columns + form + map)
───────────────────────────────────── */
.ct2-wrap { padding: 48px 0 0; }
.ct2-breadcrumb { display:flex; align-items:center; gap:8px; font-size:.92rem; margin-bottom:56px; }
.ct2-breadcrumb a { color: var(--text); font-weight:700; text-decoration:none; }
.ct2-breadcrumb i { color: rgba(0,0,0,.35); font-size:.72rem; }
.ct2-breadcrumb span { color: var(--muted); opacity:.55; }

.ct2-top { display:grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 40px; margin-bottom: 64px; }
.ct2-h { font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing:-.03em; margin-bottom: 22px; }
.ct2-label { font-size: .8rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color: rgba(0,0,0,.4); margin-bottom: 6px; }
.ct2-value { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.ct2-addr-name { font-weight: 700; font-size: 1.02rem; margin-bottom: 10px; line-height: 1.4; }
.ct2-addr-body { color: var(--muted); opacity:.65; line-height: 1.7; font-size: .98rem; }
.ct2-social-list { display:flex; flex-direction:column; gap: 10px; }
.ct2-social-list a { font-weight: 700; color: var(--text); text-decoration:none; font-size: 1.02rem; }
.ct2-social-list a:hover { color: var(--green-dark); }
.ct2-divider { height:1px; background: var(--border); margin-bottom: 56px; }

.ct2-form-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px 28px; margin-bottom: 40px; }
.ct2-form-grid .field-wrap.full { grid-column: 1 / -1; }
.ct2-form-grid textarea.field { min-height: 130px; resize: vertical; }
.ct2-budget-warning { display:flex; align-items:flex-start; gap: 8px; color: #d3402f; font-size: .85rem; line-height: 1.55; margin-top: 10px; }
.ct2-budget-warning i { margin-top: 2px; flex-shrink: 0; }
.ct2-submit-row { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 18px; margin-bottom: 90px; }

.ct2-map-wrap { position: relative; width: 100%; height: 460px; overflow: hidden; }
.ct2-map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); }
.ct2-map-card {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: var(--white); border-radius: 14px; padding: 20px 22px;
  max-width: 300px; box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.ct2-map-card-top { display:flex; align-items:flex-start; justify-content:space-between; gap: 10px; margin-bottom: 12px; }
.ct2-map-card-top h6 { font-size: .92rem; font-weight: 700; line-height: 1.4; margin: 0; }
.ct2-map-card-actions { display:flex; gap: 8px; flex-shrink: 0; }
.ct2-map-card-actions a {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center; color: var(--text); font-size: .78rem;
  text-decoration:none;
}
.ct2-map-card-actions a:hover { background: var(--grey); }
.ct2-map-card p { font-size: .82rem; color: var(--muted); opacity:.65; line-height: 1.6; margin: 0; }

@media(max-width: 991px){
  .ct2-top { grid-template-columns: 1fr 1fr; }
  .ct2-top .ct2-col-social { grid-column: 1 / -1; }
  .ct2-form-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 767px){
  .ct2-wrap { padding-top: 120px; }
  .ct2-top { grid-template-columns: 1fr; gap: 32px; }
  .ct2-form-grid { grid-template-columns: 1fr; }
  .ct2-map-wrap { height: 360px; }
  .ct2-map-card { left: 14px; right: 14px; top: 14px; max-width: none; }
}

/* ─────────────────────────────────────
   FIXED WHATSAPP FLOAT BUTTON
───────────────────────────────────── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display:flex; align-items:center; justify-content:center;
  font-size: 30px; text-decoration:none;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color:#fff; }
.whatsapp-float::before{
  content:'';
  position:absolute; inset:-6px;
  border-radius:50%;
  border:2px solid #25D366;
  opacity:.55;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform:scale(.9); opacity:.55; }
  70%{ transform:scale(1.35); opacity:0; }
  100%{ opacity:0; }
}


@media (max-width: 1366px) {
    .decade-section h2 {  font-size: clamp(2rem, 4.5vw, 2.8rem);}
    .ab-hero h1 {font-size: clamp(3.5rem, 8vw, 5.6rem);}
    .step-card {    margin: 0 8px; padding:28px 20px; }
}

.cb-overview-links {
    margin: 2rem -1rem 0 -1rem;
}
.cb-overview-link {
    position: relative;
    display: inline-block;
    padding: .5rem 0;
    margin: 0 1rem;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    color: #000;
}

.cb-overview-link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transition: transform 1s cubic-bezier(.19, 1, .22, 1);
}


/* ─────────────────────────────────────
   MEGA DROPDOWN NAV
───────────────────────────────────── */
.mega-parent { position: relative; }
.mega-trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.mega-trigger .mega-toggle-icon { font-size: .62rem; transition: transform .25s ease, color .25s ease; }
.mega-parent:hover .mega-toggle-icon,
.mega-parent.open .mega-toggle-icon { transform: rotate(180deg); color: var(--green-dark); }

.mega-panel {
  position: fixed; left: 0; right: 0; top: 78px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 28px 56px rgba(0,0,0,.10);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 998;
}
.mega-parent:hover .mega-panel,
.mega-parent.open .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-panel-inner { display: flex; align-items: stretch; }
.mega-col-main { flex: 1 1 66%; padding: 48px 60px 48px 0; }
.mega-heading { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.mega-heading a { font-size: 1.7rem; font-weight: 700; letter-spacing: -.03em; color: var(--text); display: inline-flex; align-items: center; gap: 10px; }
.mega-heading a i { color: var(--green-dark); font-size: 1.05rem; transition: transform .2s ease; }
.mega-heading a:hover i { transform: translateX(4px); }
.mega-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 60px; }
.mega-links-col { display: flex; flex-direction: column; }
.mega-links-col a { padding: 11px 0; color: var(--text); font-size: 1rem; border-bottom: 1px solid transparent; }
.mega-links-col a:hover { color: var(--green-dark); }

.mega-col-featured { flex: 0 0 34%; background: var(--grey); padding: 48px 44px; }
.mega-featured-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(0,0,0,.4); margin-bottom: 22px; }
.mega-featured-item { margin-bottom: 26px; text-decoration: none; display: block; }
.mega-featured-item:last-child { margin-bottom: 0; }
.mega-featured-item h6 { font-weight: 700; font-size: 1.02rem; margin-bottom: 8px; color: var(--text); }
.mega-featured-item p { font-size: .88rem; color: var(--muted); opacity: .65; line-height: 1.6; margin: 0; }
.mega-featured-item:hover h6 { color: var(--green-dark); }

@media (max-width: 991px) {
  .mega-panel { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; border-top: none; margin: 8px 0; }
  .mega-parent.open .mega-panel { display: block; }
  .mega-panel-inner { flex-direction: column; }
  .mega-col-main { padding: 12px 0; }
  .mega-col-featured { padding: 20px; border-radius: 12px; }
}
@media (max-width: 576px) {
  .mega-links-grid { grid-template-columns: 1fr; gap: 0; }
  .mega-heading a { font-size: 1.35rem; }
}

/* ─────────────────────────────────────
   INSIGHTS — listing + detail
───────────────────────────────────── */

.ins-hero { padding: 150px 0 40px; }
.ins-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; letter-spacing: -.02em; }
.ins-hero-rule { height: 1px; background: var(--text); margin-top: 34px; }

.ins-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  margin: 48px 0 70px;
  text-decoration: none; color: inherit;
}
.ins-featured-img { position: relative; min-height: 420px; background-size: cover; background-position: center; }
.ins-featured-body { padding: 48px 50px; display: flex; flex-direction: column; justify-content: center; }
.ins-eyebrow { font-size: .82rem; color: var(--muted); opacity: .6; margin-bottom: 14px; }
.ins-featured-body h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 600; line-height: 1.25; margin-bottom: 20px; }
.ins-featured-body h2 i { color: var(--green-dark); font-size: .8em; margin-left: 6px; }
.ins-featured-body p { font-size: 1rem; color: #444; line-height: 1.7; }
.ins-featured-body p em { color: #444; }
.ins-featured:hover h2 { color: var(--green-dark); }

.ins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 90px; }
.ins-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: block; transition: box-shadow .25s ease, transform .25s ease; }
.ins-card:hover { box-shadow: 0 20px 44px rgba(0,0,0,.08); transform: translateY(-3px); }
.ins-card-img { height: 260px; background-size: cover; background-position: center; }
.ins-card-body { padding: 30px 32px 36px; }
.ins-card-body h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.35; margin-bottom: 14px; }
.ins-card-body h3 i { color: var(--green-dark); font-size: .78em; margin-left: 4px; }
.ins-card-body p { font-size: .92rem; color: #555; line-height: 1.65; }
.ins-card:hover h3 { color: var(--green-dark); }
@media(max-width: 900px){
  .ins-featured{ grid-template-columns: 1fr; }
  .ins-featured-img{ min-height: 280px; }
  .ins-grid{ grid-template-columns: 1fr; }
  .ins-hero{ padding-top: 120px; }
}

/* Detail page */
.ind-hero {
  position: relative; min-height: 520px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  padding: 60px 0 60px;
}
.ind-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,15,30,.15) 0%, rgba(8,12,25,.82) 100%); }
.ind-hero-inner { position: relative; z-index: 1; color: #fff; }
.ind-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 600; line-height: 1.2; margin-bottom: 18px; max-width: 820px; }
.ind-hero-meta { font-size: .95rem; color: rgba(255,255,255,.8); }

.ind-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 40px 0 32px; border-bottom: 1px solid var(--border); }
.ind-byline { font-size: .95rem; color: var(--text); line-height: 1.6; }
.ind-byline a { color: var(--text); text-decoration: underline; }
.ind-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.ind-action { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .78rem; color: var(--text); }
.ind-action i { font-size: 1.05rem; }
.ind-summarize { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 30px; padding: 10px 20px; font-size: .9rem; font-weight: 600; color: #2f5fd6; }
.ind-summarize:hover { background: var(--grey); }

.ind-body-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 70px; padding: 48px 0 100px; }
.ind-lede { font-size: 1.25rem; line-height: 1.7; color: var(--text); margin-bottom: 8px; }
.ind-lede::first-letter { font-size: 3.4rem; font-weight: 700; float: left; line-height: .8; padding: 6px 8px 0 0; }
.ind-body h2 { font-size: 1.7rem; font-weight: 600; margin: 44px 0 18px; }
.ind-body p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 20px; }
.ind-sidebar { border-top: 2px solid var(--text); padding-top: 18px; height: fit-content; }
.ind-sidebar-label { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.ind-sidebar a { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: #2f5fd6; }
@media(max-width: 900px){
  .ind-body-wrap{ grid-template-columns: 1fr; }
  .ind-hero{ min-height: 380px; }
}

/* — vertical / video card grid — */
.pp-vcard-grid { display:grid; gap:80px; max-width:1180px; margin:0 auto 16px; padding:0 20px; }
.pp-vcard-grid.cols-2 { grid-template-columns:1fr 1fr; }
.pp-vcard-grid.cols-3 { grid-template-columns:repeat(3,1fr); }
@media(max-width:767px){
  .pp-vcard-grid.cols-2, .pp-vcard-grid.cols-3 { grid-template-columns:1fr; }
}

.pp-vcard-main p{ font-size: 20px; color: #000; margin-top: 12px;}
.pp-vcard-main:nth-child(2), .pp-vcard-grid.cols-2 div:nth-child(2){ margin-top: 6rem;}


.pp-vcard {
  border-radius:24px; overflow:hidden; position:relative;
  background:var(--dark); aspect-ratio:4/3;
  box-shadow:0 30px 60px rgba(0,0,0,.06);
}
.pp-vcard.tall { aspect-ratio:3/4; }
.pp-vcard.wide { aspect-ratio:16/8; }
.pp-vcard video { width:100%; height:100%; object-fit:cover; display:block; }

.pp-vcard-cap {margin-top:16px;font-size: 22px;color: #353535;line-height:1.55;max-width:640px;}
.pp-vcard-cap.span-2 { grid-column:1/-1; margin-top:-8px; }

/* — ripple border badge (rotating dashed ring) — */
.pp-ripple {
  width:58px; height:58px; border-radius:50%; position:relative;
  display:flex; align-items:center; justify-content:center;
  background:var(--light-bg); color:var(--green-dark); font-size:1rem;
  flex-shrink:0; box-shadow:0 10px 26px rgba(0,0,0,.08);
}
.pp-ripple::after {
  content:''; position:absolute; inset:-8px; border-radius:50%;
  border:1.5px dashed rgba(143,189,26,.35);
  animation: spin 12s linear infinite;
}
.pp-ripple::before {
  content:''; position:absolute; inset:-17px; border-radius:50%;
  border:1px dashed rgba(143,189,26,.16);
  animation: spin 20s linear infinite reverse;
}
.pp-ripple-float { position:absolute; z-index:2; display:none; }
@media(min-width:992px){ .pp-ripple-float{ display:block; } }

/* — dark stat strip section wrapper — */
.pp-stats-section { background:var(--black); padding:88px 0; }

/* — allow video inside the existing full-bleed photo block — */
.edx-full-photo-inner video { width:100%; height:100%; object-fit:cover; display:block; }

@media(max-width:767px){ 
    
.whatsapp-float{ width:52px; height:52px; font-size:26px; right:24px; bottom:24px; } 
.svc-drawer, .svc-drawer-overlay{ display:none;}
#videoModal .modal-dialog{ max-width: 360px; margin: 0 auto; }
body.modal-open { padding: 0px !important;}
#enquiryModal .modal-dialog {  max-width: 360px;}
.reveal-right.in { overflow: hidden;}
#programs{ overflow-x: hidden;}
#programs .row, #about .row{ margin: 0 -12px;}
.hero-video-frame{ border-radius: 16px;}
.cb-summary-cards {gap: 2rem;display: flex;justify-content: start;flex-direction: column;}

.m-edx .svc-why-header {margin-top: 40px;grid-template-columns: 1fr;}
.pp-vcard-main:nth-child(2), .pp-vcard-grid.cols-2 div:nth-child(2) {margin-top: 0;}

}
