  :root {
    --green-950: #052e1c;
    --green-900: #0b3e26;
    --green-850: #0c5031;
    --green-800: #0b5e33;
    --green-700: #0f7a41;
    --green-600: #189951;
    --green-400: #57d98c;
    --green-300: #8fe6b3;
    --mint-100: #e9f5ee;
    --mint-050: #f4faf6;
    --white: #ffffff;
    --off-white: #f6f8f5;
    --ink: #0a160f;
    --ink-soft: rgba(10, 22, 15, .64);
    --ink-faint: rgba(10, 22, 15, .4);
    --line: rgba(10, 22, 15, .1);
    --line-dark: rgba(255, 255, 255, .14);
    --shadow-lg: 0 30px 60px -25px rgba(5, 46, 28, .35);
    --ease: cubic-bezier(.16, .8, .24, 1);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  /* ---------- SCROLLBAR ---------- */
  ::-webkit-scrollbar {
    width: 14px;
  }

  ::-webkit-scrollbar-track {
    background: var(--off-white);
  }

  ::-webkit-scrollbar-thumb {
    background-color: var(--green-700);
    border-radius: 10px;
    border: 4px solid var(--off-white);
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--green-800);
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--off-white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img,
  svg {
    display: block;
    max-width: 100%;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul {
    list-style: none;
  }

  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important;
    }
  }

  :focus-visible {
    outline: 2px solid var(--green-600);
    outline-offset: 3px;
    border-radius: 2px;
  }

  .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-600);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--green-600);
    border-radius: 1px;
    transform: rotate(45deg);
    flex: none;
  }

  .section-head {
    max-width: 640px;
  }

  .section-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-top: 14px;
  }

  .section-head p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  section {
    padding: 120px 0;
  }

  @media(max-width:768px) {
    section {
      padding: 80px 0;
    }

    .wrap {
      padding: 0 22px;
    }
  }

  /* ---------- NAV ---------- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  }

  header.solid {
    background: rgba(6, 44, 26, .86);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    padding: 14px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .brand-mark {
    height: 34px;
    width: auto;
    flex: none;
  }

  .brand-word {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .02em;
    color: var(--white);
  }

  .brand-word span {
    color: var(--green-300);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    position: relative;
    padding: 4px 0;
    transition: color .25s var(--ease);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--green-300);
    transition: width .3s var(--ease);
  }

  .nav-links a:hover {
    color: #fff;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-300);
    color: var(--green-950);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    transition: transform .3s var(--ease), background .3s var(--ease);
  }

  .nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    position: relative;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s var(--ease);
  }

  .nav-toggle span {
    top: 16px;
  }

  .nav-toggle span::before {
    top: -7px;
  }

  .nav-toggle span::after {
    top: 7px;
  }

  @media(max-width:900px) {
    .nav-links {
      position: fixed;
      inset: 0 0 auto 0;
      top: 64px;
      background: var(--green-950);
      flex-direction: column;
      padding: 30px 28px 40px;
      gap: 22px;
      transform: translateY(-140%);
      transition: transform .45s var(--ease);
    }

    .nav-links.open {
      transform: translateY(0);
    }

    .nav-toggle {
      display: block;
    }

    .nav-cta {
      display: none;
    }
  }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(120% 100% at 15% -10%, #0e6a3a 0%, var(--green-900) 45%, var(--green-950) 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 120px;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 46, 28, 0.3);
    /* very light dark green wash */
    z-index: 1;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(80% 65% at 70% 35%, #000 0%, transparent 75%);
    mask-image: radial-gradient(80% 65% at 70% 35%, #000 0%, transparent 75%);
    z-index: 2;
  }

  .hero-pixels {
    position: absolute;
    right: -4%;
    top: 14%;
    width: 46%;
    max-width: 560px;
    opacity: .9;
    z-index: 2;
  }

  .hero-pixels .cell {
    fill: var(--green-400);
    opacity: 0;
    animation: pixelIn .7s var(--ease) forwards;
  }

  @keyframes pixelIn {
    to {
      opacity: 1;
    }
  }

  .hero-inner {
    position: relative;
    z-index: 3;
  }

  .hero .eyebrow {
    color: var(--green-300);
  }

  .hero .eyebrow::before {
    background: var(--green-300);
  }

  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(42px, 7.2vw, 92px);
    line-height: .98;
    letter-spacing: -.02em;
    margin-top: 22px;
    max-width: 15ch;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--green-300);
  }

  .hero-sub {
    margin-top: 26px;
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, .72);
    max-width: 44ch;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 42px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 600;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  }

  .btn-primary {
    background: var(--green-300);
    color: var(--green-950);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -12px rgba(87, 217, 140, .5);
  }

  .btn-ghost {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
  }

  .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .06);
    transform: translateY(-2px);
  }

  .btn-dark {
    background: var(--green-900);
    color: #fff;
  }

  .btn-dark:hover {
    background: var(--green-950);
    transform: translateY(-2px);
  }

  .btn svg {
    width: 15px;
    height: 15px;
    transition: transform .35s var(--ease);
  }

  .btn:hover svg {
    transform: translate(3px, -3px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 38px;
    left: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
  }

  .hero-scroll .line {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .4);
    position: relative;
    overflow: hidden;
  }

  .hero-scroll .line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--green-300);
    animation: scrollLine 2.2s var(--ease) infinite;
  }

  @keyframes scrollLine {
    to {
      left: 100%;
    }
  }

  /* ---------- MARQUEE ---------- */
  .marquee {
    background: var(--green-950);
    color: var(--green-300);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .marquee-track {
    display: inline-flex;
    animation: marquee 32s linear infinite;
  }

  .marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .03em;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, .85);
  }

  .marquee-track span::after {
    content: '✦';
    color: var(--green-400);
    font-size: 11px;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ---------- TRANSFORM / SIGNATURE SLIDER ---------- */
  .transform-section {
    background: var(--white);
  }

  .transform-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
  }

  @media(max-width:960px) {
    .transform-layout {
      grid-template-columns: 1fr;
    }
  }

  .compare {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3.1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #111;
    touch-action: none;
    user-select: none;
  }

  .compare-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
  }

  .compare-before {
    background: linear-gradient(150deg, #cfd3ce, #a7ada4);
  }

  .compare-after {
    background: linear-gradient(150deg, var(--green-700), var(--green-950));
    clip-path: inset(0 0 0 50%);
  }

  .compare-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-flex;
    width: fit-content;
  }

  .compare-before .compare-tag {
    background: rgba(10, 22, 15, .14);
    color: #3a3f3a;
  }

  .compare-after .compare-tag {
    background: rgba(255, 255, 255, .16);
    color: #fff;
  }

  .compare-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 22px;
    margin-top: 12px;
  }

  .compare-before .compare-title {
    color: #43483f;
  }

  .compare-after .compare-title {
    color: #fff;
  }

  .compare-mock {
    position: absolute;
    top: 26px;
    right: 26px;
    left: 26px;
    bottom: 96px;
    border-radius: 12px;
  }

  .compare-before .compare-mock {
    background: repeating-linear-gradient(135deg, #bcc1b8 0 14px, #c8cdc4 14px 28px);
  }

  .compare-after .compare-mock {
    background: linear-gradient(160deg, rgba(87, 217, 140, .35), rgba(255, 255, 255, .06));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .compare-after .compare-mock svg {
    width: 34%;
    opacity: .9;
  }

  .compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 5;
  }

  .compare-handle .grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  }

  .compare-handle:hover .grip {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
  }

  .compare-handle:active .grip {
    transform: translate(-50%, -50%) scale(0.95);
  }

  .compare-handle .grip::before,
  .compare-handle .grip::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }

  .compare-handle .grip::before {
    border-right: 7px solid var(--green-800);
  }

  .compare-handle .grip::after {
    border-left: 7px solid var(--green-800);
  }

  .transform-copy .eyebrow {
    margin-bottom: 0;
  }

  .transform-copy h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-top: 14px;
  }

  .transform-copy p {
    margin-top: 16px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 46ch;
  }

  .transform-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .transform-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--ink);
  }

  .transform-list svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 2px;
    color: var(--green-600);
  }

  .drag-hint {
    margin-top: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--ink-faint);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .drag-hint svg {
    width: 15px;
    height: 15px;
  }

  /* ---------- SERVICES ---------- */
  .services {
    background: var(--off-white);
  }

  .service-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
  }

  @media(max-width:900px) {
    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:600px) {
    .service-grid {
      grid-template-columns: 1fr;
    }
  }

  .service-card {
    background: var(--white);
    padding: 38px 32px;
    transition: background .35s var(--ease);
    position: relative;
  }

  .service-card:hover {
    background: var(--mint-050);
  }

  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--mint-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
  }

  .service-icon svg {
    width: 22px;
    height: 22px;
  }

  .service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 19px;
    margin-top: 22px;
  }

  .service-card p {
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
  }

  .service-num {
    position: absolute;
    top: 34px;
    right: 32px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--ink-faint);
  }

  /* ---------- PROCESS ---------- */
  .process {
    background: var(--green-950);
    color: #fff;
  }

  .process .eyebrow {
    color: var(--green-300);
  }

  .process .eyebrow::before {
    background: var(--green-300);
  }

  .process .section-head h2 {
    color: #fff;
  }

  .process .section-head p {
    color: rgba(255, 255, 255, .62);
  }

  .process-list {
    margin-top: 60px;
    border-top: 1px solid var(--line-dark);
  }

  .process-item {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  @media(max-width:760px) {
    .process-item {
      grid-template-columns: 56px 1fr;
    }

    .process-item .process-desc {
      grid-column: 2;
    }
  }

  .process-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--green-400);
    padding-top: 4px;
  }

  .process-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 24px;
  }

  .process-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
  }

  /* ---------- WORK ---------- */
  .work {
    background: var(--white);
  }

  .work-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
  }

  .work-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  @media(max-width:900px) {
    .work-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:600px) {
    .work-grid {
      grid-template-columns: 1fr;
    }
  }

  .work-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: transform .5s var(--ease);
  }

  .work-card:hover {
    transform: translateY(-6px);
  }

  .work-cover {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .work-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 30%, rgba(0, 0, 0, .55));
    z-index: 1;
  }

  .work-tag {
    position: relative;
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .85;
  }

  .work-name {
    position: relative;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 6px;
  }

  /* ---------- INDUSTRIES ---------- */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 54px;
  }

  @media(max-width: 1024px) {
    .industries-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media(max-width: 768px) {
    .industries-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media(max-width: 480px) {
    .industries-grid {
      grid-template-columns: 1fr;
    }
  }

  .industry-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-800), var(--green-600));
    opacity: 0;
    transition: opacity .35s var(--ease);
  }

  .industry-card:hover::before {
    opacity: 1;
  }

  .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(18, 61, 39, 0.06);
    border-color: transparent;
  }

  .industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--mint-050);
    color: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .35s var(--ease);
  }

  .industry-card:hover .industry-icon {
    background: var(--green-900);
    color: var(--white);
    transform: scale(1.1);
  }

  .industry-icon svg {
    width: 24px;
    height: 24px;
  }

  .industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    margin: 0;
    transition: color .35s var(--ease);
  }

  .industry-card:hover h3 {
    color: var(--green-900);
  }

  /* ---------- STATS ---------- */
  .stats {
    background: var(--mint-100);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  @media(max-width:760px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 52px);
    color: var(--green-800);
    letter-spacing: -.02em;
  }

  .stat-label {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--ink-soft);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .03em;
  }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial {
    background: var(--white);
  }

  .quote-block {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .quote-block svg {
    width: 36px;
    height: 36px;
    color: var(--green-300);
    margin: 0 auto 22px;
  }

  .quote-block p {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--ink);
  }

  .quote-author {
    margin-top: 26px;
    font-size: 14px;
    color: var(--ink-soft);
  }

  .quote-author strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* ---------- CTA ---------- */
  .cta {
    background: radial-gradient(120% 140% at 80% 0%, #0e6a3a 0%, var(--green-900) 45%, var(--green-950) 100%);
    color: #fff;
  }

  .cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4.5vw, 54px);
    letter-spacing: -.02em;
    line-height: 1.08;
    margin-top: 14px;
  }

  /* ---------- CONTACT FORM ---------- */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    text-align: left;
    align-items: flex-start;
  }

  @media(max-width: 992px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 50px;
    }
  }

  .contact-info {
    display: flex;
    flex-direction: column;
  }

  .contact-info p {
    text-align: left;
    margin-top: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.6;
  }

  .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
  }

  .contact-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s var(--ease);
  }

  .contact-link:hover {
    color: var(--green-300);
  }

  .contact-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
  }

  .contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  @media(max-width: 576px) {
    .contact-form-container {
      padding: 24px 20px;
    }
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  @media(max-width: 576px) {
    .form-row {
      grid-template-columns: 1fr;
    }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    outline: none;
    transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
    width: 100%;
  }

  .form-group input:hover,
  .form-group textarea:hover,
  .form-group select:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--green-300);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(143, 230, 179, 0.15);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  /* Custom dropdown arrow styling */
  .select-wrapper {
    position: relative;
    width: 100%;
  }

  .select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
  }

  .form-group select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
  }

  .form-group select option {
    background-color: var(--green-950);
    color: #fff;
  }

  .btn-submit {
    align-self: flex-start;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    width: auto;
  }

  @media(max-width: 576px) {
    .btn-submit {
      width: 100%;
      justify-content: center;
    }
  }

  .form-status {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    margin-top: 10px;
    display: none;
    padding: 14px;
    border-radius: 8px;
    line-height: 1.5;
    text-align: center;
    animation: fadeInStatus 0.3s var(--ease) forwards;
  }

  @keyframes fadeInStatus {
    from {
      opacity: 0;
      transform: translateY(6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form-status.success {
    display: block;
    background: rgba(87, 217, 140, 0.08);
    color: var(--green-300);
    border: 1px solid rgba(87, 217, 140, 0.25);
  }

  .form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--green-950);
    color: rgba(255, 255, 255, .7);
    padding: 70px 0 30px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
  }

  @media(max-width:760px) {
    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
  }

  .footer-brand .brand-word {
    font-size: 19px;
  }

  .footer-tagline {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 32ch;
    color: rgba(255, 255, 255, .55);
  }

  .footer-col h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 16px;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .footer-col a {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .75);
    transition: color .25s;
  }

  .footer-col a:hover {
    color: var(--green-300);
  }

  .footer-bottom {
    margin-top: 60px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
  }

  .footer-mostech {
    font-family: 'IBM Plex Mono', monospace;
    font-style: normal;
    letter-spacing: .02em;
  }

  /* ---------- REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
  }

  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }