﻿:root {
      --bg: #ffffff;
      --bg-soft: #f3f7fb;
      --panel: #ffffff;
      --text: #101828;
      --muted: #667085;
      --line: #e4e9f0;
      --blue: #0878d8;
      --blue-2: #18a8ff;
      --navy: #071827;
      --green: #22c55e;
      --shadow: 0 22px 70px rgba(16, 24, 40, 0.12);
      --radius: 22px;
    }

    body[data-theme="dark"] {
      --bg: #06101b;
      --bg-soft: #0e1f31;
      --panel: #0f2033;
      --text: #edf6ff;
      --muted: #9fb2c8;
      --line: rgba(143, 178, 211, 0.22);
      --blue: #4ca3ff;
      --blue-2: #18c2ff;
      --navy: #f5fbff;
      --green: #42d77d;
      --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      min-width: 320px;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      transition: background 180ms ease, color 180ms ease;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 85% 12%, rgba(24, 168, 255, 0.16), transparent 30%),
        radial-gradient(circle at 12% 0%, rgba(8, 120, 216, 0.10), transparent 26%);
      z-index: -1;
    }
    body[data-theme="dark"]::before {
      background:
        radial-gradient(circle at 80% 8%, rgba(76, 163, 255, 0.2), transparent 30%),
        radial-gradient(circle at 8% 0%, rgba(66, 215, 125, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.96), rgba(7, 17, 29, 0.98));
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
    section { scroll-margin-top: 92px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.88);
      border-bottom: 1px solid rgba(228, 233, 240, 0.8);
      backdrop-filter: blur(18px);
    }
    body[data-theme="dark"] .site-header {
      background: rgba(7, 17, 29, 0.82);
      border-bottom-color: rgba(143, 178, 211, 0.18);
    }
    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 235px;
    }
    .brand-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(8, 120, 216, 0.22));
    }
    .brand-name {
      display: block;
      font-size: 24px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      letter-spacing: 0.5px;
    }
    .brand-subtitle {
      display: block;
      margin-top: 5px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #344054;
      font-size: 14px;
      font-weight: 700;
    }
    body[data-theme="dark"] .nav-links { color: #d3e2f2; }
    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: background 160ms ease, color 160ms ease;
    }
    .nav-links a:hover {
      background: #eef7ff;
      color: var(--blue);
    }
    body[data-theme="dark"] .nav-links a:hover {
      background: rgba(76, 163, 255, 0.13);
    }
    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .theme-toggle {
      width: 44px;
      height: 44px;
      display: inline-grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--panel);
      color: var(--blue);
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
      transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
    }
    .theme-toggle:hover { transform: translateY(-2px); }
    .theme-icon {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .theme-icon-moon { display: none; }
    body[data-theme="dark"] .theme-icon-sun { display: none; }
    body[data-theme="dark"] .theme-icon-moon { display: block; }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: 0 14px 34px rgba(8, 120, 216, 0.25);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 14px 0 56px;
      background:
        linear-gradient(135deg, #ffffff 0%, #f6fbff 56%, #eaf6ff 100%);
      border-bottom: 1px solid var(--line);
    }
    body[data-theme="dark"] .hero {
      background: linear-gradient(135deg, #07111d 0%, #0b1a2b 56%, #0e263a 100%);
      border-bottom-color: var(--line);
    }
    .hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: 30px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(8,120,216,0.18), transparent 63%);
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
      gap: 58px;
      align-items: start;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding: 9px 13px;
      border: 1px solid rgba(8, 120, 216, 0.18);
      border-radius: 999px;
      color: var(--blue);
      background: #fff;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 12px 26px rgba(16, 24, 40, 0.06);
    }
    body[data-theme="dark"] .eyebrow {
      background: rgba(15, 32, 51, 0.86);
      border-color: rgba(76, 163, 255, 0.24);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
    }
    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
    }
    h1 {
      max-width: 820px;
      font-size: clamp(40px, 5.45vw, 66px);
      line-height: 1.01;
      letter-spacing: -0.04em;
      color: var(--navy);
    }
    h1 span { color: var(--blue); }
    .lead {
      max-width: 705px;
      margin-top: 24px;
      color: #475467;
      font-size: 18px;
    }
    body[data-theme="dark"] .lead,
    body[data-theme="dark"] .section-copy,
    body[data-theme="dark"] .about-copy,
    body[data-theme="dark"] .contact-panel p,
    body[data-theme="dark"] .contact-note,
    body[data-theme="dark"] details p {
      color: #c5d5e8;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 14px 20px;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-weight: 900;
      line-height: 1.2;
      transition: transform 160ms ease, box-shadow 160ms ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 16px 36px rgba(8, 120, 216, 0.28);
    }
    .btn-secondary {
      background: #fff;
      color: var(--navy);
    }
    body[data-theme="dark"] .btn-secondary {
      background: rgba(15, 32, 51, 0.92);
      color: var(--text);
      border-color: var(--line);
    }
    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 36px;
      max-width: 720px;
    }
    .proof-item {
      min-height: 88px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.74);
      box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
    }
    body[data-theme="dark"] .proof-item,
    body[data-theme="dark"] .service,
    body[data-theme="dark"] .process-step,
    body[data-theme="dark"] .work,
    body[data-theme="dark"] details,
    body[data-theme="dark"] .contact-panel,
    body[data-theme="dark"] .map-panel {
      background: rgba(15, 32, 51, 0.9);
      border-color: var(--line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    }
    .proof-item strong {
      display: block;
      color: var(--blue);
      font-size: 22px;
      line-height: 1.1;
    }
    .proof-item span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }
    body[data-theme="dark"] .proof-item span {
      color: #c8d8ea;
    }
    .hero-panel {
      position: relative;
      padding: 18px;
      border: 1px solid rgba(8, 120, 216, 0.16);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
    }
    body[data-theme="dark"] .hero-panel {
      background: rgba(10, 24, 39, 0.92);
      border-color: rgba(76, 163, 255, 0.24);
    }
    .hero-media {
      position: relative;
      overflow: hidden;
      height: 560px;
      min-height: 0;
      border-radius: 18px;
      background:
        radial-gradient(circle at 22% 20%, rgba(24, 168, 255, 0.22), transparent 28%),
        linear-gradient(135deg, #071827 0%, #0d2d45 55%, #06121f 100%);
    }
    .hero-media img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
    }
    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 24, 39, 0), rgba(7, 24, 39, 0.58));
    }
    .hero-badge {
      position: absolute;
      left: 50%;
      bottom: 30px;
      z-index: 1;
      display: grid;
      place-items: center;
      width: min(320px, calc(100% - 42px));
      padding: 16px 18px;
      border: 0;
      border-radius: 24px;
      background: rgba(2, 8, 14, 0.22);
      box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(3px);
      transform: translateX(-50%);
    }
    .hero-badge img {
      width: 100%;
      object-fit: contain;
      filter:
        drop-shadow(0 18px 30px rgba(0, 0, 0, 0.58))
        drop-shadow(0 0 16px rgba(255, 255, 255, 0.22));
    }
    .tech-laptop {
      position: relative;
      width: min(360px, 92%);
      aspect-ratio: 1.45;
      border: 2px solid rgba(255, 255, 255, 0.22);
      border-radius: 18px;
      background: linear-gradient(160deg, #0b1c2b, #123d5b);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    }
    .tech-laptop::before {
      content: "";
      position: absolute;
      left: 11%;
      right: 11%;
      bottom: -24px;
      height: 18px;
      border-radius: 0 0 18px 18px;
      background: linear-gradient(135deg, #dbeafe, #8ec5ff);
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
    }
    .tech-screen {
      position: absolute;
      inset: 18px;
      overflow: hidden;
      border-radius: 12px;
      background:
        linear-gradient(90deg, rgba(24, 168, 255, 0.16) 1px, transparent 1px),
        linear-gradient(180deg, rgba(24, 168, 255, 0.12) 1px, transparent 1px),
        #06121f;
      background-size: 28px 28px;
    }
    .tech-screen::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 24px;
      width: 46%;
      height: 12px;
      border-radius: 999px;
      background: #18a8ff;
      box-shadow:
        0 28px 0 rgba(255, 255, 255, 0.72),
        0 56px 0 rgba(34, 197, 94, 0.86),
        112px 28px 0 rgba(255, 255, 255, 0.42);
    }
    .tech-screen::after {
      content: "OBD";
      position: absolute;
      right: 22px;
      bottom: 22px;
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border: 2px solid rgba(24, 168, 255, 0.62);
      border-radius: 50%;
      color: #dff4ff;
      font-weight: 900;
      letter-spacing: 0.08em;
      box-shadow: inset 0 0 0 12px rgba(24, 168, 255, 0.08);
    }
    .tech-cable {
      position: absolute;
      right: -34px;
      bottom: 42px;
      width: 96px;
      height: 52px;
      border-right: 4px solid #18a8ff;
      border-bottom: 4px solid #18a8ff;
      border-radius: 0 0 28px 0;
    }
    .tech-cable::after {
      content: "";
      position: absolute;
      right: -16px;
      top: -4px;
      width: 26px;
      height: 40px;
      border-radius: 8px;
      background: #dbeafe;
      box-shadow: inset 0 -8px 0 rgba(8, 120, 216, 0.26);
    }
    .signal-list {
      display: grid;
      gap: 10px;
      margin-top: 20px;
      list-style: none;
    }
    .signal-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #344054;
      font-size: 15px;
    }
    body[data-theme="dark"] .signal-list li {
      color: #d9e7f7;
    }
    .signal-list li::before {
      content: "";
      flex: 0 0 auto;
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 4px;
      background: var(--blue);
      box-shadow: 0 0 0 4px rgba(8, 120, 216, 0.10);
    }

    section { padding: 78px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }
    .section-kicker {
      display: block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    h2 {
      max-width: 720px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--navy);
    }
    .section-copy {
      max-width: 460px;
      color: var(--muted);
      font-size: 15px;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .service {
      min-height: 208px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
      transition: transform 160ms ease, box-shadow 160ms ease;
    }
    .service:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }
    .service-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }
    .service-code {
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }
    .service-mark {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: #eef7ff;
      color: var(--blue);
      font-weight: 900;
    }
    .service h3 {
      margin-bottom: 10px;
      font-size: 20px;
      color: var(--navy);
      line-height: 1.2;
    }
    .service p {
      color: var(--muted);
      font-size: 15px;
    }
    .service-list {
      display: grid;
      gap: 8px;
      margin-top: 14px;
      list-style: none;
      color: #344054;
      font-size: 14px;
    }
    body[data-theme="dark"] .service-list,
    body[data-theme="dark"] .contact-list li {
      color: #d3e2f2;
    }
    body[data-theme="dark"] .service-mark {
      background: rgba(76, 163, 255, 0.12);
    }
    .service-list li {
      position: relative;
      padding-left: 18px;
    }
    .service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--blue);
    }

    .band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: var(--bg-soft);
    }
    body[data-theme="dark"] .band {
      background:
        linear-gradient(180deg, rgba(14, 31, 49, 0.98), rgba(11, 25, 40, 0.98));
      border-color: rgba(143, 178, 211, 0.24);
    }
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .process-step {
      min-height: 190px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
    }
    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin-bottom: 18px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      color: #fff;
      font-weight: 900;
    }
    .process-step h3 { margin-bottom: 8px; font-size: 18px; color: var(--navy); }
    .process-step p { color: var(--muted); font-size: 14px; }

    .work-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }
    .work {
      display: flex;
      min-height: 128px;
      padding: 20px;
      gap: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
    }
    .work-dot {
      flex: 0 0 auto;
      width: 12px;
      height: 12px;
      margin-top: 8px;
      border-radius: 4px;
      background: var(--blue);
    }
    .work:nth-child(3n + 2) .work-dot { background: var(--green); }
    .work:nth-child(3n) .work-dot { background: var(--blue-2); }
    .work strong {
      display: block;
      margin-bottom: 5px;
      color: var(--navy);
      font-size: 16px;
    }
    .work span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 44px;
      align-items: center;
    }
    .about-copy {
      color: #475467;
      font-size: 17px;
    }
    .about-copy p + p { margin-top: 16px; }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }
    .trust-item {
      min-height: 128px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
    }
    .trust-item strong {
      display: block;
      color: var(--blue);
      font-size: 24px;
      line-height: 1.1;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }
    .count-up {
      display: inline-block;
      white-space: nowrap;
    }
    .trust-item span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }
    body[data-theme="dark"] .trust-item {
      background: rgba(15, 32, 51, 0.9);
      border-color: var(--line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    }
    body[data-theme="dark"] .trust-item span { color: #c5d5e8; }

    .reviews-shell {
      position: relative;
    }
    .reviews-grid {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 2px 2px 18px;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .review-card {
      flex: 0 0 calc((100% - 32px) / 3);
      min-height: 240px;
      display: flex;
      flex-direction: column;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
      scroll-snap-align: start;
    }
    .review-nav {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--panel);
      color: var(--blue);
      cursor: pointer;
      font-size: 30px;
      line-height: 1;
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.14);
      transform: translateY(-50%);
    }
    .review-nav-prev { left: -22px; }
    .review-nav-next { right: -22px; }
    body[data-theme="dark"] .review-nav {
      background: #0f2033;
      border-color: var(--line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }
    .review-stars {
      margin-bottom: 16px;
      color: var(--blue);
      font-size: 16px;
      letter-spacing: 0.08em;
    }
    .review-card p {
      color: #475467;
      font-size: 15px;
      line-height: 1.55;
    }
    .review-author {
      margin-top: auto;
      padding-top: 22px;
    }
    .review-author strong {
      display: block;
      color: var(--navy);
      font-size: 16px;
    }
    .review-author span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
    }
    body[data-theme="dark"] .review-card {
      background: rgba(15, 32, 51, 0.9);
      border-color: var(--line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    }
    body[data-theme="dark"] .review-card p,
    body[data-theme="dark"] .review-author span {
      color: #c5d5e8;
    }

    .brand-marquee {
      overflow-x: auto;
      padding-bottom: 12px;
      scrollbar-width: thin;
      scrollbar-color: var(--blue) transparent;
    }
    .brand-track {
      display: flex;
      flex-wrap: nowrap;
      gap: 12px;
      width: max-content;
    }
    .brand-track span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 126px;
      min-height: 58px;
      padding: 10px 18px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--navy);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
    }
    body[data-theme="dark"] .brand-track span {
      background: rgba(15, 32, 51, 0.9);
      color: var(--text);
      border-color: var(--line);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }
    .gallery-item {
      position: relative;
      min-height: 260px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background:
        radial-gradient(circle at 20% 14%, rgba(24, 168, 255, 0.24), transparent 28%),
        linear-gradient(145deg, #06121f, #0d2d45 58%, #06121f);
      box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
    }
    .gallery-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(7, 24, 39, 0.02), rgba(7, 24, 39, 0.72));
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      transition: transform 220ms ease;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-content {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 2;
    }
    .gallery-item strong {
      display: block;
      color: #fff;
      font-size: 17px;
    }
    .gallery-item span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }
    .quote-layout {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 34px;
      align-items: start;
    }
    .quote-form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
    }
    .quote-form label {
      display: grid;
      gap: 7px;
      color: var(--navy);
      font-size: 14px;
      font-weight: 900;
    }
    .quote-form input,
    .quote-form select,
    .quote-form textarea {
      width: 100%;
      min-height: 48px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      color: var(--text);
      font: inherit;
      outline: none;
    }
    .quote-form textarea {
      min-height: 120px;
      resize: vertical;
    }
    .quote-form input:focus,
    .quote-form select:focus,
    .quote-form textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(8, 120, 216, 0.12);
    }
    .quote-message,
    .quote-form .btn {
      grid-column: 1 / -1;
    }
    body[data-theme="dark"] .quote-form {
      background: rgba(15, 32, 51, 0.9);
      border-color: var(--line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    }
    body[data-theme="dark"] .quote-form input,
    body[data-theme="dark"] .quote-form select,
    body[data-theme="dark"] .quote-form textarea {
      background: rgba(7, 17, 29, 0.82);
      color: var(--text);
      border-color: var(--line);
    }
    .contact-panel,
    .map-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
    }
    .contact-panel { padding: 30px; }
    .contact-panel h2 { margin-bottom: 12px; }
    .contact-panel p { color: var(--muted); margin-bottom: 22px; }
    .contact-list {
      display: grid;
      gap: 12px;
      margin: 24px 0;
      list-style: none;
    }
    .contact-list li {
      display: flex;
      gap: 10px;
      color: #344054;
      font-size: 15px;
    }
    .contact-list li::before {
      content: "";
      flex: 0 0 auto;
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 4px;
      background: var(--blue);
    }
    .contact-note {
      margin-top: 16px;
      color: var(--muted);
      font-size: 13px;
    }
    .map-panel iframe {
      width: 100%;
      height: 100%;
      min-height: 430px;
      border: 0;
      display: block;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
    }
    summary {
      cursor: pointer;
      padding: 20px;
      color: var(--navy);
      font-weight: 900;
    }
    details p {
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 14px;
    }

    .floating-whatsapp {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 60;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 58px;
      height: 58px;
      padding: 0 18px;
      border-radius: 999px;
      background: #22c55e;
      color: #031407;
      font-weight: 900;
      box-shadow: 0 18px 44px rgba(16, 24, 40, 0.26);
    }
    .floating-whatsapp span { display: block; }
    .floating-whatsapp strong { display: none; }

    footer {
      padding: 30px 0;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
      background: #fff;
    }
    body[data-theme="dark"] footer {
      background: #07111d;
      border-top-color: var(--line);
    }
    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }
    .socials { display: flex; flex-wrap: wrap; gap: 12px; }
    .socials a { color: var(--blue); font-weight: 800; }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero-grid, .split, .contact-layout, .quote-layout { grid-template-columns: 1fr; }
      .hero-panel { max-width: 620px; }
      .services, .work-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .review-card { flex-basis: calc((100% - 16px) / 2); }
      .process-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 660px) {
      .container { width: min(100% - 28px, 1160px); }
      .nav { min-height: 70px; }
      .nav-cta { display: none; }
      .theme-toggle { width: 42px; height: 42px; }
      .brand { min-width: auto; }
      .brand-logo { width: 48px; height: 48px; }
      .brand-name { font-size: 20px; }
      .brand-subtitle { font-size: 10px; }
      .hero { padding: 52px 0 36px; }
      .hero-grid { gap: 32px; }
      .lead { font-size: 16px; }
      .hero-proof, .services, .process-grid, .work-grid, .gallery-grid, .trust-grid, .faq-grid, .quote-form { grid-template-columns: 1fr; }
      .review-card { flex-basis: 88%; }
      .review-nav { display: none; }
      .section-head { display: block; }
      .section-copy { margin-top: 12px; }
      section { padding: 56px 0; }
      .hero-media { height: 360px; }
      .hero-media img { min-height: 0; }
      .floating-whatsapp {
        left: 14px;
        right: 14px;
        bottom: 14px;
        height: 54px;
        min-width: 0;
        padding: 0 18px;
        font-size: 14px;
      }
      .floating-whatsapp span { display: none; }
      .floating-whatsapp strong { display: block; }
    }
