﻿:root {
    --bg:        #07090c;
    --bg-2:      #0a0d12;
    --green:     oklch(0.74 0.17 155);
    --green-soft:oklch(0.74 0.17 155 / 0.16);
    --blue:      oklch(0.66 0.16 240);
    --blue-soft: oklch(0.66 0.16 240 / 0.16);
    --fg:        #e9eef2;
    --fg-soft:   rgba(233,238,242,0.72);
    --fg-mute:   rgba(233,238,242,0.58);
    --fg-faint:  rgba(233,238,242,0.30);
    --border:    rgba(255,255,255,0.08);
    --border-2:  rgba(255,255,255,0.14);
    --panel:     rgba(255,255,255,0.04);
    --panel-2:   rgba(255,255,255,0.06);
    --display:   "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono:      "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --maxw:      1200px;
    --radius:    14px;
    --radius-lg: 20px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--display);
    background: var(--bg);
    color: var(--fg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  body.menu-open { overflow: hidden; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  a, button { -webkit-tap-highlight-color: transparent; }
  :focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
  }
  .skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    background: var(--bg-2);
    color: var(--fg);
    padding: 10px 14px;
    font-weight: 700;
    transition: transform 160ms ease;
  }
  .skip-link:focus-visible { transform: translateY(0); }

  /* Background atmosphere */
  .bg-atmos {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
      radial-gradient(1100px 600px at 12% -5%, oklch(0.74 0.17 155 / 0.10), transparent 60%),
      radial-gradient(900px 600px at 95% 8%, oklch(0.66 0.16 240 / 0.10), transparent 60%),
      radial-gradient(1200px 700px at 50% 110%, oklch(0.66 0.16 240 / 0.08), transparent 60%);
  }
  .bg-grid {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  /* ---------- Header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 60;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(7,9,12,0.72);
    border-bottom: 1px solid var(--border);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
  }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text {
    display: flex; flex-direction: column; line-height: 1;
  }
  .brand-text .b1 { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
  .brand-text .b2 { font-family: var(--mono); font-size: 10.5px; color: var(--fg-mute); margin-top: 4px; letter-spacing: 0.02em; }

  nav.menu {
    display: flex; gap: 4px; align-items: center;
  }
  nav.menu a {
    padding: 8px 14px; border-radius: 999px;
    color: var(--fg-soft); font-size: 14px; font-weight: 500;
    transition: color 160ms ease, background 160ms ease;
  }
  nav.menu a:hover { color: var(--fg); background: var(--panel); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    justify-content: center;
    padding: 10px 16px; border-radius: 999px;
    font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
    text-align: center;
    border: 1px solid var(--border-2);
    background: var(--panel);
    color: var(--fg);
    transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, box-shadow 200ms ease;
  }
  .btn:hover { background: var(--panel-2); border-color: rgba(255,255,255,0.22); }
  .btn-primary {
    background: linear-gradient(180deg, oklch(0.78 0.17 155), oklch(0.68 0.17 155));
    color: #04140b; border-color: transparent;
    box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 24px -10px oklch(0.74 0.17 155 / 0.6);
  }
  .btn-primary:hover { transform: translateY(-1px); }
  .btn-ghost { background: transparent; }
  .btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

  .menu-toggle {
    display: none;
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--panel); border: 1px solid var(--border);
    align-items: center; justify-content: center; color: var(--fg);
  }

  /* ---------- Eyebrow / labels ---------- */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11px;
    color: var(--fg-mute); letter-spacing: 0.14em; text-transform: uppercase;
  }
  .eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 10px var(--green);
  }
  .eyebrow .bar { width: 18px; height: 1px; background: var(--border-2); }

  /* ---------- Hero ---------- */
  section.hero { padding: 88px 0 96px; position: relative; }
  .hero-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
  }
  .hero-copy, .hero-visual, .project, .svc, .step, .about-text { min-width: 0; }
  .hero h1 {
    font-size: clamp(40px, 5.6vw, 72px);
    line-height: 1.02; letter-spacing: -0.035em;
    margin: 18px 0 22px;
    font-weight: 700;
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, oklch(0.86 0.14 155), oklch(0.66 0.17 155));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero p.lead {
    font-size: 17.5px; color: var(--fg-soft); max-width: 540px; margin: 0 0 32px;
    text-wrap: pretty;
  }
  .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-meta {
    margin-top: 36px; display: flex; gap: 22px; flex-wrap: wrap;
    padding-top: 22px; border-top: 1px dashed var(--border);
  }
  .hero-meta .item {
    display: flex; flex-direction: column; gap: 2px;
  }
  .hero-meta .k { font-family: var(--mono); font-size: 10.5px; color: var(--fg-mute); letter-spacing: 0.1em; text-transform: uppercase; }
  .hero-meta .v { font-size: 14px; color: var(--fg); font-weight: 500; }

  /* Hero visual: terminal + status panel */
  .hero-visual {
    position: relative; aspect-ratio: 1 / 1; width: min(100%, 520px); max-width: 520px; margin-left: auto;
  }
  .hv-glow {
    position: absolute; inset: 12% 12% 12% 12%;
    background: radial-gradient(circle at 30% 30%, oklch(0.74 0.17 155 / 0.18), transparent 60%),
                radial-gradient(circle at 70% 70%, oklch(0.66 0.16 240 / 0.18), transparent 60%);
    filter: blur(20px);
    z-index: 0;
  }
  .panel {
    position: absolute; background: rgba(10,13,18,0.78);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  }
  .term {
    top: 10%; left: 0; width: 78%;
    z-index: 2;
  }
  .term-head {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-bottom: 1px solid var(--border);
  }
  .term-dots { display: flex; gap: 6px; }
  .term-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
  .term-title { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); }
  .term-body {
    padding: 14px 16px 18px; font-family: var(--mono); font-size: 12.5px;
    color: var(--fg-soft); line-height: 1.85;
  }
  .term-body .ln { display: flex; gap: 10px; }
  .term-body .ln .pre { color: var(--fg-mute); user-select: none; }
  .term-body .cmd { color: var(--fg); }
  .term-body .ok { color: oklch(0.82 0.16 155); }
  .term-body .info { color: oklch(0.74 0.13 240); }
  .term-body .mute { color: var(--fg-mute); }
  .term-body .cursor::after {
    content: "▍"; color: oklch(0.82 0.16 155);
    margin-left: 2px; animation: blink 1.05s steps(1) infinite;
  }
  @keyframes blink { 50% { opacity: 0; } }

  .status-card {
    bottom: 6%; right: 0; width: 70%;
    z-index: 3; padding: 16px 18px;
  }
  .status-card .row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .status-card .row + .row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
  .status-card .lbl { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em; }
  .status-card .val { font-size: 14px; font-weight: 600; }
  .status-progress { flex: 1; }
  .pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; padding: 4px 8px; border-radius: 999px; border: 1px solid var(--border-2); color: var(--fg-soft); }
  .pill .pdot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
  .pill.blue .pdot { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
  .bar-track { width: 100%; height: 4px; background: var(--border); border-radius: 999px; overflow: hidden; margin-top: 6px; }
  .bar-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--blue)); }
  .performance-score { width: 92%; }

  /* Coordinate ticks decoration */
  .coord {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, var(--border) 1px, transparent 1px),
      linear-gradient(to bottom, var(--border) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 75%);
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 75%);
    opacity: 0.5;
  }

  /* ---------- Trust bar ---------- */
  .trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012), transparent);
  }
  .trust-inner {
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 12px; color: var(--fg-mute); letter-spacing: 0.04em;
  }
  .trust-item svg { color: var(--fg-soft); }

  /* ---------- Sections ---------- */
  section { padding: 96px 0; position: relative; }
  .section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; max-width: 720px; }
  .section-head h2 {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.05; letter-spacing: -0.03em; margin: 0;
    font-weight: 700; text-wrap: balance;
  }
  .section-head p {
    color: var(--fg-soft); font-size: 16.5px; margin: 0; max-width: 600px; text-wrap: pretty;
  }
  .section-head.center { margin-left: auto; margin-right: auto; align-items: center; text-align: center; }

  /* ---------- Benefits grid ---------- */
  .benefits {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
    background: var(--panel);
  }
  .benefit {
    padding: 24px 22px; border-right: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px;
    min-height: 140px;
    transition: background 200ms ease;
  }
  .benefit:hover { background: rgba(255,255,255,0.025); }
  .benefit:last-child { border-right: none; }
  .benefit .ico {
    width: 28px; height: 28px; color: var(--fg);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .benefit .t { font-size: 14.5px; font-weight: 600; }
  .benefit .d { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.04em; }

  /* ---------- Portfolio ---------- */
  .projects {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .project {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  }
  .project-link {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .project:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
  }
  .p-frame {
    aspect-ratio: 4 / 3; position: relative;
    background:
      radial-gradient(circle at 70% 20%, oklch(0.74 0.17 155 / 0.18), transparent 55%),
      radial-gradient(circle at 20% 90%, oklch(0.66 0.16 240 / 0.16), transparent 55%),
      var(--bg-2);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .p-frame .browser {
    position: absolute; inset: 16% 10% 0 10%;
    background: rgba(10,13,18,0.9); border: 1px solid var(--border-2);
    border-radius: 10px 10px 0 0; overflow: hidden;
    backdrop-filter: blur(6px);
  }
  .p-frame .browser .bar {
    height: 24px; display: flex; align-items: center; gap: 6px; padding: 0 10px;
    border-bottom: 1px solid var(--border);
  }
  .p-frame .browser .bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.16); }
  .p-frame .browser .url {
    flex: 1; height: 14px; margin-left: 8px;
    background: rgba(255,255,255,0.04); border-radius: 4px;
    font-family: var(--mono); font-size: 9px; color: var(--fg-mute);
    display: flex; align-items: center; padding: 0 6px;
  }
  .p-frame .browser .canvas {
    padding: 14px; display: grid; gap: 8px;
  }
  .p-frame .browser .canvas .strip {
    height: 8px; border-radius: 3px; background: rgba(255,255,255,0.08);
  }
  .p-frame .browser .canvas .strip.short { width: 55%; }
  .p-frame .browser .canvas .strip.med   { width: 80%; }
  .p-frame .browser .canvas .accent {
    height: 22px; border-radius: 4px;
    background: linear-gradient(90deg, oklch(0.74 0.17 155 / 0.6), oklch(0.66 0.16 240 / 0.5));
    width: 38%;
  }
  .p-frame .browser .canvas .row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  }
  .p-frame .browser .canvas .row .b {
    height: 28px; border-radius: 4px; background: rgba(255,255,255,0.05);
  }
  .p-tag {
    position: absolute; top: 14px; left: 14px;
    font-family: var(--mono); font-size: 10.5px; color: var(--fg-mute);
    background: rgba(7,9,12,0.7); border: 1px solid var(--border);
    padding: 5px 9px; border-radius: 999px;
    backdrop-filter: blur(6px);
    letter-spacing: 0.06em;
  }
  .p-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .p-body h3 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
  .p-body p { margin: 0; color: var(--fg-soft); font-size: 14px; line-height: 1.55; }
  .p-body, .svc, .step, .test, .faq-a-inner, .foot-grid { overflow-wrap: anywhere; }
  .p-meta {
    margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border);
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .chip {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--fg-soft); padding: 4px 8px;
    border: 1px solid var(--border); border-radius: 999px;
    letter-spacing: 0.04em;
  }
  .chip-status {
    color: var(--fg);
    border-color: oklch(0.74 0.17 155 / 0.42);
    background: var(--green-soft);
  }

  /* Project frame variants */
  .pf-electric .browser .canvas .accent { background: linear-gradient(90deg, oklch(0.78 0.17 75), oklch(0.74 0.17 155 / 0.6)); }
  .pf-tech .browser .canvas .accent { background: linear-gradient(90deg, oklch(0.66 0.16 240 / 0.7), oklch(0.74 0.17 200 / 0.5)); }
  .pf-bakery .browser .canvas .accent { background: linear-gradient(90deg, oklch(0.78 0.16 30), oklch(0.74 0.17 350 / 0.5)); }

  /* ---------- Services grid ---------- */
  .services {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .svc {
    background: var(--panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 26px 24px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
  }
  .svc::before {
    content: ""; position: absolute; inset: -1px;
    border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, oklch(0.74 0.17 155 / 0.5), transparent 35%, transparent 70%, oklch(0.66 0.16 240 / 0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 240ms ease;
  }
  .svc:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
  }
  .svc:hover::before { opacity: 1; }
  .svc .ico {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid var(--border-2);
    background: rgba(255,255,255,0.03);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--fg);
  }
  .svc h3 { margin: 0; font-size: 16.5px; letter-spacing: -0.01em; font-weight: 600; }
  .svc p { margin: 0; color: var(--fg-soft); font-size: 14px; }
  .svc .num {
    position: absolute; top: 18px; right: 20px;
    font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em;
  }

  /* ---------- Process ---------- */
  .process {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    padding: 8px;
  }
  .process-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    background: var(--bg-2); border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border);
  }
  .step {
    padding: 28px 22px; position: relative;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 12px;
    min-height: 200px;
  }
  .step:last-child { border-right: none; }
  .step .num { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.1em; }
  .step h4 { margin: 0; font-size: 17px; letter-spacing: -0.01em; font-weight: 600; }
  .step p { margin: 0; color: var(--fg-soft); font-size: 13.5px; }
  .step .dot {
    position: absolute; top: 24px; right: 22px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border-2);
  }
  .step:nth-child(1) .dot { background: var(--green); box-shadow: 0 0 10px var(--green); }

  /* ---------- Niches ---------- */
  .niches {
    display: flex; gap: 10px; flex-wrap: wrap;
  }
  .niche {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    border: 1px solid var(--border); border-radius: 999px;
    background: var(--panel);
    font-size: 14px; color: var(--fg);
    transition: border-color 200ms ease, background 200ms ease;
  }
  .niche:hover { border-color: rgba(255,255,255,0.18); background: var(--panel-2); }
  .niche .nd {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-soft); border: 1px solid var(--green);
  }
  .niche:nth-child(2n) .nd { background: var(--blue-soft); border-color: var(--blue); }

  /* ---------- About ---------- */
  .about {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
  }
  .about-card {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: var(--panel); padding: 28px;
    position: relative; overflow: hidden;
    aspect-ratio: 4 / 5;
  }
  .about-card .photo-slot {
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(45deg, rgba(255,255,255,0.018), rgba(255,255,255,0.018) 8px, transparent 8px, transparent 16px),
      radial-gradient(circle at 30% 20%, oklch(0.74 0.17 155 / 0.16), transparent 60%),
      radial-gradient(circle at 80% 80%, oklch(0.66 0.16 240 / 0.16), transparent 60%);
  }
  .about-card .ph-label {
    position: absolute; bottom: 22px; left: 22px;
    font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em;
    background: rgba(7,9,12,0.7); border: 1px solid var(--border);
    padding: 6px 10px; border-radius: 6px;
  }
  .about-card .corner {
    position: absolute; top: 18px; right: 18px;
    width: 22px; height: 22px;
    border-top: 1px solid var(--border-2);
    border-right: 1px solid var(--border-2);
  }
  .about-card .corner.bl {
    top: auto; bottom: 18px; right: auto; left: 18px;
    border-top: none; border-right: none;
    border-bottom: 1px solid var(--border-2);
    border-left: 1px solid var(--border-2);
  }
  .about-text h2 { font-size: clamp(30px, 3.6vw, 42px); margin: 12px 0 18px; letter-spacing: -0.03em; line-height: 1.05; }
  .about-text p { color: var(--fg-soft); font-size: 16px; margin: 0 0 14px; }
  .skills-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
  .skill {
    font-family: var(--mono); font-size: 12px;
    padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px;
    color: var(--fg-soft);
  }

  /* ---------- Testimonials placeholder ---------- */
  .testimonials {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  .test {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--panel); padding: 24px;
    display: flex; flex-direction: column; gap: 14px; min-height: 220px;
  }
  .test .slot-label {
    align-self: flex-start;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-mute);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 9px;
  }
  .test .body {
    flex: 1; color: var(--fg-mute); font-size: 14px; line-height: 1.6;
    font-style: italic;
  }
  .test .who {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px dashed var(--border);
  }
  .test .who .av {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px dashed var(--border-2);
  }
  .test .who .name { font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.06em; text-transform: uppercase; }

  /* ---------- FAQ ---------- */
  .faq-list {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--panel);
  }
  .faq-item {
    border-top: 1px solid var(--border);
    transition: background 180ms ease;
  }
  .faq-item:first-child { border-top: none; }
  .faq-item:hover { background: rgba(255,255,255,0.02); }
  .faq-q {
    width: 100%;
    text-align: left;
    background: transparent; border: 0; color: var(--fg);
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  }
  .faq-q span:first-child { min-width: 0; }
  .faq-q .icn {
    width: 28px; height: 28px; flex: 0 0 28px;
    border: 1px solid var(--border-2); border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--fg-soft);
    transition: transform 220ms ease, color 220ms ease, border-color 220ms ease;
  }
  .faq-item.open .faq-q .icn {
    transform: rotate(45deg); color: var(--green); border-color: var(--green-soft);
  }
  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 320ms ease;
  }
  .faq-item.open .faq-a { grid-template-rows: 1fr; }
  .faq-a-inner {
    padding: 0 24px 22px; color: var(--fg-soft); font-size: 14.5px; line-height: 1.6;
    max-width: 720px;
    min-height: 0;
    overflow: hidden;
  }

  /* ---------- CTA Final ---------- */
  .cta-final {
    border: 1px solid var(--border); border-radius: 24px;
    padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
    background:
      radial-gradient(800px 300px at 50% 100%, oklch(0.74 0.17 155 / 0.16), transparent 60%),
      radial-gradient(700px 260px at 50% 0%, oklch(0.66 0.16 240 / 0.12), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  }
  .cta-final::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
    pointer-events: none;
  }
  .cta-final h2 {
    font-size: clamp(30px, 4vw, 50px); letter-spacing: -0.035em;
    line-height: 1.05; margin: 14px 0 14px; font-weight: 700;
    text-wrap: balance;
  }
  .cta-final p {
    color: var(--fg-soft); font-size: 16.5px; margin: 0 auto 26px; max-width: 560px;
    text-wrap: pretty;
  }

  /* ---------- Footer ---------- */
  footer.site {
    border-top: 1px solid var(--border);
    padding: 56px 0 36px;
    margin-top: 48px;
  }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
    margin-bottom: 36px;
  }
  .foot-brand { margin-bottom: 16px; }
  .foot-desc {
    color: var(--fg-mute);
    font-size: 14px;
    max-width: 320px;
    margin-top: 14px;
  }
  .foot-grid h5 {
    font-family: var(--mono); font-size: 11px; color: var(--fg-mute); letter-spacing: 0.14em; text-transform: uppercase;
    margin: 0 0 14px; font-weight: 500;
  }
  .foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-grid a { color: var(--fg-soft); font-size: 14px; }
  .foot-grid a:hover { color: var(--fg); }
  .foot-copy {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding-top: 22px; border-top: 1px solid var(--border);
    font-family: var(--mono); font-size: 11.5px; color: var(--fg-mute); letter-spacing: 0.04em;
  }

  /* ---------- WhatsApp floating ---------- */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 70;
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(180deg, oklch(0.78 0.17 155), oklch(0.62 0.18 155));
    color: #04140b;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 32px -12px oklch(0.74 0.17 155 / 0.6),
                0 0 0 1px rgba(255,255,255,0.1) inset;
    transition: transform 200ms ease;
  }
  .wa-float:hover { transform: translateY(-2px) scale(1.04); }

  /* ---------- Responsive ---------- */
  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { margin: 0 auto; max-width: 460px; }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .benefit { border-right: 1px solid var(--border); }
    .benefit:nth-child(2n) { border-right: none; }
    .benefit { border-bottom: 1px solid var(--border); }
    .benefit:nth-last-child(-n+2) { border-bottom: none; }
    .projects { grid-template-columns: 1fr; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; }
    .about { grid-template-columns: 1fr; gap: 36px; }
    .testimonials { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    nav.menu { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-cta { display: none; }
    section { padding: 72px 0; }
    section.hero { padding: 56px 0 64px; }
    .container { padding: 0 18px; }
    .hero h1 { font-size: clamp(38px, 12vw, 52px); }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-grid { gap: 0; }
    .hero-visual { display: none; }
    .trust-inner { justify-content: flex-start; }
    .benefits { grid-template-columns: 1fr; }
    .benefit { border-right: none !important; border-bottom: 1px solid var(--border); }
    .benefit:last-child { border-bottom: none; }
    .services { grid-template-columns: 1fr; }
    .process { padding: 4px; }
    .step { min-height: auto; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-copy { flex-direction: column; align-items: flex-start; }
    .cta-final { padding: 40px 22px; }
    .wa-float {
      right: 16px;
      bottom: 16px;
      width: 52px;
      height: 52px;
    }
  }

  /* Mobile menu drawer */
  .mobile-menu {
    display: none;
    position: fixed; inset: 68px 0 0 0; z-index: 55;
    background: rgba(7,9,12,0.96); backdrop-filter: blur(14px);
    padding: 28px 24px;
    border-top: 1px solid var(--border);
    flex-direction: column; gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 0; border-bottom: 1px solid var(--border);
    font-size: 18px;
  }
  .mobile-menu .btn { margin-top: 18px; justify-content: center; }
  @media (max-width: 640px) {
    .mobile-menu .btn { width: 100%; min-height: 48px; }
  }

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

