:root {
      --main: #0e6b42;
      --main-dark: #04362c;
      --main-soft: #e7f2ec;
      --ink: #042820;
      --heading: #202124;
      --muted: #6b7280;
      --line: #e8eaee;
      --bg: #f4f7f5;
      --bg-soft: #eef5f1;
      --white: #ffffff;
      --radius: 18px;
      --shadow: 0 18px 50px rgba(4, 40, 32, 0.08);
      --container: 1180px;
      --font: "Plus Jakarta Sans", system-ui, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      color: var(--heading);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button, .btn { font-family: inherit; cursor: pointer; border: 0; }

    .container {
      width: min(100% - 2.5rem, var(--container));
      margin-inline: auto;
    }

    /* Header — global brand navbar (homepage design) */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, backdrop-filter 0.3s;
    }
    .header-brand {
      background: transparent;
    }
    .header-brand .nav {
      min-height: 68px;
    }
    .header-overlay {
      position: fixed;
      inset: 0 0 auto 0;
      background: rgba(4, 40, 32, 0.94);
      backdrop-filter: none;
      border-bottom: 0;
    }
    .header-overlay.scrolled,
    .header-solid {
      position: sticky;
      top: 0;
      background: rgba(4, 40, 32, 0.94);
      backdrop-filter: blur(16px);
      border-color: transparent;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }
    .header-overlay.scrolled {
      position: fixed;
      width: 100%;
    }
    .logo-wordmark {
      font-family: "Plus Jakarta Sans", system-ui, sans-serif;
      font-weight: 500;
      font-size: 1.15rem;
      letter-spacing: 0.04em;
      color: #ffffff;
      white-space: nowrap;
    }
    .nav-links-brand {
      margin-left: auto;
      gap: 1.6rem;
    }
    .nav-links-brand a {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
    }
    .nav-links-brand a:hover,
    .nav-links-brand a.is-active {
      color: #ffffff;
      opacity: 1;
    }
    .menu-btn-light {
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 1rem;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.03em;
      color: var(--ink);
    }
    .logo-img {
      display: block;
      height: 26px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
      background: transparent;
    }
    .header .logo-img-header {
      background: transparent;
    }
    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--main), var(--main-dark));
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 1rem;
      box-shadow: 0 10px 24px rgba(14, 107, 66, 0.35);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
    }
    .nav-links a {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--heading);
      transition: color 0.2s, opacity 0.2s;
    }
    .nav-links a:hover { color: var(--main); }
    .header-brand .logo-wordmark,
    .header-brand .nav-links a,
    .header-brand .nav-links-brand a {
      color: #ffffff !important;
    }
    .header-brand .nav-links a:hover,
    .header-brand .nav-links-brand a:hover {
      color: #ffffff !important;
      opacity: 0.85;
    }
    .header-brand .menu-btn-light {
      color: #ffffff;
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--bg);
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 600;
      border-radius: 999px;
      padding: 0.9rem 1.6rem;
      transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0) scale(0.98); }
    .btn-main {
      background: var(--main);
      color: #fff;
      box-shadow: 0 12px 28px rgba(14, 107, 66, 0.3);
    }
    .btn-main:hover { background: var(--main-dark); }
    .btn-dark {
      background: var(--ink);
      color: #fff;
    }
    .btn-dark:hover { background: #064033; }
    .btn-ghost {
      background: transparent;
      color: var(--heading);
      border: 1px solid var(--line);
    }

    /* Marquee */
    .marquee-wrap {
      border-block: 1px solid var(--line);
      background: #fff;
      overflow: hidden;
      padding: 1rem 0;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .marquee {
      display: flex;
      gap: 3rem;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .marquee span {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      white-space: nowrap;
      font-weight: 600;
      color: var(--heading);
    }
    .marquee i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--main);
      display: inline-block;
    }
    @keyframes marquee {
      to { transform: translateX(-50%); }
    }

    /* Hero */
    .hero-banner {
      position: relative;
      isolation: isolate;
      height: clamp(480px, 52vh, 520px);
      min-height: 480px;
      max-height: 520px;
      padding: 0;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #04362c;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: var(--hero-image);
      background-size: cover;
      background-position: right center;
      background-repeat: no-repeat;
    }
    .hero-shade {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(
          90deg,
          rgba(2, 36, 28, 0.88) 0%,
          rgba(4, 54, 44, 0.72) 26%,
          rgba(6, 70, 55, 0.32) 46%,
          rgba(6, 70, 55, 0.08) 60%,
          rgba(6, 70, 55, 0) 72%
        ),
        linear-gradient(
          180deg,
          rgba(2, 28, 22, 0.28) 0%,
          rgba(2, 28, 22, 0.06) 40%,
          rgba(2, 28, 22, 0.16) 100%
        );
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(100% - 2.5rem, var(--container));
      margin-inline: auto;
      padding-top: 3.25rem;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      align-items: center;
    }
    .hero-copy {
      max-width: 42rem;
      color: #fff;
    }
    .hero-banner h1 {
      font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
      font-size: clamp(2.15rem, 3.8vw, 3rem);
      line-height: 1.12;
      letter-spacing: -0.035em;
      font-weight: 300;
      color: #fff;
      max-width: 22ch;
    }
    .hero-line-strong {
      font-weight: 600;
    }
    .hero-banner .hero-lead {
      margin-top: 0.85rem;
      color: #ffffff;
      font-size: 1.02rem;
      line-height: 1.6;
      max-width: 38rem;
      font-weight: 500;
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
      letter-spacing: 0.01em;
      opacity: 0.96;
    }
    .hero-banner .hero-actions {
      margin-top: 1.35rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
    }
    .btn-hero {
      min-height: 44px;
      padding: 0.7rem 1.25rem;
      border-radius: 999px;
      background: #fff;
      color: #04362c;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      gap: 0.55rem;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }
    .btn-hero:hover {
      transform: translateY(-1px);
      background: #e7f2ec;
      color: #042820;
    }
    .hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.78rem;
      font-weight: 750;
      letter-spacing: 0.12em;
      transition: color .2s ease, gap .2s ease;
    }
    .hero-secondary:hover {
      color: #fff;
      gap: 0.75rem;
    }
    @keyframes heroZoom {
      from { transform: scale(1.06); }
      to { transform: scale(1.02); }
    }

    /* legacy float helpers kept unused */
    .hero-grid { display: none; }
    .avatars {
      display: flex;
      align-items: center;
    }
    .avatars img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #fff;
      object-fit: cover;
      margin-left: -10px;
    }
    .avatars img:first-child { margin-left: 0; }
    .social-proof strong {
      display: block;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }
    .social-proof small {
      color: var(--muted);
      font-weight: 700;
      font-size: 0.8rem;
    }
    .hero-visual { display: none; }
    .float-card { display: none; }
    @keyframes floaty {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Common section bits */
    section:not(.hero-banner) { padding: clamp(4rem, 8vw, 6rem) 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      background: var(--main-soft);
      color: var(--main-dark);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: capitalize;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      margin-bottom: 0.85rem;
    }
    .eyebrow.light {
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
    }
    .section-title {
      font-size: clamp(1.75rem, 3.4vw, 2.55rem);
      letter-spacing: -0.035em;
      line-height: 1.15;
      max-width: 18ch;
    }
    .section-title.wide { max-width: 22ch; }
    .section-lead {
      margin-top: 0.9rem;
      color: var(--muted);
      max-width: 36rem;
      font-weight: 500;
    }
    .section-head {
      margin-bottom: 2.75rem;
    }
    .section-head.center {
      text-align: center;
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .section-head.center .section-title,
    .section-head.center .section-lead { max-width: 40rem; }

    /* About — dual image collage + justified copy */
    .about {
      background: var(--white);
    }
    .about-link {
      display: block;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }
    .about-link:hover .section-title {
      color: var(--main-dark);
    }
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: clamp(2rem, 4vw, 3.5rem);
      align-items: start;
    }
    .about-media-stack {
      position: relative;
      min-height: 560px;
      padding: 2.75rem 3rem 1.5rem 0;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .about-media {
      position: absolute;
      border-radius: 22px;
      overflow: hidden;
      background-color: #e8f0ec;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      box-shadow: 0 18px 44px rgba(4, 40, 32, 0.12);
      transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        filter 0.45s ease;
    }
    .about-media--main {
      inset: 3.25rem 16% 0 0;
      min-height: 480px;
    }
    .about-media--main::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(4, 40, 32, 0.18) 100%);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .about-link:hover .about-media--main {
      transform: scale(1.02);
      box-shadow: 0 24px 52px rgba(4, 40, 32, 0.16);
    }
    .about-link:hover .about-media--main::after {
      opacity: 1;
    }
    .about-media--secondary {
      width: min(52%, 270px);
      aspect-ratio: 5 / 4;
      top: 0;
      right: 0;
      z-index: 2;
      border: 4px solid #fff;
      box-shadow: 0 16px 40px rgba(4, 40, 32, 0.16);
      animation: aboutFloat 3.8s ease-in-out infinite;
      transform-origin: center;
    }
    .about-link:hover .about-media--secondary {
      animation-play-state: paused;
      transform: translateY(-10px) scale(1.04);
      box-shadow: 0 22px 48px rgba(4, 40, 32, 0.22);
    }
    @keyframes aboutFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }
    .about-stat {
      position: absolute;
      left: 1rem;
      bottom: 1.25rem;
      z-index: 3;
      background: #fff;
      border-radius: 16px;
      padding: 1rem 1.2rem;
      box-shadow: 0 14px 36px rgba(4, 40, 32, 0.14);
      max-width: 11.5rem;
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
    }
    .about-link:hover .about-stat {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 20px 44px rgba(4, 40, 32, 0.2);
    }
    .about-stat strong,
    .about-stat .count-up {
      display: block;
      font-size: 1.8rem;
      color: var(--main);
      letter-spacing: -0.03em;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      line-height: 1.1;
    }
    .about-stat span {
      display: block;
      margin-top: 0.2rem;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.35;
    }
    .about-copy {
      padding-top: 0.15rem;
    }
    .about-copy .section-title {
      max-width: 18ch;
    }
    .about-copy .section-lead {
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
      max-width: none;
    }
    .feature-list {
      display: grid;
      gap: 1.15rem;
      margin-top: 1.75rem;
    }
    .feature-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 1rem;
      align-items: start;
      padding: 0.65rem 0.75rem 0.65rem 0.35rem;
      border-radius: 14px;
      transition:
        background 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
    }
    .feature-item:hover {
      background: rgba(14, 107, 66, 0.05);
      transform: translateX(6px);
      box-shadow: 0 10px 28px rgba(4, 40, 32, 0.06);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--main-soft);
      color: var(--main-dark);
      display: grid;
      place-items: center;
      font-size: 1.05rem;
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    }
    .feature-item:hover .feature-icon {
      transform: scale(1.08) rotate(-6deg);
      background: #d7ebe2;
    }
    .feature-item h4 {
      font-size: 1.05rem;
      margin-bottom: 0.25rem;
      color: var(--ink);
    }
    .feature-item p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.55;
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
    }

    /* Roadmap */
    .roadmap { background: var(--bg); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }
    .step {
      position: relative;
      background: linear-gradient(165deg, #ffffff 0%, #f4faf7 100%);
      border-radius: var(--radius);
      padding: 1.45rem 1.25rem 1.5rem;
      border: 1px solid rgba(14, 107, 66, 0.1);
      box-shadow: 0 8px 24px rgba(4, 40, 32, 0.04);
      overflow: hidden;
      transition:
        border-color 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background 0.35s ease;
    }
    .step::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 3px;
      background: linear-gradient(90deg, var(--main), #1a9b62);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .step.reveal {
      transition-delay: var(--step-delay, 0s);
    }
    .step:hover {
      border-color: rgba(14, 107, 66, 0.45);
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(14, 107, 66, 0.14);
      background: linear-gradient(165deg, #ffffff 0%, #e7f2ec 100%);
    }
    .step:hover::before {
      transform: scaleX(1);
    }
    .step .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 2.35rem;
      height: 1.7rem;
      padding: 0 0.65rem;
      margin-bottom: 0.85rem;
      border-radius: 999px;
      background: var(--main-soft);
      font-weight: 800;
      color: var(--main);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }
    .step:hover .num {
      background: var(--main);
      color: #fff;
      transform: scale(1.05);
    }
    .step h4 {
      font-size: 1.02rem;
      margin-bottom: 0.4rem;
      color: var(--ink);
      transition: color 0.25s ease;
    }
    .step:hover h4 { color: var(--main-dark); }
    .step p { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

    /* Stats band */
    .stats {
      background: var(--ink);
      color: #fff;
      padding: 3.5rem 0;
      position: relative;
      overflow: hidden;
    }
    .stats::before {
      content: "";
      position: absolute;
      inset: auto -10% -40% 40%;
      height: 280px;
      background: radial-gradient(circle, rgba(14, 107, 66, 0.35), transparent 65%);
      pointer-events: none;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
    }
    .stat-card {
      position: relative;
      padding: 0.35rem 0;
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s ease;
    }
    .stat-card h3,
    .stat-card .count-up {
      font-size: clamp(2rem, 3vw, 2.6rem);
      letter-spacing: -0.04em;
      color: #3ecf8e;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      transition: transform 0.35s ease, color 0.35s ease;
    }
    .stat-card:hover h3,
    .stat-card:hover .count-up {
      transform: scale(1.06);
      color: #5fe0a6;
    }
    .stat-card p {
      margin-top: 0.4rem;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.92rem;
      max-width: 16ch;
      transition: color 0.3s ease;
    }
    .stat-card:hover p {
      color: rgba(255, 255, 255, 0.9);
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.15rem;
    }
    .service {
      border-radius: 22px;
      padding: 1.6rem 1.35rem;
      background: var(--bg);
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
    }
    .service:nth-child(1),
    .service:hover {
      background: linear-gradient(160deg, var(--main) 0%, var(--main-dark) 100%);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 18px 40px rgba(14, 107, 66, 0.22);
      transform: translateY(-5px);
    }
    .service:nth-child(1) .service-copy p,
    .service:hover .service-copy p { color: rgba(255, 255, 255, 0.88); }
    .service:nth-child(1) .arrow,
    .service:hover .arrow {
      background: #fff;
      color: var(--main);
    }
    .service-copy {
      display: grid;
      gap: 0.55rem;
    }
    .service h3 {
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      line-height: 1.25;
      max-width: 14ch;
    }
    .service-copy p {
      font-size: 0.9rem;
      line-height: 1.5;
      color: var(--muted);
      font-weight: 500;
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
    }
    .service .arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      margin-top: 1.25rem;
      transition: transform 0.25s;
    }
    .service:hover .arrow { transform: rotate(45deg); }

    /* Platform — light teal gradient (from brand swatch #427866) */
    .platform {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 65% 70% at 92% 8%, rgba(66, 120, 102, 0.18), transparent 58%),
        radial-gradient(ellipse 55% 55% at 6% 88%, rgba(66, 120, 102, 0.12), transparent 55%),
        linear-gradient(145deg, #f5faf8 0%, #e4f0eb 42%, #d2e6df 100%);
      color: var(--ink);
    }
    .platform::before {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(66, 120, 102, 0.1) 0%, transparent 68%);
      left: -160px;
      top: -180px;
      pointer-events: none;
    }
    .platform::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
      right: -120px;
      top: -140px;
      pointer-events: none;
    }
    .platform .section-title { color: var(--ink); }
    .platform .section-lead { color: #4a6b60; }
    .platform-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-top: 2.5rem;
      position: relative;
      z-index: 1;
    }
    .platform-item {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(66, 120, 102, 0.14);
      border-radius: 18px;
      padding: 1.45rem 1.35rem;
      backdrop-filter: blur(14px);
      box-shadow: 0 14px 36px rgba(66, 120, 102, 0.08);
      transition:
        background 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }
    .platform-item.reveal {
      transition-delay: var(--card-delay, 0s);
    }
    .platform-item:hover {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(66, 120, 102, 0.35);
      transform: translateY(-6px);
      box-shadow: 0 22px 48px rgba(66, 120, 102, 0.16);
    }
    .platform-item .ico {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(145deg, #5a9a86, #427866);
      color: #fff;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 18px rgba(66, 120, 102, 0.28);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .platform-item:hover .ico {
      transform: scale(1.08) rotate(-3deg);
      box-shadow: 0 12px 24px rgba(66, 120, 102, 0.38);
    }
    .platform-item h4 {
      margin-bottom: 0.4rem;
      color: var(--ink);
    }
    .platform-item p {
      color: #5a736a;
      font-size: 0.92rem;
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
      line-height: 1.55;
    }

    /* Why */
    .why-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2.5rem;
      align-items: center;
    }
    .why-points {
      display: grid;
      gap: 1rem;
      margin-top: 1.75rem;
    }
    .why-point {
      display: flex;
      gap: 1rem;
      padding: 1.1rem 1.2rem;
      background: #f7f8fa;
      border: 1px solid #f0f1f4;
      border-radius: 16px;
      transition: border-color 0.25s;
    }
    .why-point:hover { border-color: var(--main); }
    .why-point h4 { font-size: 1rem; margin-bottom: 0.2rem; }
    .why-point p { color: var(--muted); font-size: 0.9rem; }
    .why-visual {
      background: linear-gradient(160deg, var(--main), var(--main-dark));
      border-radius: 28px;
      min-height: 360px;
      padding: 2rem;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
    }
    .why-visual::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      top: -40px;
      right: -40px;
    }
    .why-visual h3 {
      font-size: 3.4rem;
      letter-spacing: -0.04em;
      position: relative;
      z-index: 1;
    }
    .why-visual p { position: relative; z-index: 1; opacity: 0.9; max-width: 18ch; }

    /* Portfolio */
    .portfolio { background: white; }
    .portfolio-page {
      padding-block: 4.5rem 5rem;
    }
    .folio-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      align-items: stretch;
    }
    .folio-grid[data-count="1"] {
      grid-template-columns: minmax(280px, 460px);
      justify-content: center;
    }
    .folio-grid[data-count="2"] {
      grid-template-columns: repeat(2, minmax(260px, 1fr));
      max-width: 920px;
      margin-inline: auto;
    }
    .folio {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      isolation: isolate;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 14px 34px rgba(7, 32, 50, 0.06);
      transition: transform .25s ease, box-shadow .25s ease;
      display: flex;
      flex-direction: column;
    }
    .folio:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(7, 32, 50, 0.1);
    }
    .folio-media {
      aspect-ratio: 4 / 3;
      width: 100%;
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(4,40,32,.2), rgba(14,107,66,.25)),
        #064033;
    }
    .folio-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
    }
    .folio:hover .folio-media img { transform: scale(1.05); }
    .folio-placeholder {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      color: rgba(255,255,255,.7);
      font-weight: 700;
      padding: 1rem;
      text-align: center;
    }
    .folio-body {
      padding: 1.15rem 1.2rem 1.3rem;
      display: grid;
      gap: 0.35rem;
    }
    .folio-body .tag {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--main-dark);
      background: #e7f2ec;
      border-radius: 999px;
      padding: 0.22rem 0.65rem;
      width: fit-content;
    }
    .folio-body h3 {
      font-size: 1.12rem;
      letter-spacing: -0.02em;
      line-height: 1.3;
      color: var(--ink);
    }
    .folio-body p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.5;
      font-weight: 500;
    }
    .folio-empty {
      grid-column: 1 / -1;
      text-align: center;
      background: #fff;
      border: 1px dashed var(--line);
      border-radius: 18px;
      padding: 2.5rem 1.5rem;
      display: grid;
      gap: 0.35rem;
    }
    .folio-empty strong { color: var(--ink); font-size: 1.05rem; }
    .folio-empty span { color: var(--muted); font-size: 0.92rem; }
    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.15rem;
    }
    .quote {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.6rem;
      box-shadow: 0 10px 30px rgba(7, 32, 50, 0.04);
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
    }
    .quote:hover {
      border-color: rgba(14, 107, 66, 0.25);
      box-shadow: 0 18px 40px rgba(7, 32, 50, 0.1);
    }
    .quote p {
      color: var(--muted);
      font-size: 0.98rem;
      margin: 1rem 0 1.4rem;
    }
    .quote-user {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .quote-user img {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
    }
    .quote-user strong { display: block; font-size: 0.95rem; }
    .quote-user span { color: var(--muted); font-size: 0.82rem; }

    /* Blog */
    .blog { background: var(--bg); }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.15rem;
    }
    .post {
      background: #fff;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
    }
    .post:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 44px rgba(7, 32, 50, 0.1);
      border-color: rgba(14, 107, 66, 0.2);
    }
    .post img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .post:hover img {
      transform: scale(1.06);
    }
    .post-body { padding: 1.25rem 1.35rem 1.5rem; }
    .post-meta {
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.55rem;
    }
    .post h3 {
      font-size: 1.05rem;
      letter-spacing: -0.02em;
      line-height: 1.35;
    }
    .post h3:hover { color: var(--main); }

    /* CTA — light teal gradient panel (from brand swatch #427866) */
    .cta {
      padding: 0 0 5rem;
      background: linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
    }
    .cta-box {
      background:
        radial-gradient(ellipse 55% 75% at 100% 0%, rgba(66, 120, 102, 0.2), transparent 58%),
        radial-gradient(ellipse 45% 55% at 0% 100%, rgba(66, 120, 102, 0.14), transparent 55%),
        linear-gradient(135deg, #f4faf7 0%, #e3efe9 48%, #d0e5dd 100%);
      border: 1px solid rgba(66, 120, 102, 0.12);
      border-radius: 28px;
      padding: clamp(2rem, 5vw, 3.5rem);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
      box-shadow: 0 28px 60px rgba(66, 120, 102, 0.12);
    }
    .cta-box::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
      right: -80px;
      top: -100px;
    }
    .cta-box::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(66, 120, 102, 0.14) 0%, transparent 70%);
      left: -50px;
      bottom: -70px;
      pointer-events: none;
    }
    .cta-box h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      letter-spacing: -0.03em;
      max-width: 16ch;
      position: relative;
      line-height: 1.2;
      color: var(--ink);
    }
    .cta-box .btn {
      background: #427866;
      color: #fff;
      position: relative;
    }

    /* Footer */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, 0.75);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    footer .logo { color: #fff; margin-bottom: 1rem; }
    footer p { max-width: 28ch; font-size: 0.95rem; }
    footer h5 {
      color: #fff;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    footer ul { display: grid; gap: 0.55rem; }
    footer a:hover { color: var(--main); }
    .footer-contact {
      display: grid;
      gap: 0.7rem;
    }
    .footer-contact a,
    .footer-contact .fc-static {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      color: rgba(255,255,255,0.82);
      font-size: 0.9rem;
      line-height: 1.45;
      font-weight: 500;
    }
    .footer-contact a:hover { color: #fff; }
    .footer-contact .fc-icon {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 0.15rem;
      color: var(--main);
      display: inline-grid;
      place-items: center;
    }
    .footer-contact .fc-icon svg {
      width: 16px;
      height: 16px;
      display: block;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.4rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.88rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s ease;
      transition-delay: var(--reveal-delay, 0s);
      filter: blur(2px);
      will-change: opacity, transform;
    }
    .reveal.reveal-left {
      transform: translateX(-36px);
    }
    .reveal.reveal-right {
      transform: translateX(36px);
    }
    .reveal.reveal-scale {
      transform: translateY(20px) scale(0.96);
    }
    .reveal.in {
      opacity: 1;
      transform: none;
      filter: none;
    }

    /* Homepage motion: staggered children + card/image hover polish */
    #home .hero-copy.reveal.in > * {
      animation: homeRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    #home .hero-copy.reveal.in h1 { animation-delay: 0.05s; }
    #home .hero-copy.reveal.in .hero-lead { animation-delay: 0.16s; }
    #home .hero-copy.reveal.in .hero-actions { animation-delay: 0.28s; }
    @keyframes homeRise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: none; }
    }

    #home .service.reveal,
    #home .platform-item.reveal,
    #home .step.reveal,
    #home .stat-card.reveal,
    #home .quote.reveal,
    #home .post.reveal,
    #home .folio.reveal {
      transition-delay: var(--card-delay, var(--step-delay, 0s));
    }

    #home .service:hover,
    #home .platform-item:hover,
    #home .step:hover,
    #home .stat-card:hover,
    #home .quote:hover,
    #home .post:hover {
      transform: translateY(-8px);
    }

    #home .service .arrow,
    #home .platform-item .ico,
    #home .step .step-num,
    #home .feature-icon {
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.3s ease;
    }

    #home .folio-media img,
    #home .post-media img,
    #home .about-media {
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    }

    #home .btn,
    #home .btn-hero,
    #home .contact-submit {
      transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;
    }
    #home .btn:hover,
    #home .btn-hero:hover,
    #home .contact-submit:hover {
      transform: translateY(-3px);
    }

    #home .cta-box {
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }
    #home .cta-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 32px 64px rgba(66, 120, 102, 0.18);
    }

    #home .why-visual {
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
    }
    #home .why-visual:hover {
      transform: translateY(-6px) scale(1.02);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal,
      .reveal.reveal-left,
      .reveal.reveal-right,
      .reveal.reveal-scale {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }
      .about-media--secondary {
        animation: none !important;
      }
      #home .hero-copy.reveal.in > * {
        animation: none !important;
      }
    }

    /* Mobile */
    @media (max-width: 1024px) {
      .hero-banner {
        height: 500px;
        min-height: 480px;
        max-height: 520px;
      }
      .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 4rem;
        padding-bottom: 2rem;
      }
      .hero-copy { max-width: 40rem; }
      .hero-banner h1 { max-width: 20ch; }
      .hero-banner .hero-lead { max-width: 36rem; }
      .hero-shade {
        background:
          linear-gradient(
            90deg,
            rgba(2, 36, 28, 0.86) 0%,
            rgba(4, 54, 44, 0.62) 40%,
            rgba(6, 70, 55, 0.22) 68%,
            rgba(6, 70, 55, 0.06) 100%
          ),
          linear-gradient(180deg, rgba(2, 28, 22, 0.28) 0%, rgba(2, 28, 22, 0.1) 100%);
      }
      .hero-bg {
        background-position: 70% center;
      }
      .about-grid,
      .why-grid { grid-template-columns: 1fr; }
      .about-media-stack {
        min-height: 460px;
        padding: 2.25rem 2rem 1.25rem 0;
        max-width: 560px;
      }
      .about-media--main {
        inset: 2.5rem 14% 0 0;
        min-height: 390px;
      }
      .steps,
      .services-grid,
      .platform-grid,
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .folio-grid,
      .testimonials-grid,
      .blog-grid,
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .folio-grid[data-count="1"] {
        grid-template-columns: minmax(240px, 420px);
        justify-content: center;
      }
      .folio-grid[data-count="2"] {
        grid-template-columns: 1fr 1fr;
        max-width: none;
      }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1.25rem 1.25rem 1.5rem;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        align-items: flex-start;
      }
      .header-brand .nav-links.open {
        background: rgba(4, 40, 32, 0.97);
        border-bottom: 0;
        box-shadow: 0 16px 40px rgba(0,0,0,.25);
      }
      .header-brand .nav-links.open a { color: #fff !important; }
      .menu-btn { display: inline-flex; }
      .nav-cta .btn-dark { display: none; }
      .steps,
      .services-grid,
      .platform-grid,
      .stats-grid,
      .folio-grid,
      .testimonials-grid,
      .blog-grid,
      .footer-grid { grid-template-columns: 1fr; }
      .hero-banner {
        height: clamp(400px, 68vh, 450px);
        min-height: 400px;
        max-height: 450px;
      }
      .hero-inner {
        padding-top: 3.5rem;
        padding-bottom: 1.75rem;
        align-items: center;
      }
      .hero-banner h1 {
        font-size: clamp(1.9rem, 7.5vw, 2.4rem);
        max-width: 18ch;
      }
      .hero-banner .hero-lead {
        font-size: 0.92rem;
        max-width: 34rem;
        margin-top: 0.7rem;
      }
      .hero-banner .hero-actions {
        margin-top: 1.1rem;
      }
      .about-media-stack {
        min-height: 380px;
        padding: 1.75rem 1.35rem 1.1rem 0;
      }
      .about-media--main {
        inset: 2rem 12% 0 0;
        min-height: 300px;
        border-radius: 16px;
      }
      .about-media--secondary {
        width: min(48%, 160px);
        border-width: 3px;
        border-radius: 12px;
      }
      .about-stat {
        left: 0.5rem;
        bottom: 0.65rem;
        padding: 0.75rem 0.9rem;
        max-width: 10rem;
      }
      .about-stat strong,
      .about-stat .count-up {
        font-size: 1.45rem;
      }
      .hero-bg {
        background-position: 78% center;
        background-size: cover;
      }
      .hero-shade {
        background:
          linear-gradient(
            180deg,
            rgba(2, 36, 28, 0.45) 0%,
            rgba(2, 36, 28, 0.28) 38%,
            rgba(2, 36, 28, 0.82) 78%,
            rgba(2, 28, 22, 0.9) 100%
          ),
          linear-gradient(
            90deg,
            rgba(2, 36, 28, 0.72) 0%,
            rgba(4, 54, 44, 0.28) 58%,
            rgba(4, 54, 44, 0.1) 100%
          );
      }
    }

/* Contact form — light panel */
.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.contact-intro {
  position: relative;
  z-index: 1;
}
.contact-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(66, 120, 102, 0.12);
  border: 1px solid rgba(66, 120, 102, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #427866;
}
.contact-note {
  margin-top: 0.9rem;
  max-width: 32ch;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #4a6b60;
}
.contact-form {
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.contact-field {
  display: grid;
  gap: 0.4rem;
}
.contact-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #3d5c52;
}
.contact-field label span {
  font-weight: 500;
  opacity: 0.7;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(66, 120, 102, 0.16);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(66, 120, 102, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}
.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(66, 120, 102, 0.4);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #427866;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(66, 120, 102, 0.2),
    0 12px 28px rgba(66, 120, 102, 0.1);
  transform: translateY(-1px);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn,
.contact-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  background: #427866;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(66, 120, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-submit:hover {
  background: #356557;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(66, 120, 102, 0.35);
}
.contact-submit svg {
  transition: transform 0.25s ease;
}
.contact-submit:hover svg {
  transform: translateX(3px);
}
.alert-front {
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert-front.success { background: #e7f2ec; color: var(--main-dark); }
.alert-front.error { background: #fee2e2; color: #991b1b; }
@media (max-width: 768px) {
  .contact-panel { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; }
}

/* Inner pages */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(14, 107, 66, 0.16), transparent 55%),
    linear-gradient(180deg, #f7fbf9 0%, #eef6f3 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 0.5rem;
}
.page-hero-inner p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 40rem;
  font-weight: 500;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.page-breadcrumb a:hover { color: var(--main); }
.page-section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.page-section-tight { padding-block: 3rem; }
.nav-links a.active { color: var(--main); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.contact-meta {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}
.contact-meta li {
  display: grid;
  gap: 0.2rem;
}
.contact-meta strong { font-size: 0.85rem; color: var(--muted); }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-page-form {
  display: grid;
  gap: 0.8rem;
}
.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #f9fafb;
}
.contact-page-form textarea { min-height: 140px; resize: vertical; }
.page-pagination { margin-top: 2rem; }
@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* About page — light editorial layout (project theme) */
body.about-page {
  background: #fff;
  color: var(--heading);
}
body.about-page footer {
  background: var(--ink);
  border-top: 0;
}
.about-page-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 0% 8%, rgba(14, 107, 66, 0.06), transparent 55%),
    radial-gradient(ellipse 40% 35% at 100% 35%, rgba(4, 54, 44, 0.04), transparent 50%),
    radial-gradient(circle at 8% 12%, rgba(4, 40, 32, 0.045) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 42%, rgba(14, 107, 66, 0.04) 0 1px, transparent 1.5px),
    #ffffff;
  background-size: auto, auto, 28px 28px, 32px 32px, auto;
}
.ap-story,
.ap-transform,
.ap-cta {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}
body.about-page section.ap-story,
body.about-page section.ap-transform,
body.about-page section.ap-cta {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}
.ap-hero {
  position: relative;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  overflow: hidden;
}
body.about-page section.ap-hero {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}
.ap-hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 20%, rgba(14, 107, 66, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(4, 54, 44, 0.06), transparent 50%),
    linear-gradient(180deg, #f3f9f6 0%, #ffffff 55%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}
.ap-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ap-hero-deco-triangles {
  left: max(0.5rem, calc((100% - var(--container)) / 2 - 2.5rem));
  top: 18%;
  width: 56px;
  height: 220px;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent 0 10px,
    transparent 10px 14px
  ),
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M2 7 L11 3.5 L11 10.5 Z' fill='%2304362c' fill-opacity='0.35'/%3E%3C/svg%3E");
  background-size: 14px 18px;
  background-repeat: repeat;
}
.ap-hero-deco-dots {
  right: max(1rem, calc((100% - var(--container)) / 2 - 1rem));
  top: 1.5rem;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(circle, rgba(4, 54, 44, 0.28) 1.2px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.7;
}
.ap-label {
  display: none;
}
.ap-headline {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 1.75rem;
}
.ap-hero .ap-headline {
  display: flex;
  flex-direction: column;
  gap: 0.18em;
  margin-bottom: 1.5rem;
  max-width: none;
  font-size: clamp(1.55rem, 2.9vw, 2.35rem);
  font-weight: 700;
  line-height: 1.26;
  letter-spacing: -0.028em;
}
.ap-hero .ap-headline span {
  display: block;
}
.ap-headline-accent {
  color: var(--main);
}
.ap-story-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--main-soft);
  border: 1px solid rgba(14, 107, 66, 0.16);
  color: var(--main-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ap-story-body {
  display: grid;
  gap: 1rem;
}
.ap-story-body p {
  color: #5f6b66;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 500;
  max-width: 38rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.ap-headline-md {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  max-width: 40rem;
}
.ap-transform {
  position: relative;
  background:
    linear-gradient(180deg, rgba(244, 247, 245, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
  border-top: 1px solid rgba(14, 107, 66, 0.08);
}
.ap-transform .ap-headline {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  margin-bottom: 2.25rem;
  max-width: 42rem;
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.ap-transform .ap-headline span {
  display: block;
}
.ap-story-grid,
.ap-transform-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.ap-hero .ap-story-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}
.ap-story-copy {
  display: grid;
  gap: 1.15rem;
  padding-top: 0.25rem;
  justify-items: start;
}
.ap-story-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 500;
  max-width: 38rem;
}
.ap-hero .ap-story-copy {
  gap: 0;
  padding-top: 0.35rem;
}
.ap-hero .ap-story-copy > p {
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5f6b66;
}
.ap-story-media,
.ap-transform-media {
  position: relative;
}
.ap-story-media img,
.ap-transform-media img {
  width: 100%;
  height: clamp(340px, 42vw, 480px);
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.ap-transform-media img {
  height: clamp(480px, 58vw, 620px);
  box-shadow: 0 24px 50px rgba(4, 40, 32, 0.12);
}
.ap-transform-grid {
  align-items: stretch;
}
.ap-hero .ap-story-media {
  max-width: 440px;
  position: relative;
}
.ap-story-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(4, 40, 32, 0.16),
    0 0 0 1px rgba(14, 107, 66, 0.08);
}
.ap-story-frame img,
.ap-hero .ap-story-media img {
  height: clamp(460px, 56vw, 580px);
  border-radius: 24px;
  box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ap-story-frame:hover img {
  transform: scale(1.04);
}
.ap-story-frame-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(4, 40, 32, 0.35));
  pointer-events: none;
}
.ap-story-quote {
  position: absolute;
  left: 0;
  bottom: 1.4rem;
  max-width: 15rem;
  padding: 1.1rem 1.15rem;
  background: var(--main);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 16px 40px rgba(4, 40, 32, 0.22);
}
.ap-hero .ap-story-quote {
  left: -0.35rem;
  bottom: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  max-width: 12.5rem;
  padding: 1.1rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--main) 0%, var(--main-dark) 100%);
  box-shadow: 0 18px 40px rgba(4, 40, 32, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ap-hero .ap-story-quote span {
  display: block;
}
.ap-values {
  display: grid;
  align-content: start;
  gap: 0;
}
.ap-value {
  padding: 1.45rem 1.15rem 1.55rem;
  margin: 0 -1.15rem;
  border-bottom: 1px solid rgba(14, 107, 66, 0.1);
  border-radius: 14px;
  transition:
    background 0.3s ease,
    transform 0.35s ease,
    box-shadow 0.3s ease;
}
.ap-value.reveal {
  transition-delay: var(--value-delay, 0s);
}
.ap-value:first-child {
  border-top: 1px solid rgba(14, 107, 66, 0.1);
}
.ap-value:hover {
  background: linear-gradient(90deg, rgba(231, 242, 236, 0.85), rgba(255, 255, 255, 0));
  transform: translateX(4px);
  box-shadow: inset 3px 0 0 var(--main);
}
.ap-value-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.65rem;
}
.ap-value-plus {
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1rem;
  border-radius: 8px;
  background: var(--main-soft);
  color: var(--main);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}
.ap-value:hover .ap-value-plus {
  background: var(--main);
  color: #fff;
}
.ap-value h3 {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ap-value-num {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(14, 107, 66, 0.14);
  letter-spacing: -0.04em;
  transition: color 0.3s ease;
}
.ap-value:hover .ap-value-num {
  color: rgba(14, 107, 66, 0.28);
}
.ap-value p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  padding-left: 2.25rem;
  max-width: 36rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.ap-cta {
  position: relative;
  border-top: 1px solid rgba(14, 107, 66, 0.1);
  background:
    radial-gradient(circle at 78% 55%, rgba(14, 107, 66, 0.1), transparent 42%),
    linear-gradient(180deg, #eef5f1 0%, #e7f2ec 100%);
}
.ap-cta-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.ap-cta-copy {
  max-width: 40rem;
}
.ap-cta .ap-headline {
  margin-bottom: 1.35rem;
}
.ap-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.55rem;
  border-radius: 999px;
  background: var(--main);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 28px rgba(14, 107, 66, 0.28);
  transition: transform .2s ease, background .2s ease;
}
.ap-cta-btn:hover {
  background: var(--main-dark);
  transform: translateY(-1px);
}
.ap-cta-mark {
  font-size: 1.35rem;
  color: var(--main);
  margin-top: 0.35rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .ap-story-grid,
  .ap-transform-grid,
  .ap-hero .ap-story-grid {
    grid-template-columns: 1fr;
  }
  .ap-story-media img,
  .ap-transform-media img,
  .ap-hero .ap-story-media img,
  .ap-story-frame img {
    height: 320px;
  }
  .ap-transform-media img {
    height: 400px;
  }
  .ap-hero .ap-story-media {
    max-width: none;
    margin-left: 0;
  }
  .ap-hero .ap-story-media img,
  .ap-story-frame img {
    height: 380px;
  }
  .ap-headline,
  .ap-headline-md,
  .ap-hero .ap-headline {
    max-width: none;
  }
  .ap-hero-deco-triangles {
    display: none;
  }
  .ap-cta-inner {
    flex-direction: column;
  }
  .ap-cta-mark {
    align-self: flex-end;
  }
}
@media (max-width: 640px) {
  .ap-story-quote {
    max-width: 12.5rem;
    font-size: 0.88rem;
    bottom: 1rem;
  }
  .ap-value {
    margin: 0;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
  .ap-value p {
    padding-left: 0;
  }
}

/* Shared page CTA (services / projects) */
.page-cta {
  position: relative;
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
  border-top: 1px solid rgba(4, 40, 32, 0.06);
  background:
    radial-gradient(circle at 82% 50%, rgba(14, 107, 66, 0.07), transparent 40%),
    linear-gradient(180deg, #f4f9f6 0%, #eef5f1 100%);
}
.page-cta-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.page-cta-copy {
  max-width: 42rem;
}
.page-cta-title {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.35rem;
}
.page-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--main);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 28px rgba(14, 107, 66, 0.28);
  transition: transform .2s ease, background .2s ease;
}
.page-cta-btn:hover {
  background: var(--main-dark);
  transform: translateY(-1px);
}
.page-cta-mark {
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.35rem;
  flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 900px) {
  .page-cta-inner {
    flex-direction: column;
  }
  .page-cta-mark {
    align-self: flex-end;
  }
}

/* Solutions page — polished editorial layout */
body.solutions-page {
  background: #f7faf8;
  color: var(--heading);
}
body.solutions-page footer {
  background: var(--ink);
  border-top: 0;
}
.solutions-main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(14, 107, 66, 0.07), transparent 55%),
    #f7faf8;
}

.sol-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sol-reveal.is-in {
  opacity: 1;
  transform: none;
}

.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border-radius: 12px;
  background: #fff;
  color: var(--ink) !important;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.sol-btn:hover {
  background: var(--main-soft);
  color: var(--main-dark) !important;
  transform: translateY(-2px);
}

/* Intro — light editorial (restored) */
.sol-intro {
  position: relative;
  padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  text-align: left;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 80% at 0% 40%, rgba(66, 120, 102, 0.11), transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(66, 120, 102, 0.06), transparent 55%),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 55%, #f4f8f6 100%);
  border-bottom: 1px solid rgba(66, 120, 102, 0.08);
  color: var(--heading);
}
.sol-intro-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(66, 120, 102, 0.05), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(66, 120, 102, 0.07), transparent 42%);
  pointer-events: none;
}
.sol-intro-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.55;
}
.sol-intro-orb--a {
  width: 280px;
  height: 280px;
  right: -60px;
  top: -80px;
  background: rgba(66, 120, 102, 0.12);
}
.sol-intro-orb--b {
  width: 180px;
  height: 180px;
  left: 8%;
  bottom: -70px;
  background: rgba(66, 120, 102, 0.08);
}
.sol-intro .container { position: relative; z-index: 1; }
body.solutions-page section.sol-intro,
body.solutions-page section.sol-block,
body.solutions-page section.sol-focus,
body.solutions-page section.sol-domain,
body.solutions-page section.sol-cta {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
body.solutions-page section.sol-intro {
  padding-top: clamp(3rem, 6vw, 4.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
body.solutions-page section.sol-focus {
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}
body.solutions-page section.sol-cta {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.sol-intro-panel,
.sol-intro-inner {
  position: relative;
  max-width: 52rem;
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.sol-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(66, 120, 102, 0.1);
  border: 1px solid rgba(66, 120, 102, 0.14);
}
.sol-intro-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #427866;
  box-shadow: 0 0 0 4px rgba(66, 120, 102, 0.15);
}
.sol-intro .sol-kicker {
  margin: 0 0 0.85rem;
  color: #427866;
  letter-spacing: 0.14em;
}
.sol-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--main);
  margin-bottom: 0.7rem;
}
.sol-kicker--accent { color: var(--main); }
.sol-kicker--on-dark { color: rgba(255, 255, 255, 0.62); }
.sol-intro-title {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.28;
  color: #1a2421;
  margin-bottom: 1rem;
  letter-spacing: -0.028em;
  max-width: 28ch;
}
.sol-intro-text {
  color: #5b6b66;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 40rem;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.sol-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.sol-intro-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(66, 120, 102, 0.08);
  border: 1px solid rgba(66, 120, 102, 0.14);
}
.sol-intro-meta-item strong {
  color: #427866;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.sol-intro-meta-item span {
  color: #3d524a;
  font-size: 0.84rem;
  font-weight: 600;
}

/* Numbered solution blocks */
.sol-block {
  position: relative;
  background: #fff;
}
.sol-block.is-soft {
  background:
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(14, 107, 66, 0.05), transparent 60%),
    #f4f8f6;
}
.sol-block-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.sol-block-copy {
  grid-area: 1 / 1;
  text-align: left;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.sol-block-media {
  grid-area: 1 / 2;
  width: 100%;
  min-width: 0;
  position: relative;
}
.sol-block.is-reverse .sol-block-copy { grid-area: 1 / 2; }
.sol-block.is-reverse .sol-block-media { grid-area: 1 / 1; }

.sol-big-num {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(3.75rem, 8.5vw, 5.75rem);
  font-weight: 200;
  line-height: 0.82;
  color: transparent;
  background: linear-gradient(180deg, rgba(4, 54, 44, 0.18), rgba(4, 54, 44, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.08em;
  margin: 0 0 0.55rem;
  user-select: none;
}
.sol-block-title {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.sol-block-text,
.sol-domain-copy > p {
  color: #5b6770;
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.sol-extra {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(4, 40, 32, 0.08);
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.sol-check-list {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.75rem;
}
.sol-check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #5b6770;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.sol-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--main);
  box-shadow: 0 0 0 3px rgba(14, 107, 66, 0.16);
}

.sol-media-frame {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe8e3;
  box-shadow:
    0 18px 40px rgba(4, 40, 32, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
}
.sol-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(4, 40, 32, 0.06);
  pointer-events: none;
}
.sol-block-media img,
.sol-domain-media img {
  width: 100%;
  height: clamp(300px, 38vw, 440px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.sol-block:hover .sol-media-frame img,
.sol-domain:hover .sol-media-frame img {
  transform: scale(1.04);
}
.sol-media-quote {
  position: absolute;
  right: 0;
  bottom: 1.35rem;
  max-width: 13rem;
  padding: 1rem 1.1rem;
  background: var(--main);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 16px 36px rgba(4, 40, 32, 0.22);
  z-index: 2;
}
.sol-block.is-reverse .sol-media-quote {
  right: auto;
  left: 0;
  border-radius: 0 14px 14px 0;
}

/* Focus band */
.sol-focus {
  position: relative;
  isolation: isolate;
  text-align: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.sol-focus-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(14, 107, 66, 0.45), transparent 42%),
    radial-gradient(circle at 90% 80%, rgba(14, 107, 66, 0.28), transparent 40%),
    linear-gradient(160deg, #04362c 0%, #042820 55%, #031f1a 100%);
  z-index: 0;
}
.sol-focus .container { position: relative; z-index: 1; }
.sol-focus-title {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.55rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.6rem;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-inline: auto;
  line-height: 1.15;
}
.sol-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.sol-focus-card {
  position: relative;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.45rem 1.3rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.sol-focus-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(157, 240, 210, 0.35);
}
.sol-focus-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(14, 107, 66, 0.35);
  margin-bottom: 1rem;
  position: relative;
}
.sol-focus-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #9df0d2;
  border-radius: 4px;
}
.sol-focus-icon--compass::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px transparent;
  background:
    linear-gradient(#9df0d2, #9df0d2) center/2px 100% no-repeat,
    linear-gradient(#9df0d2, #9df0d2) center/100% 2px no-repeat;
  border-color: #9df0d2;
}
.sol-focus-icon--cloud::before {
  width: 18px;
  height: 12px;
  border-radius: 10px;
  background: #9df0d2;
  border: 0;
  box-shadow: -6px 2px 0 -2px #9df0d2;
}
.sol-focus-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding-right: 1.6rem;
  letter-spacing: -0.01em;
}
.sol-focus-arrow {
  position: absolute;
  top: 1.35rem;
  right: 1.2rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  transition: transform .25s ease, color .25s ease;
}
.sol-focus-card:hover .sol-focus-arrow {
  color: #9df0d2;
  transform: translateX(3px);
}

/* Domains */
.sol-domain {
  border-top: 1px solid rgba(4, 40, 32, 0.06);
  background: #fff;
}
.sol-domain.is-alt {
  background: #f7faf8;
}
.sol-domain-intro {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 24ch;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.sol-domain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.sol-domain.is-reverse .sol-domain-media { order: 2; }
.sol-domain.is-reverse .sol-domain-copy { order: 1; }
.sol-domain-media {
  position: relative;
}
.sol-domain-media img {
  height: clamp(280px, 34vw, 400px);
}
.sol-domain-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  background: rgba(4, 40, 32, 0.88);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.sol-domain-copy h3 {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.85rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* CTA */
.sol-cta {
  border-top: 0;
  background:
    radial-gradient(circle at 85% 40%, rgba(14, 107, 66, 0.35), transparent 42%),
    linear-gradient(135deg, #04362c 0%, #0e6b42 100%);
  color: #fff;
}
.sol-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.sol-cta-copy { max-width: 32rem; }
.sol-cta h2 {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (max-width: 900px) {
  .sol-block-grid,
  .sol-domain-grid,
  .sol-focus-grid {
    grid-template-columns: 1fr;
  }
  .sol-block-copy,
  .sol-block-media,
  .sol-block.is-reverse .sol-block-copy,
  .sol-block.is-reverse .sol-block-media {
    grid-area: auto;
  }
  .sol-block-media { order: -1; }
  .sol-domain.is-reverse .sol-domain-media,
  .sol-domain.is-reverse .sol-domain-copy {
    order: initial;
  }
  .sol-media-quote {
    max-width: 11rem;
    font-size: 0.82rem;
  }
  .sol-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .sol-focus-title { max-width: none; }
}

/* ========== Service detail pages ========== */
body.service-detail-page {
  background: #fff;
}
.svc-detail {
  overflow: hidden;
}
.svc-hero {
  position: relative;
  padding: clamp(3.25rem, 6.5vw, 5rem) 0 clamp(2.75rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(ellipse 60% 80% at 10% 10%, rgba(62, 207, 142, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 60% at 95% 80%, rgba(4, 40, 32, 0.45), transparent 50%),
    linear-gradient(145deg, #04362c 0%, #0a5636 45%, #0e6b42 100%);
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}
.svc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}
.svc-breadcrumb a:hover { color: #fff; }
.svc-eyebrow {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.svc-hero h1 {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.svc-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 36rem;
  font-weight: 500;
}
.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.svc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: var(--main-dark) !important;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform .2s ease, background .2s ease;
}
.svc-btn-primary:hover {
  background: #f3fbf7;
  transform: translateY(-2px);
}
.svc-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background .2s ease, border-color .2s ease;
}
.svc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.svc-hero-media {
  position: relative;
}
.svc-hero-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.svc-hero-frame img {
  width: 100%;
  height: clamp(280px, 36vw, 420px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-hero-frame:hover img {
  transform: scale(1.04);
}
.svc-hero-float {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 14rem;
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.svc-hero-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--main-dark);
  margin-bottom: 0.2rem;
}
.svc-hero-float span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.svc-stats {
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}
.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(14, 107, 66, 0.1);
  box-shadow: 0 18px 44px rgba(4, 40, 32, 0.1);
}
.svc-stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
}
.svc-stat strong {
  display: block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--main);
  letter-spacing: -0.03em;
}
.svc-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.svc-body {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.svc-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
.svc-highlights h2,
.svc-process-head h2,
.svc-related .svc-process-head h2 {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.svc-section-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.svc-check-list {
  display: grid;
  gap: 0.85rem;
}
.svc-check-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border-radius: 14px;
  background: linear-gradient(90deg, #f3f9f6, #fff);
  border: 1px solid rgba(14, 107, 66, 0.1);
  color: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.svc-check-list li:hover {
  transform: translateX(4px);
  border-color: rgba(14, 107, 66, 0.28);
  box-shadow: 0 10px 24px rgba(14, 107, 66, 0.08);
}
.svc-side-card {
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(62, 207, 142, 0.2), transparent 55%),
    linear-gradient(160deg, #0e6b42, #04362c);
  color: #fff;
  box-shadow: 0 22px 48px rgba(4, 40, 32, 0.2);
}
.svc-side-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.svc-side-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.svc-side-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.svc-side-link {
  color: #fff !important;
  font-weight: 800;
  font-size: 0.92rem;
}
.svc-side-link:hover { color: #3ecf8e !important; }

.svc-process {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(14, 107, 66, 0.06), transparent 55%),
    var(--bg);
}
.svc-process-head {
  margin-bottom: 1.75rem;
}
.svc-process .svc-eyebrow,
.svc-related .svc-eyebrow {
  color: var(--main);
  background: var(--main-soft);
  border-color: rgba(14, 107, 66, 0.14);
}
.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-process-card {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(14, 107, 66, 0.1);
  box-shadow: 0 10px 28px rgba(4, 40, 32, 0.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.svc-process-card.reveal {
  transition-delay: var(--svc-delay, 0s);
}
.svc-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 107, 66, 0.35);
  box-shadow: 0 18px 40px rgba(14, 107, 66, 0.12);
}
.svc-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 1.75rem;
  margin-bottom: 0.9rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: var(--main-soft);
  color: var(--main);
  font-size: 0.78rem;
  font-weight: 800;
}
.svc-process-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.svc-process-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.svc-related {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0 clamp(1rem, 2vw, 1.5rem);
}
.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-related-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #fff, #f4faf7);
  border: 1px solid rgba(14, 107, 66, 0.12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 107, 66, 0.4);
  box-shadow: 0 16px 36px rgba(14, 107, 66, 0.12);
}
.svc-related-card h3 {
  font-size: 1.08rem;
  color: var(--ink);
}
.svc-related-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.svc-related-card span {
  margin-top: 0.35rem;
  color: var(--main);
  font-weight: 800;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .svc-hero-grid,
  .svc-body-grid,
  .svc-process-grid,
  .svc-related-grid,
  .svc-stats-grid {
    grid-template-columns: 1fr;
  }
  .svc-process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-hero h1 { max-width: none; }
  .svc-hero-frame img { height: 260px; }
  .svc-stats { margin-top: 0; padding: 1.5rem 0 0; }
}
@media (max-width: 640px) {
  .svc-process-grid { grid-template-columns: 1fr; }
  .svc-hero-float { max-width: 11rem; font-size: 0.85rem; }
}
