﻿ @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: clip; }

    :root {
      --bg: #fafafa;
      --surface: #ffffff;
      --text-main: #1a1a1a;
      --text-muted: #616161;
      --border-soft: #e0e0e0;
      --font-corporate: 'Manrope', 'Outfit', sans-serif;
      --type-section-title: clamp(1.8rem, 3vw, 2.5rem);
      --type-section-body: 1.0625rem;
      --type-card-title: 18px;
      --type-card-body: 13px;
      --weight-section-title: 600;
      --weight-card-title: 600;
      --tracking-title: 0.006em;
      --tracking-card-title: -0.004em;
      --tracking-body: 0.002em;
      --line-body: 1.65;
      --navy: #ffffff;
      --navy-light: #f5f5f5;
      --gold: #1a1a1a;
      --gold-light: #333333;
      --gold-dim: #707070;
      --ice: #1a1a1a;
      --ice-dim: #707070;
      --border: rgba(0, 0, 0, 0.12);
      --main-inline-pad: 5rem;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-main);
      background-color: var(--bg);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: clip;
    }

    a { color: inherit; }

    /* ── Header / Nav ── */
    .site-header { background: transparent; }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1.25rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
      background: var(--bg);
      position: sticky;
      top: 0;
      z-index: 100;
      font-family: 'Outfit', sans-serif;
    }

    .nav-container {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      position: relative;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .brand-logo {
      width: auto; height: 32px;
      max-width: 160px;
      object-fit: contain;
      display: block;
    }

    .nav-logo {
      width: 32px; height: 32px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .nav-logo::after {
      content: '';
      width: 14px; height: 14px;
      background: var(--navy);
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      position: absolute;
    }

    .brand-name {
      font-family: 'DM Serif Display', serif;
      font-size: 17px;
      color: var(--ice);
      letter-spacing: 0.02em;
    }

    .brand-tag {
      font-size: 10px;
      color: var(--gold);
      letter-spacing: 0.18em;
      font-weight: 500;
      text-transform: uppercase;
      font-family: 'DM Mono', monospace;
    }

    .nav-collapse {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
      min-width: 0;
      margin-left: 1.25rem;
    }

    .nav-primary {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .nav-primary a {
      font-size: 14px;
      color: #1a1a1a;
      text-decoration: none;
      letter-spacing: 0.05em;
      font-weight: 400;
      cursor: pointer;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
    }

    .nav-primary a:hover { color: #000000; }
    .with-caret::after { content: none; }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      list-style: none;
      margin-left: auto;
    }

    .nav-actions .text-link {
      padding: 7px 16px;
      border: 1px solid rgba(45, 106, 45, 0.55);
      background: transparent;
      color: #2d6a2d;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      letter-spacing: 0.04em;
      transition: all 0.2s;
      text-decoration: none;
    }

    .nav-actions .demo-link {
      padding: 7px 12px;
      border: none;
      background: transparent;
      color: var(--ice-dim);
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      letter-spacing: 0.04em;
      transition: color 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .nav-actions .demo-link:hover { color: var(--ice); }

    .nav-actions .text-link:hover {
      border-color: rgba(45, 106, 45, 0.72);
      color: #245624;
    }

    .signup-link {
      padding: 7px 18px;
      background: #2d6a2d;
      border: none;
      color: #ffffff;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: all 0.2s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .signup-link:hover { background: #245624; }

    .nav-primary a:focus-visible,
    .nav-actions a:focus-visible,
    .nav-toggle:focus-visible {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
    }

    .nav-toggle {
      width: 42px; height: 42px;
      border: 0.5px solid var(--border);
      border-radius: 6px;
      background: transparent;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .nav-toggle span {
      width: 18px; height: 2px;
      background-color: var(--ice);
      border-radius: 999px;
      transition: transform 220ms ease, opacity 220ms ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Main ── */
    main {
      flex: 1;
      width: 100%;
      margin: 0 auto;
      padding: 0 var(--main-inline-pad) 10rem;
    }

    .container { width: 100%; }

    .home-section {
      position: relative;
      width: 100dvw;
      max-width: 100dvw;
      margin-left: calc(50% - 50dvw);
      margin-right: calc(50% - 50dvw);
    }

    /* ══════════════════════════════════════════
       HERO SECTION
       ══════════════════════════════════════════ */

    /* Full-width outer shell — holds the background */
    .hero-section {
      position: relative;
      width: 100%;
      min-height: calc(100vh - 5.5rem);
      min-height: calc(100dvh - 5.5rem);
      overflow: hidden;
      isolation: isolate;
    }

    .hero-section.active { display: block; }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 100px;
      background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }

    /* ── Background (full-width, lives in hero-section) ── */
    .bg-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .bg-topo {
      position: absolute;
      inset: -5%;
      width: 110%; height: 110%;
      opacity: 0.09;
      color: #1a1a1a;
      animation: topo-drift 90s linear infinite;
    }

    @keyframes topo-drift {
      0%   { transform: translate(0, 0); }
      100% { transform: translate(-40px, -30px); }
    }

    .bg-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
    }

    .bg-blob--1 {
      width: 550px; height: 550px;
      top: -12%; right: -4%;
      background: rgba(45, 106, 45, 0.035);
    }

    .bg-blob--2 {
      width: 480px; height: 480px;
      bottom: -18%; left: -6%;
      background: rgba(0, 0, 0, 0.015);
    }

    .bg-blob--3 {
      width: 380px; height: 380px;
      top: 28%; left: 32%;
      background: rgba(255, 255, 255, 0.7);
    }

    .hero-glow {
      position: absolute;
      top: 50%; left: 38%;
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(255, 255, 255, 0.9) 0%, transparent 65%);
      z-index: 0;
      pointer-events: none;
    }

    /* ── Constrained inner layout ── */
    .hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      width: 100%;
      max-width: 1380px;
      margin: 0 auto;
      min-height: inherit;
      padding: 3rem var(--main-inline-pad);
      gap: clamp(2.5rem, 4.5vw, 5rem);
      animation: none;
    }

    /* ── Text Column ── */
    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
      max-width: 540px;
      flex-shrink: 0;
      animation: text-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    }

    @keyframes text-enter {
      from { opacity: 0; transform: translateX(-24px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      border: 1px solid rgba(45, 106, 45, 0.22);
      border-radius: 100px;
      font-family: var(--font-corporate);
      font-size: 12px;
      font-weight: 600;
      color: #2d6a2d;
      background: rgba(45, 106, 45, 0.04);
      letter-spacing: 0.02em;
    }

    .hero-tag-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: #2d6a2d;
    }

    .hero-h1 {
      font-family: var(--font-corporate);
      font-size: clamp(2.5rem, 3.8vw, 3.4rem);
      font-weight: 700;
      color: var(--ice);
      letter-spacing: -0.015em;
      line-height: 1.12;
    }

    .hero-p {
      font-family: var(--font-corporate);
      font-size: 1.15rem;
      color: var(--text-muted);
      line-height: 1.72;
      max-width: 480px;
    }

    .hero-ctas {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 0.35rem;
    }

    .btn-solid {
      padding: 12px 26px;
      background: #2d6a2d;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: var(--font-corporate);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(45, 106, 45, 0.28);
      transition: all 0.2s ease;
    }

    .btn-solid:hover {
      background: #245624;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(45, 106, 45, 0.38);
    }

    .btn-solid:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(45, 106, 45, 0.2);
    }

    .btn-outline {
      padding: 12px 26px;
      background: transparent;
      color: var(--ice);
      border: 1px solid #bdbdbd;
      border-radius: 8px;
      font-family: var(--font-corporate);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      box-shadow: none;
      transition: all 0.2s ease;
    }

    .btn-outline:hover {
      border-color: #9e9e9e;
      background: rgba(0, 0, 0, 0.03);
      transform: translateY(-1px);
    }

    .btn-outline:active { transform: translateY(0); }

    .hero-trust {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 4px;
      margin-top: 0.5rem;
    }

    .hero-trust span {
      font-family: var(--font-corporate);
      font-size: 12px;
      color: #9e9e9e;
      padding-left: 12px;
      position: relative;
    }

    .hero-trust span::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      width: 3px; height: 3px;
      background: #d4d4d4;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    .hero-trust span:first-child::before { display: none; }

    /* ══════════════════════════════════════════
       RIGHT VISUAL
       ══════════════════════════════════════════ */

    .hero-visual {
      position: relative;
      z-index: 1;
      flex: 1;
      max-width: 660px;
      min-height: 380px;
      animation: visual-enter 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
    }

    @keyframes visual-enter {
      from { opacity: 0; transform: translateX(40px) scale(0.96); }
      to   { opacity: 1; transform: translateX(0) scale(1); }
    }

    .hero-img-wrapper {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      width: clamp(320px, 34vw, 440px);
      aspect-ratio: 16 / 10;
      border-radius: 16px;
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px -4px rgba(0, 0, 0, 0.06),
        0 24px 48px -8px rgba(0, 0, 0, 0.04);
    }

    .hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
    }

    .hero-img-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      pointer-events: none;
    }

    .img-frame {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 0;
      width: calc(clamp(320px, 34vw, 440px) + 26px);
      aspect-ratio: 16 / 10;
      border-radius: 20px;
      border: 1.5px dashed rgba(45, 106, 45, 0.12);
      animation: frame-rotate 40s linear infinite;
    }

    @keyframes frame-rotate {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to   { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .float-card {
      position: absolute;
      background: var(--surface);
      border-radius: 14px;
      overflow: hidden;
      z-index: 3;
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 40px -6px rgba(0, 0, 0, 0.09),
        0 40px 80px -12px rgba(0, 0, 0, 0.06);
    }

    .float-card svg { display: block; }

    .float-card--security {
      top: 0%; right: -2%;
      animation:
        card-slide-right 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both,
        float-a 8s ease-in-out 1.6s infinite;
    }

    @keyframes card-slide-right {
      from { opacity: 0; transform: translateX(30px) translateY(10px) scale(0.9); }
      to   { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
    }

    @keyframes float-a {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }

    .float-card--activity {
      bottom: 2%; left: -4%;
      animation:
        card-slide-left 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both,
        float-b 8.5s ease-in-out 1.7s infinite;
    }

    @keyframes card-slide-left {
      from { opacity: 0; transform: translateX(-30px) translateY(10px) scale(0.9); }
      to   { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
    }

    @keyframes float-b {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-9px); }
    }

    .float-card--stats {
      top: 6%; left: 0%;
      animation:
        card-slide-left 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both,
        float-c 9s ease-in-out 1.8s infinite;
    }

    @keyframes float-c {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-7px); }
    }

    .deco-ring {
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid rgba(45, 106, 45, 0.1);
      z-index: 0;
      animation: ring-expand 6s ease-in-out infinite;
    }

    .deco-ring--1 { width: 80px; height: 80px; bottom: 12%; right: 6%; }
    .deco-ring--2 { width: 50px; height: 50px; top: 8%; left: 12%; animation-delay: 2s; border-color: rgba(0,0,0,0.06); }

    @keyframes ring-expand {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    .deco-dots {
      position: absolute;
      z-index: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .deco-dots--1 { top: 4%; right: 0%; }
    .deco-dots span { width: 4px; height: 4px; border-radius: 50%; background: rgba(45, 106, 45, 0.15); }

    .deco-line { position: absolute; z-index: 0; }
    .deco-line--1 { bottom: 22%; right: -1%; width: 40px; height: 1px; background: linear-gradient(to right, transparent, rgba(45,106,45,0.2)); transform: rotate(-35deg); }
    .deco-line--2 { top: 18%; left: 2%; width: 50px; height: 1px; background: linear-gradient(to right, rgba(0,0,0,0.08), transparent); transform: rotate(25deg); }

    .accent-dot {
      position: absolute;
      border-radius: 50%;
      background: #2d6a2d;
      opacity: 0;
      animation: dot-enter 0.5s ease 1.2s both, dot-pulse 4s ease-in-out 1.7s infinite;
    }

    .accent-dot--1 { width: 8px; height: 8px; top: 2%; right: 15%; }
    .accent-dot--2 { width: 6px; height: 6px; bottom: 18%; left: 2%; animation-delay: 1.4s, 1.9s; }
    .accent-dot--3 { width: 5px; height: 5px; top: 30%; right: 0%; animation-delay: 1.6s, 2.1s; }

    @keyframes dot-enter {
      from { opacity: 0; transform: scale(0); }
      to   { opacity: 0.18; transform: scale(1); }
    }

    @keyframes dot-pulse {
      0%, 100% { opacity: 0.18; }
      50%      { opacity: 0.32; }
    }

    /* ═══ Section blocks ═══ */
    .section-block { padding: clamp(3rem, 6vw, 5rem) 0; }

    .section-header {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
    }

    .section-header h2,
    .section-header h1 {
      font-family: var(--font-corporate);
      font-size: var(--type-section-title);
      font-weight: var(--weight-section-title);
      line-height: 1.2;
      color: var(--ice);
      letter-spacing: var(--tracking-title);
    }

    .section-header p {
      margin-top: 0.9rem;
      font-family: var(--font-corporate);
      font-size: var(--type-section-body);
      line-height: var(--line-body);
      letter-spacing: var(--tracking-body);
      color: var(--text-muted);
    }

    #product .section-header { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

    footer {
      border-top: 1px solid var(--border-soft);
      background: #ffffff;
    }

    .footer-container {
      width: min(1200px, 100%);
      margin: 0 auto;
      padding: 1rem;
      color: var(--text-muted);
      font-size: 0.92rem;
    }

    main section[id] { scroll-margin-top: 104px; }

    /* ══════════════════════════════════════════
       RESPONSIVE
       ══════════════════════════════════════════ */

    @media (max-width: 1200px) {
      .main-nav { padding: 1rem 1.25rem; }
      .nav-primary { gap: 1.4rem; }
    }

    @media (max-width: 1024px) {
      .main-nav { padding: 0.9rem 0.9rem; }
      .nav-primary { gap: 1rem; }

      .hero-inner {
        padding: 3rem clamp(2rem, 4vw, var(--main-inline-pad));
      }

      .hero-visual { max-width: 480px; min-height: 300px; }
      .float-card--stats { display: none; }

      .nav-primary a,
      .nav-actions .demo-link,
      .nav-actions .text-link,
      .signup-link { font-size: 13px; }
    }

    @media (max-width: 900px) {
      body.menu-open { overflow: hidden; }

      .hero-inner {
        flex-direction: column;
        padding: 3rem 1.5rem 4rem;
        gap: 2.5rem;
      }

      .hero-content {
        text-align: center;
        align-items: center;
        max-width: 560px;
        animation: text-enter-center 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
      }

      @keyframes text-enter-center {
        from { opacity: 0; transform: translateY(16px); }
        to   { opacity: 1; transform: translateY(0); }
      }

      .hero-trust { justify-content: center; }

      .hero-visual {
        max-width: 500px;
        width: 100%;
        min-height: 280px;
        animation: visual-enter-center 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
      }

      @keyframes visual-enter-center {
        from { opacity: 0; transform: translateY(30px) scale(0.96); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
      }

      .img-frame { animation: none; }

      .nav-toggle { display: inline-flex; margin-left: auto; }

      .nav-collapse {
        position: absolute;
        top: calc(100% + 0.45rem);
        left: 0; right: 0;
        margin-left: 0;
        padding: 0.85rem;
        border: 0.5px solid var(--border);
        border-radius: 8px;
        background: var(--bg);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top center;
        pointer-events: none;
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
      }

      .nav-collapse.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }

      .nav-primary,
      .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
      }

      .nav-primary {
        position: static;
        left: auto; top: auto;
        transform: none;
      }

      .nav-primary a,
      .nav-actions .demo-link,
      .nav-actions .text-link,
      .nav-actions .signup-link {
        width: 100%;
        border-radius: 6px;
        padding: 0.72rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
      }

      .nav-actions .text-link {
        background: transparent;
        color: #2d6a2d;
        border: 1px solid rgba(45, 106, 45, 0.55);
        font-weight: 400;
        letter-spacing: 0.04em;
      }

      .nav-actions .text-link:hover {
        background: transparent;
        border-color: rgba(45, 106, 45, 0.72);
        color: #245624;
      }

      .nav-actions .signup-link {
        background: #2d6a2d;
        color: #ffffff;
        border: none;
        font-weight: 600;
        letter-spacing: 0.04em;
        margin-top: 0.25rem;
      }

      .nav-actions .signup-link:hover {
        background: #245624;
        color: #ffffff;
      }
    }

    @media (max-width: 640px) {
      .main-nav { padding: 0.8rem 0.65rem; }

      .hero-inner {
        padding: 2.5rem 1.25rem 3rem;
      }

      .hero-h1 { font-size: 2.15rem; }
      .hero-visual { display: none; }

      .hero-content {
        animation: text-enter-center 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
      }

      .brand-logo { height: 28px; max-width: 132px; }
      .nav-toggle { width: 40px; height: 40px; }

      main {
        --main-inline-pad: 0.85rem;
        padding: 0 0.85rem 1.5rem;
      }

      .section-block { padding: 2.75rem 0; }
      .section-header p { font-size: 1rem; }
    }

    @media (max-width: 480px) {
      .hero-inner { padding: 2rem 1rem 2.5rem; }
      .hero-ctas { flex-direction: column; width: 100%; }
      .btn-solid, .btn-outline { width: 100%; text-align: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .hero-visual { display: none; }
    }

/* Core Components */

/* =========================================
   Core Components Styles
   ========================================= */

:root {
  --cc-green-dark: #035e32;
  --cc-green-darker: #024029;
  --cc-green-light: #f0fdf4;
  --cc-green-hover: #dcfce7;
  --cc-gray-100: #f3f4f6;
  --cc-gray-200: #e5e7eb;
  --cc-gray-600: #4b5563;
  --cc-gray-900: #111827;
  --cc-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cc-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .core-components-wrapper *, 
  .core-components-wrapper *::before, 
  .core-components-wrapper *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.core-components-wrapper {
  font-family: var(--font-corporate);
}

/* --- Desktop Layout --- */
.core-components-wrapper .cc-desktop-layout {
  display: none;
  gap: 24px;
}
@media (min-width: 1280px) {
  .core-components-wrapper .cc-desktop-layout { display: flex; }
  .core-components-wrapper .cc-mobile-hero { display: none; }
  .core-components-wrapper .cc-mobile-grid { display: none; }
}

/* --- Hero Card (Desktop) --- */
.core-components-wrapper .cc-hero-card {
  flex-shrink: 0;
  width: 320px;
  min-height: 500px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--cc-gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.4s var(--cc-ease-smooth);
  opacity: 0;
  animation: cc-fadeUp 0.6s var(--cc-ease-smooth) 0.1s forwards;
}
.core-components-wrapper .cc-hero-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.1); }
.core-components-wrapper .cc-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--cc-ease-smooth);
}
.core-components-wrapper .cc-hero-card:hover img { transform: scale(1.04); }
.core-components-wrapper .cc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,1) 100%);
}
.core-components-wrapper .cc-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.core-components-wrapper .cc-hero-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cc-gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.core-components-wrapper .cc-hero-content p {
  font-size: 14px;
  color: var(--cc-gray-600);
  line-height: 1.6;
}

/* --- Cards Grid --- */
.core-components-wrapper .cc-cards-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Service Card --- */
.core-components-wrapper .cc-service-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--cc-gray-100);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  animation: cc-fadeUp 0.5s var(--cc-ease-smooth) forwards;
  transition: transform 0.3s var(--cc-ease-smooth), box-shadow 0.3s var(--cc-ease-smooth);
  will-change: transform, box-shadow;
}
.core-components-wrapper .cc-service-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 24px rgba(0,0,0,0.08); 
}
.core-components-wrapper .cc-card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--cc-green-light);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.3s var(--cc-ease-smooth);
}
.core-components-wrapper .cc-service-card:hover .cc-card-icon-wrap { 
  background: var(--cc-green-hover); 
  transform: scale(1.1); 
}
.core-components-wrapper .cc-card-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--cc-green-dark);
  stroke-width: 1.5;
}
.core-components-wrapper .cc-card-icon-wrap img {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.95;
}
.core-components-wrapper .cc-card-title {
  font-family: var(--font-corporate);
  font-size: var(--type-card-title);
  font-weight: var(--weight-card-title);
  color: var(--cc-gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: var(--tracking-card-title);
}
.core-components-wrapper .cc-card-text {
  font-family: var(--font-corporate);
  font-size: var(--type-card-body);
  color: var(--cc-gray-600);
  line-height: var(--line-body);
  letter-spacing: var(--tracking-body);
  flex: 1;
  margin-bottom: 14px;
}
.core-components-wrapper .cc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.core-components-wrapper .cc-card-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--cc-gray-600);
  background: var(--cc-gray-100);
  border: 1px solid var(--cc-gray-200);
  border-radius: 6px;
  padding: 3px 9px;
  font-family: 'Courier New', monospace;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.core-components-wrapper .cc-service-card:hover .cc-card-tag {
  border-color: #d1d5db;
  background: #f9fafb;
}

/* --- Mobile Hero --- */
.core-components-wrapper .cc-mobile-hero {
  display: block;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 320px;
  background: #fff;
  border: 1px solid var(--cc-gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  opacity: 0;
  animation: cc-fadeUp 0.6s var(--cc-ease-smooth) 0.1s forwards;
}
@media (min-width: 1280px) { .core-components-wrapper .cc-mobile-hero { display: none; } }
.core-components-wrapper .cc-mobile-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--cc-ease-smooth);
}
.core-components-wrapper .cc-mobile-hero:active img { transform: scale(1.03); }
.core-components-wrapper .cc-mobile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 40%, transparent 100%);
}
.core-components-wrapper .cc-mobile-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.core-components-wrapper .cc-mobile-hero-inner {
  background: rgba(255,255,255,0.97);
  border-radius: 10px;
  padding: 16px 20px;
  backdrop-filter: blur(4px);
  max-width: 420px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.core-components-wrapper .cc-mobile-hero-inner h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cc-gray-900);
  margin-bottom: 6px;
}
.core-components-wrapper .cc-mobile-hero-inner p {
  font-size: 13px;
  color: var(--cc-gray-600);
  line-height: 1.5;
}

/* --- Mobile Grid --- */
.core-components-wrapper .cc-mobile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .core-components-wrapper .cc-mobile-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 768px) { .core-components-wrapper .cc-mobile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .core-components-wrapper .cc-mobile-grid { display: none; } }

.core-components-wrapper .cc-service-card-mobile {
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--cc-gray-100);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  animation: cc-fadeUp 0.5s var(--cc-ease-smooth) forwards;
  transition: transform 0.3s var(--cc-ease-smooth), box-shadow 0.3s var(--cc-ease-smooth);
  will-change: transform, box-shadow;
}
.core-components-wrapper .cc-service-card-mobile:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 24px rgba(0,0,0,0.08); 
}
.core-components-wrapper .cc-service-card-mobile:hover .cc-card-icon-wrap { 
  background: var(--cc-green-hover); 
  transform: scale(1.1); 
}
.core-components-wrapper .cc-service-card-mobile .cc-card-title { font-size: 16px; letter-spacing: -0.01em; }
.core-components-wrapper .cc-service-card-mobile .cc-card-text { font-size: 13px; }


/* --- aCCORDIAN--- */

/* =============================================
   ACCORDION WITH IMAGE — accordion.css
   Add this block to your existing stylesheet
   ============================================= */

/* ---- Section wrapper ---- */
.acc-section {
    background: transparent;
}

.acc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 0;
}

/* ---- Header ---- */
.acc-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.acc-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.acc-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #525866;
    margin-bottom: 1rem;
}

.acc-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--ice);
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.acc-subhead {
    margin-top: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Body layout ---- */
.acc-body {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.acc-body.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .acc-body {
        flex-direction: row;
    }
}

/* ---- Accordion column ---- */
.acc-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
    .acc-list {
        width: 41.6%;          /* ˜ 5/12 */
        flex-shrink: 0;
    }
}

/* ---- Individual item ---- */
.acc-item {
    border-bottom: 1px solid #e9eaf0;
    position: relative;
}

/* Green left bar (desktop only) */
.acc-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1b5e20;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

@media (min-width: 768px) {
    .acc-item::before {
        display: block;
    }
}

.acc-item.active::before {
    opacity: 1;
}

/* ---- Trigger button ---- */
.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

.acc-trigger:hover {
    background: #f9fafb;
}

.acc-trigger-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.2s ease;
}

.acc-item.active .acc-trigger-title,
.acc-trigger:hover .acc-trigger-title {
    color: #1b5e20;
}

/* Chevron icon */
.acc-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.acc-item.active .acc-chevron {
    transform: rotate(180deg);
}

/* ---- Collapsible content ---- */
.acc-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
}

.acc-item.active .acc-content {
    grid-template-rows: 1fr;
}

.acc-content-inner {
    overflow: hidden;
    padding: 0 1rem;
}

.acc-item.active .acc-content-inner {
    padding-bottom: 1.5rem;
}

.acc-desc {
    color: #374151;
    line-height: 1.6;
    font-size: 1.0625rem;
}

/* ---- Bullet list inside accordion ---- */
.acc-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.acc-bullets li {
    color: #374151;
    line-height: 1.6;
    font-size: 1.0625rem;
    padding-left: 1.25rem;
    position: relative;
}

.acc-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1b5e20;
    flex-shrink: 0;
}

/* ---- Mobile image (inside accordion) ---- */
.acc-mobile-img-wrap {
    margin-top: 1rem;
    position: relative;
    padding-right: 1.25rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .acc-mobile-img-wrap {
        display: none;
    }
}

.acc-mobile-img-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0.75rem;
    width: 88%;
    border-radius: 1rem;
    background: #62cef6;
}

.acc-mobile-img-glass {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.2);
    padding: 0.75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.acc-mobile-img-glass img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

/* ---- Desktop image column ---- */
.acc-image-col {
    display: none;
}

@media (min-width: 768px) {
    .acc-image-col {
        display: block;
        flex: 1;
    }
}

.acc-image-sticky {
    position: sticky;
    top: 2rem;
}

/* Sliding viewport */
.acc-image-viewport {
    position: relative;
    height: 27rem;
    overflow: hidden;
    background: transparent;
}

/* Individual slide */
.acc-slide {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

/* States */
.acc-slide[data-state="active"] { opacity: 1; pointer-events: auto; }
.acc-slide[data-state="hidden"] { opacity: 0; pointer-events: none; }

/* Brand accent blob */
.acc-slide-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1.5rem;
    width: 88%;
    border-radius: 1rem;
    background: linear-gradient(
      145deg,
      rgba(220, 252, 231, 0.95) 0%,
      rgba(187, 247, 208, 0.9) 52%,
      rgba(74, 222, 128, 0.75) 100%
    );
    z-index: 0;
}

/* Glass card */
.acc-slide-glass {
    position: absolute;
    left: 0;
    top: 2.5rem;
    right: 2.5rem;
    bottom: 0;
    z-index: 10;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Gradient overlay */
.acc-slide-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.1) 50%, rgba(167,243,208,0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Glow blobs */
.acc-slide-glass::after {
    content: "";
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    filter: blur(2rem);
    pointer-events: none;
    z-index: 0;
}

.acc-slide-glass img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.5);
    display: block;
}


/* ---- faq ---- */



.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  font-family: var(--font-corporate);
}

.faq-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.faq-header {
  margin-bottom: 0;
  text-align: left;
}

.faq-title {
  font-family: var(--font-corporate);
  font-size: var(--type-section-title);
  font-weight: var(--weight-section-title);
  color: var(--ice);
  line-height: 1.2;
  margin: 0;
  letter-spacing: var(--tracking-title);
}

.faq-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #616161;
  letter-spacing: 0.01em;
}

.faq-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .faq-controls {
    justify-content: flex-start;
  }
}

.faq-controls .btn-expand {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #2d6a2d;
  color: #fff;
  border: 2px solid #2d6a2d;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    4px 4px 8px rgba(0,0,0,0.3),
    -2px -2px 6px rgba(255,255,255,0.05);
  transition: all 0.15s ease;
}

.faq-controls .btn-expand:hover {
  box-shadow:
    2px 2px 5px rgba(0,0,0,0.3),
    -1px -1px 4px rgba(255,255,255,0.05);
  transform: translateY(1px);
}

.faq-controls .btn-expand:active {
  box-shadow:
    inset 3px 3px 6px rgba(0,0,0,0.3),
    inset -2px -2px 5px rgba(255,255,255,0.05);
  transform: translateY(2px);
}

.faq-controls .btn-collapse {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f0f0f0;
  color: #2d6a2d;
  border: 2px solid #2d6a2d;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    4px 4px 8px rgba(0,0,0,0.15),
    -2px -2px 6px rgba(255,255,255,0.8);
  transition: all 0.15s ease;
}

.faq-controls .btn-collapse:hover {
  box-shadow:
    2px 2px 5px rgba(0,0,0,0.15),
    -1px -1px 4px rgba(255,255,255,0.8);
  transform: translateY(1px);
}

.faq-controls .btn-collapse:active {
  box-shadow:
    inset 3px 3px 6px rgba(0,0,0,0.15),
    inset -2px -2px 5px rgba(255,255,255,0.8);
  transform: translateY(2px);
}

.faq-list {
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question-row {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 20px;
  transition: background 0.15s ease;
}

.faq-question-row:hover {
  background: rgba(0,0,0,0.015);
}

.faq-number {
  font-family: var(--font-corporate);
  font-size: var(--type-card-body);
  font-weight: 400;
  color: #9e9e9e;
  min-width: 26px;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.faq-question-text {
  font-family: var(--font-corporate);
  font-size: var(--type-card-title);
  font-weight: var(--weight-card-title);
  color: #242424;
  flex: 1;
  line-height: 1.3;
  letter-spacing: var(--tracking-card-title);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #2d6a2d;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.faq-toggle:hover {
  background: #1f4f1f;
}

.faq-toggle .icon-plus,
.faq-toggle .icon-minus {
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-toggle .icon-minus {
  display: none;
}

.faq-item.active .faq-toggle .icon-plus {
  display: none;
}

.faq-item.active .faq-toggle .icon-minus {
  display: flex;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 0 24px 46px;
  font-family: var(--font-corporate);
  font-size: var(--type-card-body);
  font-weight: 400;
  color: var(--text-muted);
  line-height: var(--line-body);
  letter-spacing: var(--tracking-body);
  max-width: 680px;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

/* --- End of FAQ styles --- */

/* --- Next Steps --- */
.studio-section {
  position: relative;
  padding: 96px 0 40px;
  width: 100dvw;
  max-width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  background-color: #f9fafb;
  overflow: hidden;
  font-family: var(--font-corporate);
}

/* Image lives in a pseudo-element — completely decoupled from content flow */
.studio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("/portal/images/Next%20Steps.png");
  background-size: cover;          /* or: 100% auto if you want width-pinned */
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Make sure all direct children sit above the pseudo-element */
.studio-container {
  position: relative;
  z-index: 1;
}

  /* ========================================
     BACKGROUND IMAGE — CHANGE HEIGHT HERE
     ======================================== */
  .studio-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px; /* ? CHANGE THIS VALUE TO ADJUST IMAGE HEIGHT */
    z-index: 0;
    overflow: hidden;
  }

  .studio-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .studio-bg-image-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 40%,
      #f9fafb 100%
    );
  }
  /* ========================================
     END BACKGROUND IMAGE
     ======================================== */

  .studio-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }

  .studio-header {
    margin-bottom: 64px;
  }

  .studio-header-overline {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
  }

  .studio-header-title {
    font-family: var(--font-corporate);
    font-size: var(--type-section-title);
    font-weight: var(--weight-section-title);
    line-height: 1.2;
    color: var(--ice);
    letter-spacing: var(--tracking-title);
  }

  .next-card-wrapper {
    margin-bottom: 32px;
  }

  .next-card {
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    background: #fff;
  }

  @media (min-width: 640px) {
    .next-card {
      border-radius: 24px;
    }
  }

  .next-mobile {
    display: block;
  }

  @media (min-width: 768px) {
    .next-mobile {
      display: none;
    }
  }

  .next-mobile-image {
    width: 100%;
    height: 256px;
    overflow: hidden;
  }

  @media (min-width: 640px) {
    .next-mobile-image {
      height: 320px;
    }
  }

  .next-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .next-mobile-body {
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 640px) {
    .next-mobile-body {
      padding: 24px;
    }
  }

  .next-mobile-tag-wrap {
    margin-bottom: 16px;
  }

  .next-mobile-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #6b7280;
    text-transform: uppercase;
  }

  .next-mobile-title {
    font-family: var(--font-corporate);
    font-size: var(--type-card-title);
    font-weight: var(--weight-card-title);
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: var(--tracking-card-title);
  }

  @media (min-width: 640px) {
    .next-mobile-title {
      font-size: var(--type-card-title);
    }
  }

  .next-mobile-desc {
    font-family: var(--font-corporate);
    font-size: var(--type-card-body);
    color: #4b5563;
    line-height: var(--line-body);
    letter-spacing: var(--tracking-body);
    margin-bottom: 24px;
  }

  .next-mobile-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: #1b5e20;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .next-mobile-btn:hover {
    background: rgba(27, 94, 32, 0.9);
  }

  .next-desktop {
    display: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    min-height: 400px;
    transition: box-shadow 0.3s ease;
  }

  .next-desktop:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  @media (min-width: 768px) {
    .next-desktop {
      display: flex;
      align-items: stretch;
    }
  }

  @media (min-width: 640px) {
    .next-desktop {
      border-radius: 24px;
    }
  }

  .next-desktop-content {
    width: 50%;
    max-width: 650px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }

  .next-desktop-content-top {
    padding-top: 0;
  }

  .next-desktop-content-top span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #6b7280;
    text-transform: uppercase;
  }

  .next-desktop-content-mid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .next-desktop-content-mid h4 {
    font-family: var(--font-corporate);
    font-size: var(--type-card-title);
    font-weight: var(--weight-card-title);
    color: #111827;
    line-height: 1.3;
    letter-spacing: var(--tracking-card-title);
  }

  .next-desktop-content-mid p {
    font-family: var(--font-corporate);
    font-size: var(--type-card-body);
    color: #4b5563;
    line-height: var(--line-body);
    letter-spacing: var(--tracking-body);
    max-width: 600px;
  }

  .next-desktop-content-bottom {
    padding-bottom: 0;
  }

  .next-desktop-btn {
    padding: 8px 16px;
    background: #1b5e20;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .next-desktop-btn:hover {
    background: rgba(27, 94, 32, 0.9);
  }

  .next-desktop-image {
    width: 50%;
    padding: 16px;
    flex: 1;
    min-width: 320px;
  }

  .next-desktop-image-inner {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
  }

  .next-desktop-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  @media (min-width: 640px) {
    .promo-grid {
      gap: 24px;
    }
  }

  @media (min-width: 768px) {
    .promo-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
  }

  .promo-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    will-change: transform, box-shadow;
  }

  .promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
  }

  .promo-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f0fdf4;
    border: 1px solid rgba(3, 94, 50, 0.08);
    transition: background 0.2s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
  }

  .promo-card:hover .promo-card-icon {
    background: #dcfce7;
    transform: scale(1.1);
    border-color: transparent;
  }

  .promo-card-icon svg {
    width: 22px;
    height: 22px;
    color: #035e32;
    stroke-width: 1.5;
  }

  .promo-card-title {
    font-family: var(--font-corporate);
    font-size: var(--type-card-title);
    font-weight: var(--weight-card-title);
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: var(--tracking-card-title);
  }

  @media (min-width: 640px) {
    .promo-card-title {
      font-size: var(--type-card-title);
    }
  }

  .promo-card-desc {
    font-family: var(--font-corporate);
    font-size: var(--type-card-body);
    color: #6b7280;
    line-height: var(--line-body);
    letter-spacing: var(--tracking-body);
    margin-bottom: 16px;
    flex: 1;
  }

  .promo-card-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #2d6a2d;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow:
      4px 4px 8px rgba(0,0,0,0.3),
      -2px -2px 6px rgba(255,255,255,0.05);
    transition: all 0.15s ease;
    align-self: flex-start;
  }

  .promo-card-btn:hover {
    box-shadow:
      2px 2px 5px rgba(0,0,0,0.3),
      -1px -1px 4px rgba(255,255,255,0.05);
    transform: translateY(1px);
  }

  .promo-card-btn:active {
    box-shadow:
      inset 3px 3px 6px rgba(0,0,0,0.3),
      inset -2px -2px 5px rgba(255,255,255,0.05);
    transform: translateY(2px);
  }

  .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
  }

  .studio-section .placeholder-img {
    background-image: url("/portal/images/workspace.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
    font-size: 0;
  }


  /* --- How it works --- */

  /* -- Workflow Section — self-contained, no body/html overrides -- */
.wf{
  position:relative;
 
  max-width:1200px;
  margin:0 auto;
  font-family:Arial,sans-serif;
  color:#18181c;
}

/* -- Header -- */
.hdr{
  text-align:center;
  max-width:1120px;
  margin:0 auto 52px;
  position:relative;
  z-index:2;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-size:10.5px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;
  color:#2d6a2d;margin-bottom:22px;
  opacity:0;transform:translateY(10px);
  transition:opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1);
}
.eyebrow::before,.eyebrow::after{content:'';width:20px;height:1px;background:#2d6a2d;opacity:.4}
.eyebrow.vis{opacity:1;transform:none}
.ttl{
  font-family:'Outfit',sans-serif;
  font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:600;
  line-height:1.2;
  letter-spacing:0.01em;
  color:var(--ice);
  max-width:1080px;
  margin:0 auto 16px;
}
.ttl em{font-style:normal;color:inherit}
.ttl-line{
  display:block;overflow:hidden;
  opacity:0;transform:translateY(20px);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);
}
.ttl-line:nth-child(2){transition-delay:.08s}
.ttl-line.vis{opacity:1;transform:none}
.sub{
  margin:0.9rem auto 0;
  max-width:980px;
  font-family:'Outfit',sans-serif;
  font-size:1.0625rem;
  font-weight:400;
  color:var(--text-muted);
  line-height:1.6;
  opacity:0;transform:translateY(10px);
  transition:opacity .6s cubic-bezier(.22,1,.36,1) .25s,transform .6s cubic-bezier(.22,1,.36,1) .25s;
}
.sub.vis{opacity:1;transform:none}

@media (min-width: 1024px) {
  .ttl {
    white-space: nowrap;
  }
}

/* -- Nav -- */
.nav-wrap{display:flex;justify-content:center;margin-bottom:40px;position:relative;z-index:3}
.tabs{
  display:inline-flex;position:relative;
  background:#ffffff;
  border:1px solid #e9eaf0;border-radius:14px;padding:4px;
  overflow-x:auto;scrollbar-width:none;
  max-width:calc(100vw - 56px);
  box-shadow:0 1px 3px rgba(0,0,0,.03);
}
.tabs::-webkit-scrollbar{display:none}
.pill{
  position:absolute;top:4px;height:calc(100% - 8px);
  background:#2d6a2d;border-radius:10px;
  transition:left .5s cubic-bezier(.22,1,.36,1),width .5s cubic-bezier(.22,1,.36,1);
  box-shadow:0 2px 10px rgba(45,106,45,.22);
  z-index:0;pointer-events:none;
}
.tab{
  position:relative;z-index:1;
  padding:9px 18px;background:none;border:none;border-radius:10px;
  cursor:pointer;font-family:'DM Sans',sans-serif;
  font-size:13px;font-weight:500;color:#525866;white-space:nowrap;
  flex-shrink:0;
  transition:color .2s ease,opacity .5s cubic-bezier(.22,1,.36,1),transform .5s cubic-bezier(.22,1,.36,1);
  opacity:0;transform:translateY(8px);
}
.tab.vis{opacity:1;transform:none}
.tab:hover:not(.on){color:#18181c}
.tab.on{color:#2d6a2d;font-weight:600}
.tabs.has-pill .tab.on{color:#ffffff}

/* -- Panels -- */
.panels{position:relative;z-index:2;display:grid}
.panel{
  grid-area:1/1/2/2;
  opacity:0;transform:translateY(6px);pointer-events:none;
  transition:opacity .3s ease,transform .42s cubic-bezier(.22,1,.36,1);
}
.panel.on{opacity:1;transform:none;pointer-events:all}

/* -- Bento Grid -- */
.bento{display:grid;gap:10px}
.bento-4{grid-template-columns:repeat(3,1fr);grid-template-rows:auto auto}
.bento-3{grid-template-columns:repeat(3,1fr);grid-template-rows:auto auto}
.bh{grid-column:1;grid-row:1/3}
.ba{grid-column:2;grid-row:1}
.bb{grid-column:3;grid-row:1}
.bc{grid-column:2;grid-row:2}
.bd{grid-column:3;grid-row:2}
.bw{grid-column:2/4;grid-row:1}
.be{grid-column:2;grid-row:2}
.bf{grid-column:3;grid-row:2}

/* -- Card Base -- */
.card{
  background:#ffffff;border:1px solid #e9eaf0;
  border-radius:18px;
  transition:background .35s ease,border-color .35s ease,transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease;
  opacity:0;transform:translateY(14px);
}
.card.in{opacity:1;transform:none}
.card:not(.chero):hover{
  background:#ffffff;border-color:rgba(45,106,45,.28);
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(0,0,0,.04),0 0 0 1px rgba(45,106,45,.06);
}

/* -- Hero Card -- */
.chero{
  padding:30px 26px;display:flex;flex-direction:column;
  background:linear-gradient(140deg,rgba(45,106,45,.05) 0%,rgba(45,106,45,.015) 100%);
  border-color:rgba(45,106,45,.15);
  position:relative;overflow:hidden;
}
.chero::after{
  content:attr(data-n);position:absolute;
  bottom:-18px;right:-4px;
  font-family:'DM Serif Display',serif;
  font-size:clamp(90px,14vw,148px);font-weight:400;
  color:rgba(45,106,45,.05);line-height:1;
  pointer-events:none;letter-spacing:-.04em;
  transition:color .4s ease;
}
.chero:hover::after{color:rgba(45,106,45,.08)}
.chero:hover{transform:none;box-shadow:none}
.h-stage{
  font-size:10px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:#2d6a2d;margin-bottom:auto;padding-bottom:16px;
  display:flex;align-items:center;gap:8px;
}
.h-stage::before{content:'';width:16px;height:1px;background:#2d6a2d;opacity:.4}
.h-title{
  font-size:18px;
  font-weight:600;
  color:var(--cc-gray-900);
  margin-bottom:12px;
  line-height:1.3;
  letter-spacing:-0.01em;
}
.h-desc{
  font-size:13px;
  color:var(--cc-gray-600);
  line-height:1.65;
  flex:1;
  margin-bottom:22px;
}
.h-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 14px;
  background:rgba(45,106,45,.06);
  border:1px solid rgba(45,106,45,.12);
  border-radius:100px;font-size:11.5px;font-weight:500;
  color:#2d6a2d;align-self:flex-start;
  letter-spacing:.01em;
}
.h-badge img{
  width:10px;
  height:10px;
  display:block;
  opacity:0.95;
}

/* -- Feature Card -- */
.cfeat{padding:22px 22px 24px;display:flex;flex-direction:column}
.f-icon{
  width:40px;height:40px;border-radius:8px;
  background:var(--cc-green-light);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  flex-shrink:0;
  transition:background 0.2s ease,transform 0.3s var(--cc-ease-smooth);
}
.card:hover .f-icon{
  background:var(--cc-green-hover);
  transform:scale(1.1);
}
.f-icon img{
  width:22px;
  height:22px;
  display:block;
  opacity:0.95;
}
.f-title{
  font-size:18px;
  font-weight:600;
  color:var(--cc-gray-900);
  margin-bottom:12px;
  line-height:1.3;
  letter-spacing:-0.01em;
}
.f-desc{
  font-size:13px;
  color:var(--cc-gray-600);
  line-height:1.65;
}

/* -- Dots -- */
.dots{
  display:flex;justify-content:center;align-items:center;
  gap:6px;margin-top:40px;position:relative;z-index:2;
  opacity:0;transition:opacity .6s cubic-bezier(.22,1,.36,1);
}
.dots.vis{opacity:1}
.dot{
  height:6px;border-radius:3px;
  background:#e9eaf0;
  transition:all .45s cubic-bezier(.22,1,.36,1);width:6px;
}
.dot.on{background:#2d6a2d;width:22px;box-shadow:0 0 8px rgba(45,106,45,.15)}

/* -- Responsive -- */
@media(max-width:820px){
  .wf{padding:64px 20px 56px}
  .bento-4,.bento-3{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .bh{grid-column:1/-1;grid-row:auto}
  .ba,.bb,.bc,.bd{grid-column:auto;grid-row:auto}
  .bw{grid-column:1/-1;grid-row:auto}
  .be,.bf{grid-column:auto;grid-row:auto}
  .chero{min-height:220px}
  .chero::after{font-size:100px;bottom:-12px}
}
@media(max-width:520px){
  .wf{padding:52px 16px 48px}
  .tab{padding:8px 14px;font-size:12px}
  .bento-4,.bento-3{grid-template-columns:1fr}
  .bh,.ba,.bb,.bc,.bd,.bw,.be,.bf{grid-column:1/-1;grid-row:auto}
  .chero::after{font-size:80px}
  .ttl{font-size:clamp(1.8rem,3vw,2.5rem)}
}
@media(prefers-reduced-motion:reduce){
  .wf *{transition-duration:.01ms!important}
  .card,.ttl-line,.eyebrow,.sub,.tab{opacity:1!important;transform:none!important}
}



  .cicosy-footer {
    padding: 48px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
  }

  @media (min-width: 640px) {
    .cicosy-footer {
      padding: 48px 24px;
    }
  }

  @media (min-width: 1024px) {
    .cicosy-footer {
      padding: 48px 32px;
    }
  }

  .cicosy-footer-inner {
    max-width: 80rem;
    margin: 0 auto;
  }

  .cicosy-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
  }

  @media (min-width: 768px) {
    .cicosy-footer-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .cicosy-footer-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }

  .cicosy-footer-col h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
  }

  .cicosy-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cicosy-footer-col ul li a {
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .cicosy-footer-col ul li a:hover {
    color: #111827;
  }

  .cicosy-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
    gap: 16px;
  }

  @media (min-width: 768px) {
    .cicosy-footer-bottom {
      flex-direction: row;
      gap: 0;
    }
  }

  .cicosy-footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .cicosy-footer-bottom-left {
      justify-content: flex-start;
    }
  }

  .cicosy-footer-bottom-left .icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .cicosy-footer-bottom-left .icon-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .cicosy-footer-bottom-left .icon-link span {
    font-size: 12px;
    color: #4b5563;
  }

  .cicosy-footer-bottom-left .icon-link.privacy-link span {
    color: #2563eb;
  }

  .cicosy-footer-bottom-left .icon-link.privacy-link:hover span {
    color: #1e40af;
  }

  .cicosy-footer-bottom-left .text-link {
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .cicosy-footer-bottom-left .text-link:hover {
    color: #111827;
  }

  .cicosy-footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .cicosy-footer-bottom-right {
      justify-content: flex-end;
    }
  }

  .cicosy-footer-bottom-right a {
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .cicosy-footer-bottom-right a:hover {
    color: #111827;
  }

  .cicosy-footer-bottom-right span {
    font-size: 12px;
    color: #4b5563;
  }

