    /* ─── DESIGN SYSTEM TOKENS ─── */
    :root {
      --bg:      #ffffff;
      --fg:      #000000;
      --accent:  #0000ee;
      --surface: #ffffff;
      --muted:   #e2e2e2;
      --border:  #dbdbdb;
      --radius:  8px;
      --font: UberMoveText, system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--fg);
      font-size: 16px;
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      padding-top: 64px;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      height: 64px;
    }

    .nav-brand {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--fg);
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .nav-brand img {
      height: 34px;
      width: auto;
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-phone-wrap {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-phone {
      font-size: 14px;
      font-weight: 700;
      color: var(--fg);
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: color 0.15s;
    }

    .nav-phone-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      animation: nav-phone-vibrate 2s linear infinite;
      transform-origin: 50% 50%;
    }

    @keyframes nav-phone-vibrate {
      0%, 22%, 100% { transform: rotate(0deg); }
      2%   { transform: rotate(-10deg); }
      5%   { transform: rotate(9deg); }
      8%   { transform: rotate(-9deg); }
      11%  { transform: rotate(7deg); }
      14%  { transform: rotate(-6deg); }
      17%  { transform: rotate(4deg); }
      20%  { transform: rotate(-2deg); }
    }

    .nav-phone:hover { color: var(--accent); }

    /* ─── NEAR YOU BADGE ─── */
    .near-you {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      border-radius: var(--radius);
      background: var(--surface);
      border: 1px solid var(--border);
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
      width: fit-content;
      margin: 16px 0;
    }

    .nav-arrow-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-arrow {
      width: 20px;
      height: 20px;
    }

    .near-you-text b {
      font-variant-numeric: tabular-nums;
    }

    @media (max-width: 480px) {
      .near-you { width: 100%; justify-content: center; }
    }

    /* ─── SCROLL TO TOP ─── */
    #scroll-top {
      position: fixed;
      bottom: 24px;
      right: 20px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      background: var(--accent);
      color: #ffffff;
      font-size: 22px;
      line-height: 1;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      pointer-events: none;
      z-index: 999;
    }

    #scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .nav-since {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.35);
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-since.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #nav-year {
      color: var(--fg);
    }

    .btn-sm {
      display: inline-block;
      background: var(--fg);
      color: var(--bg);
      padding: 10px 20px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: opacity 0.15s;
    }

    .btn-sm:hover { opacity: 0.75; }

    /* ─── HERO ─── */
    .hero {
      background: var(--bg);
      color: var(--fg);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 72px 40px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 64px;
    }

    .hero-text {
      min-width: 0;
    }

    .hero-laptop {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .laptop-svg {
      width: 100%;
      max-width: 500px;
      height: auto;
      filter: drop-shadow(0 24px 64px rgba(0,0,238,0.10)) drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    }

    /* ─── LAPTOP ANIMATIONS ─── */
    .lap-scan {
      animation: lap-scan-sweep 2.2s linear infinite;
    }
    @keyframes lap-scan-sweep {
      0%   { transform: translateY(0px); opacity: 0; }
      4%   { opacity: 0.55; }
      96%  { opacity: 0.55; }
      100% { transform: translateY(228px); opacity: 0; }
    }

    .lap-code { animation: lap-cline 4.5s ease-in-out infinite; opacity: 0; }
    .lc1 { animation-delay: 0s; }
    .lc2 { animation-delay: -0.56s; }
    .lc3 { animation-delay: -1.12s; }
    .lc4 { animation-delay: -1.68s; }
    .lc5 { animation-delay: -2.24s; }
    .lc6 { animation-delay: -2.8s; }
    .lc7 { animation-delay: -3.36s; }
    .lc8 { animation-delay: -3.92s; }
    @keyframes lap-cline {
      0%   { opacity: 0; transform: translateX(-6px); }
      8%   { opacity: 1;  transform: translateX(0); }
      68%  { opacity: 1; }
      78%  { opacity: 0; }
      100% { opacity: 0; }
    }

    .lap-prog-fill {
      animation: lap-prog 4.5s cubic-bezier(.4,0,.2,1) infinite;
    }
    @keyframes lap-prog {
      0%   { width: 0px; }
      68%  { width: 368px; }
      80%  { width: 368px; }
      100% { width: 0px; }
    }

    .lap-status1 { animation: lap-s1 4.5s ease infinite; }
    @keyframes lap-s1 {
      0%,68% { opacity: 1; }
      76%    { opacity: 0; }
      100%   { opacity: 0; }
    }

    .lap-status2 { animation: lap-s2 4.5s ease infinite; opacity: 0; }
    @keyframes lap-s2 {
      0%,70%  { opacity: 0; }
      78%     { opacity: 1; }
      92%     { opacity: 1; }
      100%    { opacity: 0; }
    }

    .lap-check {
      animation: lap-chk 4.5s ease infinite;
      opacity: 0;
      transform-origin: 280px 128px;
    }
    @keyframes lap-chk {
      0%,70%  { opacity: 0; transform: scale(0.75); }
      78%     { opacity: 1; transform: scale(1); }
      92%     { opacity: 1; }
      100%    { opacity: 0; }
    }

    .label-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      margin-bottom: 28px;
    }

    .brand-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--fg);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .brand-badge strong {
      position: relative;
      font-size: 16px;
      font-weight: 800;
      color: var(--fg);
      letter-spacing: -0.01em;
      z-index: 0;
    }

    .brand-badge strong::before {
      content: '';
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 1px;
      height: 9px;
      background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 35%, transparent), color-mix(in srgb, var(--accent) 20%, transparent));
      border-radius: 3px;
      z-index: -1;
    }

    .brand-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(0,0,238,0.55);
      animation: brand-dot-pulse 2s ease-out infinite;
    }

    @keyframes brand-dot-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(0,0,238,0.55); }
      70%  { box-shadow: 0 0 0 6px rgba(0,0,238,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,0,238,0); }
    }

    .brand-badge span { color: rgba(0,0,0,0.45); font-weight: 600; }

    .hero-logo {
      height: 120px;
      width: auto;
      display: block;
      margin: 0 auto;
    }

    .hero-inner > .hero-logo {
      grid-column: 1 / -1;
      order: -2;
      margin-bottom: 8px;
    }

    .tw-wrap { margin-bottom: 48px; max-width: 100%; }

    .tw-line-1 {
      font-size: clamp(40px, 6.5vw, 96px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.025em;
      text-transform: uppercase;
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: none;
      white-space: pre-line;
    }

    @media (max-width: 480px) {
      .tw-line-1 { font-size: clamp(30px, 9vw, 40px); }
    }

    .tw-line-2 {
      font-size: clamp(22px, 3.2vw, 48px);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--fg);
      margin-top: 20px;
      min-height: 1.15em;
      overflow-wrap: break-word;
      hyphens: auto;
    }

    .tw-line-3-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 20px;
    }

    .tw-line-3 {
      position: relative;
      display: inline-block;
      font-size: clamp(15px, 1.6vw, 20px);
      font-weight: 700;
      letter-spacing: -0.005em;
      color: var(--fg);
      min-height: 1.5em;
      overflow-wrap: break-word;
      word-break: break-word;
      max-width: 100%;
    }

    .pencil-underline {
      position: absolute;
      left: 0;
      bottom: -11px;
      width: 100%;
      height: 14px;
      overflow: visible;
      pointer-events: none;
    }

    .pencil-underline path {
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      opacity: 0;
      animation: pencil-draw 1.4s ease-in-out 1 forwards;
      animation-delay: 6s;
    }

    @keyframes pencil-draw {
      0%   { stroke-dashoffset: 300; opacity: 0; }
      15%  { opacity: 1; }
      100% { stroke-dashoffset: 0; opacity: 1; }
    }

    .tw-cursor {
      display: inline-block;
      color: var(--accent);
      font-weight: 300;
      margin-left: 2px;
      animation: tw-blink 0.75s step-end infinite;
    }

    @keyframes tw-blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    .hero-utp {
      display: grid;
      grid-template-columns: repeat(3, auto);
      justify-content: start;
      gap: 8px 40px;
      margin-top: 32px;
      margin-bottom: 44px;
    }

    .utp-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
      white-space: nowrap;
    }

    .utp-chip::before {
      content: '';
      display: inline-block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    @media (max-width: 600px) {
      .hero-utp { grid-template-columns: 1fr; gap: 10px; }
    }

    .hero-checklist {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 32px;
      margin-bottom: 44px;
    }

    .check-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
    }

    .check-item::before {
      content: '✔';
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
      line-height: 1.5;
    }

    .hero-sub {
      font-size: clamp(16px, 1.8vw, 20px);
      color: rgba(0,0,0,0.5);
      margin-bottom: 48px;
      max-width: 44ch;
      line-height: 1.6;
    }

    .btn-primary {
      display: inline-block;
      background: var(--accent);
      color: #ffffff;
      padding: 18px 36px;
      border-radius: var(--radius);
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: opacity 0.15s;
    }

    .btn-primary:hover { opacity: 0.82; }

    /* ─── FREE DIAGNOSTICS BAND ─── */
    .diagnostics-band {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 40px;
    }

    .diagnostics-band-inner {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .diagnostics-text {
      display: flex;
      align-items: center;
      gap: 20px;
      padding-bottom: 4px;
    }

    .diagnostics-van-img {
      width: 100%;
      max-width: 420px;
      height: auto;
      display: block;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px;
    }

    .free-badge {
      flex-shrink: 0;
      background: var(--fg);
      color: var(--bg);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 7px 14px;
      border-radius: var(--radius);
    }

    .diagnostics-band strong {
      font-size: 15px;
      font-weight: 700;
    }

    .diagnostics-band p {
      font-size: 14px;
      color: rgba(0,0,0,0.5);
      margin-top: 2px;
    }

    /* ─── SERVICES ─── */
    .services {
      background: var(--surface);
      padding: 80px 40px;
    }

    .services-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      margin-bottom: 48px;
    }

    .service-group { margin-bottom: 40px; }

    .service-group:last-child { margin-bottom: 0; }

    .group-heading {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.38);
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .service-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 32px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }

    .service-info { flex: 1; min-width: 0; }

    .service-name {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .service-desc {
      font-size: 13px;
      color: rgba(0,0,0,0.5);
      line-height: 1.5;
      max-width: 60ch;
    }

    .service-price {
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* ─── HOW IT WORKS ─── */
    .how {
      background: var(--bg);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .how-inner { max-width: 1200px; margin: 0 auto; }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 48px;
    }

    .how-step {
      background: var(--bg);
      padding: 40px 32px;
    }

    .step-num {
      font-size: 48px;
      font-weight: 700;
      color: var(--muted);
      line-height: 1;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }

    .step-title {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 14px;
      color: rgba(0,0,0,0.5);
      line-height: 1.6;
    }

    /* ─── CALCULATOR ─── */
    .calculator {
      background: var(--bg);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .calculator-inner { max-width: 1200px; margin: 0 auto; }

    .calculator-inner h2 {
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .calc-sub {
      font-size: 15px;
      color: rgba(0,0,0,0.5);
      max-width: 640px;
      margin-bottom: 40px;
    }

    .calc-box {
      display: flex;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .calc-fields {
      background: var(--bg);
      flex: 1 1 60%;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .calc-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      margin-bottom: 10px;
    }

    .calc-field input[type="number"] {
      width: 100%;
      max-width: 220px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 16px;
      font-family: var(--font);
      font-size: 15px;
      color: var(--fg);
      outline: none;
      transition: border-color 0.15s;
      appearance: none;
    }

    .calc-field input[type="number"]:focus { border-color: var(--fg); }

    .calc-toggle {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .calc-opt {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 18px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .calc-opt:hover { border-color: var(--fg); }

    .calc-opt.active {
      background: var(--fg);
      border-color: var(--fg);
      color: #fff;
    }

    .calc-result {
      background: var(--surface);
      flex: 1 1 40%;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .calc-result-label {
      font-size: 13px;
      font-weight: 700;
      color: rgba(0,0,0,0.5);
      margin-bottom: 12px;
    }

    .calc-result-price {
      font-size: clamp(26px, 3vw, 34px);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .calc-result-note {
      font-size: 13px;
      color: rgba(0,0,0,0.5);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    /* ─── MASTERS ─── */
    .masters {
      background: var(--bg);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .masters-inner { max-width: 1200px; margin: 0 auto; }

    .masters-inner h2 {
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .masters-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .master-card {
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .master-photo {
      width: 100%;
      aspect-ratio: 701/561;
      background-image: url('images/mrgjyo21-59893C8F-C497-456D-9E74-02329382D5C2.webp');
      background-size: 200%;
      background-repeat: no-repeat;
    }

    .master-photo-1 { background-position: 0% 0%; }
    .master-photo-2 { background-position: 100% 0%; }
    .master-photo-3 { background-position: 0% 100%; }
    .master-photo-4 { background-position: 100% 100%; }

    .master-body {
      padding: 20px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .master-name {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .master-role {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.38);
      margin-bottom: 12px;
    }

    .master-bio {
      font-size: 14px;
      color: rgba(0,0,0,0.5);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .master-cta {
      display: block;
      width: 100%;
      margin-top: auto;
      padding: 13px 20px;
      font-size: 12px;
      text-align: center;
    }

    /* ─── WORK EXAMPLES ─── */
    .works {
      background: var(--surface);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .works-inner { max-width: 1200px; margin: 0 auto; }

    .works-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .work-card {
      background: var(--bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .work-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--muted);
      overflow: hidden;
      flex-shrink: 0;
    }

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

    .work-body {
      padding: 20px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .work-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.38);
      margin-bottom: 8px;
    }

    .work-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
      line-height: 1.3;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: calc(1.3em * 2);
    }

    .work-desc {
      font-size: 13px;
      color: rgba(0,0,0,0.5);
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ─── STATS ─── */
    .stats-row {
      display: flex;
      gap: 0;
      margin: 32px 0 48px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .stat-item {
      flex: 1;
      padding: 24px 28px;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .stat-label {
      font-size: 13px;
      color: rgba(0,0,0,0.45);
      margin-top: 6px;
    }

    @media (max-width: 768px) {
      .stats-row { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }
    }

    /* ─── REVIEWS ─── */
    .reviews {
      background: var(--bg);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .reviews-inner { max-width: 1200px; margin: 0 auto; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .review-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 28px 28px 32px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
    }

    .review-score {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 16px;
    }

    .review-text {
      font-size: 15px;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 24px;
    }

    .review-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 16px;
    }

    .review-footer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--fg);
      color: var(--bg);
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      letter-spacing: 0;
      overflow: hidden;
    }

    .review-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .review-author {
      font-size: 14px;
      font-weight: 700;
    }

    .review-meta {
      font-size: 12px;
      color: rgba(0,0,0,0.4);
      margin-top: 2px;
    }

    /* ─── GUARANTEE ─── */
    .guarantee {
      background: var(--bg);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .guarantee-inner { max-width: 1200px; margin: 0 auto; }

    .guarantee-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .guarantee-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 40px 44px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .guarantee-icon {
      width: 48px;
      height: 48px;
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .guarantee-card h3 {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1.25;
    }

    .guarantee-card p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(0,0,0,0.55);
    }

    /* ─── PENSION DISCOUNT BANNER ─── */
    .pension {
      padding: 40px 40px 0;
    }

    .pension-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 260px;
      padding: 40px 48px;
    }

    .pension-text { position: relative; z-index: 2; max-width: 480px; }

    .pension-text h2 {
      color: var(--fg);
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }

    .pension-form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .pension-input {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0 16px;
      height: 52px;
      font-size: 15px;
      font-family: inherit;
      width: 220px;
      color: var(--fg);
    }
    .pension-input::placeholder { color: rgba(0,0,0,0.4); }

    .pension-btn {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 0 24px;
      height: 52px;
      font-weight: 700;
      font-size: 15px;
      font-family: inherit;
      cursor: pointer;
      transition: opacity 0.15s ease;
    }
    .pension-btn:hover { opacity: 0.82; }

    .pension-photo-wrap {
      position: absolute;
      right: 0;
      bottom: 0;
      top: 0;
      width: 46%;
      overflow: hidden;
      pointer-events: none;
    }

    .pension-photo-wrap img {
      position: absolute;
      right: -6%;
      bottom: 0;
      height: 128%;
      width: auto;
      max-width: none;
    }

    @media (max-width: 860px) {
      .pension { padding: 32px 20px 0; }
      .pension-inner {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px 0;
        min-height: 0;
        text-align: center;
      }
      .pension-text { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
      .pension-form { flex-direction: column; align-items: center; width: 100%; max-width: 320px; }
      .pension-input { width: 100%; text-align: center; }
      .pension-btn { width: 100%; }
      .pension-photo-wrap {
        position: relative;
        width: 100%;
        height: 180px;
        top: auto;
        margin-top: 24px;
      }
      .pension-photo-wrap img {
        right: 50%;
        transform: translateX(50%);
        height: 100%;
      }
    }

    /* ─── PAYMENT ─── */
    .payment {
      background: var(--surface);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .payment-inner { max-width: 1200px; margin: 0 auto; }

    .payment-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      margin-top: 48px;
    }

    .payment-text { flex: 1; }

    .payment-text h3 {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
    }

    .payment-text p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(0,0,0,0.55);
    }

    .payment-methods {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .pay-badge {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--fg);
      white-space: nowrap;
    }

    .pay-badge--italic { font-style: italic; letter-spacing: 0.01em; }

    .pay-badge--logo {
      padding: 0;
      border: none;
      background: none;
      line-height: 0;
    }

    .pay-badge--sbp {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
    }

    .sbp-logo {
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

    .pay-badge--sbp span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    @media (max-width: 768px) {
      .payment-row { flex-direction: column; align-items: flex-start; }
      .payment-methods { flex-wrap: wrap; }
    }

    /* ─── DOCUMENTS ─── */
    .docs {
      background: var(--surface);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .docs-inner { max-width: 1200px; margin: 0 auto; }

    .docs-intro {
      max-width: 52ch;
      margin-top: 0;
    }

    .docs-intro h2 {
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .docs-intro p {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(0,0,0,0.55);
    }

    .docs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .doc-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .doc-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
      transform: translateY(-2px);
    }

    .doc-card img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
    }

    .doc-card-label {
      padding: 12px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.4);
      border-top: 1px solid var(--border);
    }

    @media (max-width: 900px) {
      .docs-grid { grid-template-columns: repeat(2, 1fr); }
      .doc-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 50%;
        min-width: 200px;
      }
    }

    @media (max-width: 768px) {
      .docs { padding: 56px 20px; }
      .docs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    }

    @media (max-width: 480px) {
      .docs-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    }

    /* ─── FAQ ─── */
    .faq {
      background: var(--surface);
      padding: 80px 40px;
      border-top: 1px solid var(--border);
    }

    .faq-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 64px;
      align-items: start;
    }

    .faq-intro h2 {
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .faq-intro p {
      font-size: 16px;
      color: rgba(0,0,0,0.55);
      margin-bottom: 32px;
    }

    .faq-list { display: flex; flex-direction: column; }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 0;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--muted);
      flex-shrink: 0;
      position: relative;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      background: var(--fg);
      transform: translate(-50%, -50%);
    }

    .faq-icon::before { width: 12px; height: 2px; }
    .faq-icon::after   { width: 2px; height: 12px; transition: transform 0.2s; }

    .faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

    .faq-item[open] {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 8px 28px;
      margin-bottom: 4px;
    }

    .faq-item[open] summary { color: var(--fg); }
    .faq-item[open] .faq-icon { background: var(--muted); }
    .faq-item[open] .faq-icon::before,
    .faq-item[open] .faq-icon::after { background: var(--fg); }

    .faq-answer {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(0,0,0,0.55);
      padding-bottom: 22px;
    }

    .faq-item[open] .faq-answer {
      padding-bottom: 24px;
    }

    @media (max-width: 900px) {
      .faq-inner { grid-template-columns: 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      .faq { padding: 56px 20px; }
      .faq-item[open] { padding: 8px 20px; }
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open { display: flex; }

    .modal-box {
      background: var(--bg);
      border-radius: var(--radius);
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 40px 32px 32px;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--fg);
      line-height: 1;
    }

    .modal-box h2 {
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 28px;
    }

    .form-inner { max-width: 100%; }

    .field { margin-bottom: 16px; }

    .field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      margin-bottom: 8px;
    }

    .field input,
    .field textarea {
      width: 100%;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px 16px;
      font-family: var(--font);
      font-size: 15px;
      color: var(--fg);
      outline: none;
      transition: border-color 0.15s;
      resize: none;
      appearance: none;
    }

    .field input::placeholder,
    .field textarea::placeholder { color: rgba(0,0,0,0.3); }

    .field input:focus,
    .field textarea:focus { border-color: var(--fg); }

    .submit-btn {
      width: 100%;
      margin-top: 8px;
      padding: 18px 32px;
      font-size: 14px;
      letter-spacing: 0.06em;
    }

    .form-error {
      font-size: 13px;
      line-height: 1.5;
      color: #b00020;
      background: #fdecee;
      border: 1px solid #f3c1c8;
      border-radius: var(--radius);
      padding: 12px 14px;
      margin-top: 12px;
    }

    .form-note {
      font-size: 12px;
      color: rgba(0,0,0,0.4);
      text-align: center;
      margin-top: 14px;
      letter-spacing: 0.02em;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 40px 0;
    }

    .form-success-icon {
      width: 48px;
      height: 48px;
      border: 2px solid var(--fg);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .form-success h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .form-success p {
      font-size: 15px;
      color: rgba(0,0,0,0.5);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 32px 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-brand-group { display: flex; flex-direction: column; gap: 4px; }

    .footer-brand {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-slogan {
      font-size: 13px;
      color: rgba(0,0,0,0.45);
    }

    .footer-meta {
      font-size: 13px;
      color: rgba(0,0,0,0.4);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .how-grid { grid-template-columns: 1fr; }
      .works-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .guarantee-cards { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      nav { padding: 0 20px; height: 56px; }
      body { padding-top: 56px; }
      .btn-sm { display: none; }

      .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px 64px; }
      .laptop-svg { max-width: 340px; }
      .hero-logo { height: 84px; }
      .btn-primary { display: block; text-align: center; }


      .diagnostics-band { padding: 24px 20px; }
      .diagnostics-van-img { max-width: 320px; }

      .services { padding: 56px 20px; }
      .section-label { margin-bottom: 32px; }

      .service-row { flex-direction: column; gap: 4px; align-items: flex-start; }
      .service-price { font-size: 14px; }

      .how { padding: 56px 20px; }
      .how-step { padding: 28px 24px; }

      .calculator { padding: 56px 20px; }
      .calc-box { flex-direction: column; }
      .calc-field input[type="number"] { max-width: 100%; }

      .masters { padding: 56px 20px; }
      .masters-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

      .works { padding: 56px 20px; }
      .work-img { aspect-ratio: 16/9; }

      .reviews { padding: 56px 20px; }

      footer { padding: 28px 20px; }
      .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
    }

    @media (max-width: 480px) {
      .nav-phone { font-size: 13px; }
      .hero h1 { letter-spacing: -0.02em; }
    }
