/*
Theme Name: Grupo Nortistaz
Theme URI: https://grupontz.org/
Author: Grupo Nortistaz
Author URI: https://grupontz.org/
Description: Tema institucional personalizado do Grupo Nortistaz, com landing page responsiva, modo claro/escuro e acesso ao painel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: grupo-nortistaz
*/

/* =========================================================
       GRUPO NORTISTAZ — LANDING PAGE
       Identidade principal extraída da referência enviada:
       Verde: #1E4B43 | Creme: #F4E6CB
       ========================================================= */

    :root {
      --brand: #1e4b43;
      --brand-strong: #163b35;
      --brand-soft: #dce8e4;
      --cream: #f4e6cb;
      --cream-soft: #fbf6ea;
      --paper: #fffdf8;
      --ink: #10201d;
      --muted: #60706c;
      --line: rgba(30, 75, 67, 0.16);
      --surface: rgba(255, 253, 248, 0.86);
      --surface-solid: #fffdf8;
      --shadow: 0 22px 70px rgba(20, 52, 46, 0.12);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --container: 1180px;
      --header-h: 86px;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

    html[data-theme="dark"] {
      --cream: #142b27;
      --cream-soft: #10231f;
      --paper: #0d1b18;
      --ink: #f6ecd8;
      --muted: #a9bbb6;
      --line: rgba(244, 230, 203, 0.13);
      --surface: rgba(18, 39, 34, 0.88);
      --surface-solid: #122722;
      --brand-soft: #244a42;
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Segoe UI Variable", "Inter", "SF Pro Display", "Segoe UI", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: clip;
    }

    body.menu-open {
      overflow: hidden;
    }

    ::selection {
      background: var(--brand);
      color: #fff8e8;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      color: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 18px;
      color: var(--brand);
      font-size: 0.78rem;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    html[data-theme="dark"] .eyebrow {
      color: #b8d5ce;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 2px;
      background: currentColor;
    }

    .section {
      padding: 112px 0;
      position: relative;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 56px;
    }

    .section-title {
      margin: 0;
      max-width: 820px;
      font-size: clamp(2.2rem, 5vw, 4.7rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 780;
    }

    .section-copy {
      margin: 24px 0 0;
      max-width: 660px;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.75;
    }

    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      border-radius: 999px;
      padding: 0 22px;
      cursor: pointer;
      font-weight: 760;
      font-size: 0.95rem;
      transition:
        transform .25s var(--ease),
        background-color .25s var(--ease),
        color .25s var(--ease),
        border-color .25s var(--ease);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--brand);
      color: #fff7e7;
    }

    .btn-primary:hover {
      background: var(--brand-strong);
    }

    .btn-secondary {
      border: 1px solid var(--line);
      background: transparent;
      color: var(--ink);
    }

    .btn-secondary:hover {
      border-color: rgba(30, 75, 67, 0.42);
      background: var(--surface-solid);
    }

    .icon {
      width: 19px;
      height: 19px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.85;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    /* ================= HEADER ================= */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: color-mix(in srgb, var(--cream) 92%, transparent);
      border-bottom: 1px solid transparent;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .site-header.scrolled {
      border-color: var(--line);
      box-shadow: 0 10px 30px rgba(17, 47, 41, 0.05);
    }

    .header-inner {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 26px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: max-content;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      overflow: hidden;
      flex: 0 0 auto;
      background: transparent;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      display: block;
    }

    .brand-text {
      line-height: 1.05;
      min-width: 0;
    }

    .brand-name {
      display: block;
      font-weight: 850;
      font-size: 0.98rem;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .brand-sub {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 5px;
      border: 1px solid rgba(30, 75, 67, .12);
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.50);
    }

    html[data-theme="dark"] .main-nav {
      background: rgba(12, 28, 24, .58);
    }

    .main-nav a {
      position: relative;
      padding: 10px 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: .89rem;
      font-weight: 720;
      transition: color .2s ease, background-color .2s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--ink);
      background: var(--surface-solid);
    }

    .header-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
    }

    .theme-toggle,
    .menu-toggle {
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: transparent;
      cursor: pointer;
      transition: background-color .2s ease, transform .2s ease;
    }

    .theme-toggle:hover,
    .menu-toggle:hover {
      background: var(--surface-solid);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
    }

    .header-enter {
      min-height: 44px;
      padding-inline: 19px;
    }

    /* ================= HERO ================= */

    .hero {
      background: var(--cream);
      padding: 76px 0 54px;
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
      gap: 76px;
      align-items: center;
    }

    .hero-title {
      margin: 0;
      max-width: 760px;
      font-size: clamp(3.4rem, 6.7vw, 7.2rem);
      line-height: .88;
      letter-spacing: -0.072em;
      font-weight: 820;
      text-wrap: balance;
    }

    .hero-title span {
      display: block;
      color: var(--brand);
    }

    html[data-theme="dark"] .hero-title span {
      color: #d4e8e2;
    }

    .hero-copy {
      margin: 30px 0 0;
      max-width: 650px;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.7vw, 1.28rem);
      line-height: 1.68;
    }

    .hero-actions {
      margin-top: 34px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-note {
      margin-top: 42px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 14px;
      max-width: 610px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.5;
    }

    .hero-note strong {
      color: var(--ink);
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .visual-frame {
      position: relative;
      width: min(100%, 560px);
      aspect-ratio: 1 / .96;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(30, 75, 67, .18);
      background: var(--paper);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .visual-topbar {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      border-bottom: 1px solid var(--line);
      background: var(--surface-solid);
    }

    .visual-dots {
      display: flex;
      gap: 7px;
    }

    .visual-dots i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand);
      opacity: .36;
    }

    .visual-label {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--muted);
    }

    .visual-body {
      height: calc(100% - 64px);
      display: grid;
      grid-template-columns: 92px 1fr;
    }

    .visual-sidebar {
      border-right: 1px solid var(--line);
      padding: 20px 14px;
      display: grid;
      align-content: start;
      gap: 13px;
    }

    .visual-sidebar span {
      height: 38px;
      border-radius: 10px;
      background: var(--brand-soft);
    }

    .visual-sidebar span:first-child {
      background: var(--brand);
    }

    .visual-content {
      padding: 26px;
      display: grid;
      grid-template-rows: auto auto 1fr;
      gap: 18px;
    }

    .visual-headline {
      width: 58%;
      height: 18px;
      border-radius: 5px;
      background: var(--ink);
      opacity: .92;
    }

    .visual-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .visual-stat {
      min-height: 86px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--surface-solid);
    }

    .visual-stat b {
      display: block;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
      color: var(--brand);
    }

    .visual-stat small {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      line-height: 1.3;
    }

    .visual-chart {
      position: relative;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 18px;
      overflow: hidden;
      background: var(--cream-soft);
    }

    .visual-chart::before,
    .visual-chart::after {
      content: "";
      position: absolute;
      inset-inline: 18px;
      border-top: 1px dashed var(--line);
    }

    .visual-chart::before { top: 38%; }
    .visual-chart::after { top: 68%; }

    .chart-bars {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 18px;
      height: 70%;
      display: flex;
      align-items: end;
      gap: 10px;
    }

    .chart-bars i {
      flex: 1;
      min-width: 8px;
      border-radius: 5px 5px 2px 2px;
      background: var(--brand);
      opacity: .86;
      transform-origin: bottom;
      animation: rise .9s var(--ease) both;
    }

    .chart-bars i:nth-child(1) { height: 38%; animation-delay: .05s; }
    .chart-bars i:nth-child(2) { height: 58%; animation-delay: .10s; }
    .chart-bars i:nth-child(3) { height: 47%; animation-delay: .15s; }
    .chart-bars i:nth-child(4) { height: 76%; animation-delay: .20s; }
    .chart-bars i:nth-child(5) { height: 64%; animation-delay: .25s; }
    .chart-bars i:nth-child(6) { height: 92%; animation-delay: .30s; }

    @keyframes rise {
      from { transform: scaleY(.15); opacity: 0; }
    }

    .floating-tag {
      position: absolute;
      right: -28px;
      bottom: 76px;
      width: 208px;
      padding: 18px;
      border-radius: 18px;
      background: var(--brand);
      color: #fff7e6;
      box-shadow: 0 22px 46px rgba(18, 56, 49, .22);
    }

    .floating-tag small {
      display: block;
      opacity: .68;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .floating-tag strong {
      display: block;
      margin-top: 7px;
      line-height: 1.22;
      font-size: 1.02rem;
    }


    .hero-photo-wrap {
      position: relative;
      width: min(100%, 620px);
      margin-left: auto;
    }

    .hero-photo-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(30, 75, 67, .18);
      background: #dbe7f3;
      box-shadow: var(--shadow);
    }

    .hero-photo-card img {
      width: 100%;
      display: block;
    }

    .hero-chip {
      position: absolute;
      left: 22px;
      padding: 11px 15px;
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.96);
      border: 1px solid rgba(30, 75, 67, .12);
      box-shadow: 0 14px 30px rgba(17, 47, 41, 0.08);
      color: var(--ink);
      font-size: .84rem;
      font-weight: 760;
      line-height: 1;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .hero-chip--one { top: 28px; }
    .hero-chip--two { top: 86px; }
    .hero-chip--three { top: 144px; }

    .testimonials {
      background: var(--paper);
      border-top: 1px solid var(--line);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 72px;
      align-items: center;
    }

    .testimonial-points {
      display: grid;
      gap: 18px;
      margin-top: 32px;
    }

    .testimonial-point {
      padding: 0 0 18px;
      border-bottom: 1px solid var(--line);
    }

    .testimonial-point:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .testimonial-point h3 {
      margin: 0 0 8px;
      font-size: 1.14rem;
      letter-spacing: -.02em;
    }

    .testimonial-point p {
      margin: 0;
      color: var(--muted);
      line-height: 1.68;
    }

    .testimonial-shot {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--surface-solid);
      box-shadow: var(--shadow);
    }

    
    .hero-photo-card img {
      width: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hero-chip {
      max-width: 240px;
    }

    .testimonials-copy {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
      font-size: 1.04rem;
      max-width: 640px;
    }

    .testimonial-cards {
      display: grid;
      gap: 16px;
      margin-top: 30px;
    }

    .testimonial-card {
      padding: 22px;
      border-radius: 22px;
      background: var(--surface-solid);
      border: 1px solid var(--line);
      box-shadow: 0 10px 30px rgba(20, 52, 46, 0.05);
    }

    .testimonial-text {
      margin: 0;
      color: var(--ink);
      line-height: 1.7;
      font-size: 1rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
    }

    .testimonial-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      overflow: hidden;
      flex: 0 0 auto;
      border: 1px solid var(--line);
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .avatar-pos-left img { object-position: 12% 32%; }
    .avatar-pos-center img { object-position: 50% 28%; }
    .avatar-pos-right img { object-position: 92% 26%; }
    .avatar-pos-woman-1 img { object-position: 64% 22%; }
    .avatar-pos-woman-2 img { object-position: 36% 18%; }

    .testimonial-meta strong {
      display: block;
      font-size: .98rem;
      letter-spacing: -.02em;
    }

    .testimonial-meta span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: .88rem;
    }

    .testimonial-shot img {
      width: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center;
      display: block;
    }


    .testimonial-shot img {
      width: 100%;
      display: block;
    }

    .shot-label {
      position: absolute;
      left: 18px;
      top: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.92);
      color: var(--brand);
      font-size: .78rem;
      font-weight: 820;
      letter-spacing: .08em;
      text-transform: uppercase;
      border: 1px solid rgba(30, 75, 67, .12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }


    /* ================= STRIP ================= */

    .service-strip {
      background: var(--brand);
      color: #fff6e3;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .strip-grid {
      min-height: 98px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .strip-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 24px;
      border-left: 1px solid rgba(255,255,255,.12);
    }

    .strip-item:last-child {
      border-right: 1px solid rgba(255,255,255,.12);
    }

    .strip-item .icon {
      opacity: .78;
    }

    .strip-item span {
      font-size: .88rem;
      font-weight: 720;
      line-height: 1.25;
    }

    /* ================= SERVICES ================= */

    .services {
      background: var(--paper);
    }

    .services-list {
      border-top: 1px solid var(--line);
    }

    .service-row {
      display: grid;
      grid-template-columns: 72px minmax(220px, .9fr) minmax(0, 1.35fr) 44px;
      gap: 24px;
      align-items: center;
      min-height: 136px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
      transition: padding .25s var(--ease), background-color .25s ease;
    }

    .service-row:hover {
      padding-left: 18px;
      padding-right: 18px;
      background: var(--cream-soft);
    }

    .service-number {
      color: var(--muted);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .09em;
    }

    .service-name {
      margin: 0;
      font-size: clamp(1.35rem, 2.5vw, 2.2rem);
      line-height: 1.06;
      letter-spacing: -.04em;
    }

    .service-description {
      color: var(--muted);
      line-height: 1.7;
      max-width: 600px;
    }

    .service-arrow {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--brand);
      transition: transform .25s var(--ease), background-color .25s ease, color .25s ease;
    }

    .service-row:hover .service-arrow {
      transform: translate(4px, -4px);
      background: var(--brand);
      color: #fff7e6;
    }

    /* ================= ALL-IN-ONE ================= */

    .all-in-one {
      background: var(--cream);
      border-block: 1px solid var(--line);
    }

    .all-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 90px;
      align-items: start;
    }

    .all-sticky {
      position: sticky;
      top: calc(var(--header-h) + 38px);
    }

    .all-title {
      margin: 0;
      font-size: clamp(2.7rem, 5.4vw, 5.5rem);
      line-height: .96;
      letter-spacing: -.06em;
      font-weight: 800;
    }

    .all-title span {
      color: var(--brand);
    }

    html[data-theme="dark"] .all-title span {
      color: #d2e4de;
    }

    .all-copy {
      margin-top: 24px;
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.06rem;
    }

    .principles {
      border-top: 1px solid var(--line);
    }

    .principle {
      padding: 30px 0;
      border-bottom: 1px solid var(--line);
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 18px;
    }

    .principle-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--brand);
      color: #fff7e6;
    }

    .principle h3 {
      margin: 0 0 8px;
      font-size: 1.18rem;
      letter-spacing: -.02em;
    }

    .principle p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ================= ECOSYSTEM ================= */

    .ecosystem {
      background: var(--brand);
      color: #fff7e6;
      overflow: hidden;
    }

    .ecosystem .eyebrow,
    .ecosystem .section-copy {
      color: rgba(255, 247, 230, .72);
    }

    .ecosystem .eyebrow::before {
      background: currentColor;
    }

    .ecosystem-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 80px;
      align-items: end;
    }

    .ecosystem-title {
      margin: 0;
      font-size: clamp(2.7rem, 5.6vw, 5.7rem);
      line-height: .94;
      letter-spacing: -.06em;
      max-width: 650px;
    }

    .ecosystem-panel {
      border-top: 1px solid rgba(255,255,255,.17);
    }

    .ecosystem-row {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.17);
    }

    .ecosystem-row small {
      color: rgba(255,255,255,.55);
      text-transform: uppercase;
      letter-spacing: .1em;
      font-size: .72rem;
      font-weight: 800;
    }

    .ecosystem-row p {
      margin: 0;
      line-height: 1.62;
      color: rgba(255,247,230,.86);
    }

    .panel-access {
      margin-top: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .panel-access .btn {
      background: #fff6e2;
      color: var(--brand);
    }

    .panel-access .btn:hover {
      background: #fffdf8;
    }

    .panel-caption {
      color: rgba(255,255,255,.56);
      font-size: .82rem;
    }


    .hero-photo-card--main {
      aspect-ratio: 1.18 / 1;
      min-height: 520px;
      background: var(--brand);
    }

    .hero-photo-card--main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-photo-overlay {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(15, 45, 39, .88);
      color: #fff7e6;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.14);
    }

    .hero-photo-kicker {
      display: block;
      margin-bottom: 7px;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .11em;
      font-weight: 850;
      opacity: .72;
    }

    .hero-photo-overlay strong {
      display: block;
      max-width: 420px;
      font-size: 1.08rem;
      line-height: 1.35;
    }

    .real-people {
      background: var(--cream);
      border-block: 1px solid var(--line);
    }

    .real-people-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 72px;
      align-items: center;
    }

    .real-people-media {
      overflow: hidden;
      border-radius: 28px;
      min-height: 560px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: var(--surface-solid);
    }

    .real-people-media img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: center;
    }

    .real-people-copy .section-title {
      font-size: clamp(2.7rem, 5vw, 5rem);
    }

    .real-people-list {
      margin-top: 34px;
      border-top: 1px solid var(--line);
    }

    .real-people-list > div {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
    }

    .real-people-list span {
      color: var(--brand);
      font-size: .76rem;
      font-weight: 850;
      letter-spacing: .08em;
    }

    .real-people-list p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .real-people-list strong {
      color: var(--ink);
    }

    .testimonials-clean {
      background: var(--paper);
      border-top: 1px solid var(--line);
    }

    .testimonials-clean-head {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 48px;
      align-items: end;
      margin-bottom: 48px;
    }

    .testimonial-disclaimer {
      margin: 0;
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 14px;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.55;
      background: var(--cream-soft);
    }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .testimonial-card {
      min-height: 330px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--surface-solid);
    }

    .quote-mark {
      color: var(--brand);
      font-family: Georgia, serif;
      font-size: 3.8rem;
      line-height: .8;
    }

    .testimonial-text {
      margin: 22px 0 34px;
      color: var(--ink);
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .testimonial-person {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff7e6;
      font-size: .78rem;
      font-weight: 850;
      background: var(--brand);
      border: 1px solid rgba(255,255,255,.18);
    }

    .avatar--2 { opacity: .88; }
    .avatar--3 { opacity: .76; }

    .testimonial-person strong,
    .testimonial-person small {
      display: block;
    }

    .testimonial-person strong {
      font-size: .92rem;
    }

    .testimonial-person small {
      margin-top: 3px;
      color: var(--muted);
      font-size: .78rem;
    }


    /* ================= METHOD ================= */

    .method {
      background: var(--paper);
    }

    .method-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .method-step {
      min-height: 330px;
      padding: 34px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: background-color .25s ease;
    }

    .method-step:hover {
      background: var(--cream-soft);
    }

    .method-step strong {
      color: var(--brand);
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .method-step h3 {
      margin: auto 0 14px;
      font-size: 1.75rem;
      letter-spacing: -.04em;
      line-height: 1.05;
    }

    .method-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ================= CTA ================= */

    .cta {
      padding: 90px 0;
      background: var(--cream);
      border-top: 1px solid var(--line);
    }

    .cta-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 48px;
      padding: 56px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .cta-title {
      margin: 0;
      max-width: 780px;
      font-size: clamp(2.8rem, 5.6vw, 5.8rem);
      line-height: .94;
      letter-spacing: -.065em;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 210px;
    }

    /* ================= FOOTER ================= */

    .footer {
      background: #102e28;
      color: #fff7e5;
      padding: 70px 0 30px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 70px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .footer .brand-sub,
    .footer-copy,
    .footer-link {
      color: rgba(255,247,229,.62);
    }

    .footer-copy {
      margin: 22px 0 0;
      max-width: 420px;
      line-height: 1.72;
    }

    .footer-title {
      margin: 0 0 18px;
      font-size: .76rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: rgba(255,247,229,.52);
    }

    .footer-links {
      display: grid;
      gap: 11px;
    }

    .footer-link {
      width: max-content;
      transition: color .2s ease;
    }

    .footer-link:hover {
      color: #fff7e5;
    }

    .footer-bottom {
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      gap: 22px;
      color: rgba(255,247,229,.48);
      font-size: .78rem;
    }

    /* ================= MOBILE MENU ================= */

    .mobile-menu {
      display: none;
      position: fixed;
      inset: var(--header-h) 0 0;
      z-index: 90;
      padding: 18px 24px 34px;
      background: var(--cream);
      transform: translateY(-14px);
      opacity: 0;
      visibility: hidden;
      transition:
        opacity .25s ease,
        transform .25s var(--ease),
        visibility .25s ease;
    }

    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mobile-nav {
      display: grid;
      border-top: 1px solid var(--line);
    }

    .mobile-nav a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 66px;
      border-bottom: 1px solid var(--line);
      font-size: 1.22rem;
      font-weight: 760;
    }

    .mobile-menu-actions {
      margin-top: 26px;
      display: grid;
      gap: 10px;
    }

    .mobile-menu-actions .btn {
      width: 100%;
    }

    /* ================= REVEAL ================= */

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition:
        opacity .7s var(--ease),
        transform .7s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .01ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1040px) {
      .header-inner {
        grid-template-columns: 1fr auto;
      }

      .main-nav {
        display: none;
      }

      .menu-toggle {
        display: grid;
      }

      .mobile-menu {
        display: block;
      }

      .hero-grid,
      .all-grid,
      .ecosystem-grid,
      .real-people-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .hero {
        padding-top: 56px;
      }


      .hero-visual {
        min-height: auto;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .visual-frame {
        width: 100%;
        max-width: 720px;
      }

      .floating-tag {
        right: 20px;
        bottom: 24px;
      }

      .strip-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .strip-item:nth-child(2) {
        border-right: 1px solid rgba(255,255,255,.12);
      }

      .strip-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
      }

      .all-sticky {
        position: static;
      }

      .method-grid {
        grid-template-columns: 1fr 1fr;
      }

      .testimonials-clean-head {
        grid-template-columns: 1fr;
      }

      .testimonial-cards {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-h: 74px;
      }

      .container {
        width: min(100% - 32px, var(--container));
      }

      .section {
        padding: 82px 0;
      }

      .section-head {
        margin-bottom: 38px;
      }

      .section-title {
        font-size: clamp(2.45rem, 12vw, 4.1rem);
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 10px;
      }

      .brand-mark img {
        border-radius: inherit;
      }

      .brand-name {
        font-size: .91rem;
      }

      .brand-sub {
        display: none;
      }

      .header-actions {
        gap: 6px;
      }

      .theme-toggle {
        display: none;
      }

      .header-enter {
        min-height: 40px;
        padding-inline: 15px;
        font-size: .84rem;
      }

      .menu-toggle {
        width: 40px;
        height: 40px;
      }

      .hero {
        padding: 48px 0 40px;
      }


      .hero-chip {
        left: 14px;
        font-size: .74rem;
        padding: 10px 12px;
      }

      .hero-chip--one { top: 16px; }
      .hero-chip--two { top: 66px; }
      .hero-chip--three { top: 116px; }

      .hero-photo-card img,
      .testimonial-shot img {
        min-height: 360px;
      }

      .testimonials-grid {
        gap: 30px;
      }

      .shot-label {
        left: 12px;
        top: 12px;
        font-size: .7rem;
        padding: 9px 12px;
      }


      .hero-title {
        font-size: clamp(3.2rem, 16vw, 5.2rem);
        max-width: 8ch;
      }

      .hero-photo-card--main {
        min-height: 420px;
      }

      .hero-photo-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px 16px;
      }

      .real-people-media,
      .real-people-media img {
        min-height: 420px;
      }

      .testimonial-cards {
        grid-template-columns: 1fr;
      }

      .testimonial-card {
        min-height: 280px;
      }

      .hero-copy {
        font-size: 1rem;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-note {
        align-items: flex-start;
      }

      .visual-body {
        grid-template-columns: 64px 1fr;
      }

      .visual-sidebar {
        padding: 14px 10px;
      }

      .visual-sidebar span {
        height: 30px;
      }

      .visual-content {
        padding: 16px;
      }

      .visual-stats {
        grid-template-columns: 1fr 1fr;
      }

      .visual-stat:last-child {
        display: none;
      }

      .floating-tag {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 28px);
        margin: -20px auto 0;
      }

      .hero-visual {
        display: block;
      }

      .strip-grid {
        grid-template-columns: 1fr;
      }

      .strip-item,
      .strip-item:nth-child(2),
      .strip-item:last-child {
        border-right: 1px solid rgba(255,255,255,.12);
        border-bottom: 1px solid rgba(255,255,255,.12);
      }

      .service-row {
        grid-template-columns: 42px 1fr 40px;
        gap: 12px;
        padding: 24px 0;
      }

      .service-description {
        grid-column: 2 / -1;
        padding-right: 6px;
      }

      .service-row:hover {
        padding-left: 0;
        padding-right: 0;
        background: transparent;
      }

      .all-grid,
      .ecosystem-grid {
        gap: 42px;
      }

      .principle {
        grid-template-columns: 46px 1fr;
      }

      .ecosystem-row {
        grid-template-columns: 1fr;
        gap: 9px;
      }

      .method-grid {
        grid-template-columns: 1fr;
      }

      .method-step {
        min-height: 280px;
      }

      .cta {
        padding: 70px 0;
      }

      .cta-box {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .cta-actions {
        width: 100%;
      }

      .footer {
        padding-top: 56px;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-brand {
        grid-column: auto;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 420px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .brand {
        gap: 8px;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        font-size: .75rem;
      }

      .header-enter span {
        display: none;
      }

      .header-enter {
        width: 40px;
        padding: 0;
      }

      .visual-frame {
        border-radius: 20px;
      }

      .visual-topbar {
        height: 54px;
      }

      .visual-body {
        height: calc(100% - 54px);
      }

      .visual-content {
        gap: 12px;
      }

      .visual-stat {
        min-height: 74px;
        padding: 12px;
      }

      .visual-chart {
        min-height: 148px;
      }
    }
