﻿
    :root {
      --bg: #ffffff;
      --paper: #f5f6f8;
      --ink: #111318;
      --muted: #5d6470;
      --line: rgba(17,19,24,.12);
      --dark: #101216;
      --dark2: #191d24;
      --red: #e21e2f;
      --red2: #ff3347;
      --softred: #fff0f2;
      --blue: #2d6cdf;
      --softblue: #edf4ff;
      --yellow: #ffcc4d;
      --softyellow: #fff8df;
      --green: #25D366;
      --softgreen: #eafaf1;
      --max: 1180px;
      --radius: 28px;
      --shadow: 0 22px 70px rgba(17,19,24,.10);
      --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
      --z-header: 100;
      --z-float: 120;
      --z-lightbox: 200;
      --z-mobile-nav: 500;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: clip;
    }
    body {
      margin: 0;
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.62;
      overflow-x: clip;
      width: 100%;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    body.menu-open {
      overflow: hidden;
      touch-action: none;
      position: fixed;
      width: 100%;
      left: 0;
      right: 0;
    }
    body.lightbox-open {
      overflow: hidden;
      touch-action: none;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

    h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }
    h1 { font-size: clamp(42px, 7vw, 84px); }
    h2 { font-size: clamp(30px, 4.6vw, 58px); }
    h3 { font-size: 22px; letter-spacing: -0.025em; }
    p { margin: 0; color: var(--muted); }
    .lead { font-size: clamp(17px, 2vw, 21px); margin-top: 18px; }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      font-size: 13px;
      font-weight: 900;
      color: var(--ink);
      box-shadow: 0 10px 28px rgba(17,19,24,.05);
      margin-bottom: 16px;
    }
    .pill::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--red);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 900;
      border: 1px solid transparent;
      cursor: pointer;
      transition: .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-red { background: var(--red); color: #fff; box-shadow: 0 16px 38px rgba(226,30,47,.24); }
    .btn-red:hover { background: var(--red2); }
    .btn-dark { background: var(--dark); color: #fff; }
    .btn-outline { background: transparent; color: #ffffff; border-color: rgba(255,255,255,.16); }
    .btn-white { background: #fff; color: var(--ink); }

    header {
      position: sticky;
      top: 0;
      z-index: var(--z-header);
      background: #000000;
      border-bottom: 1px solid rgba(255,255,255,.10);
      overflow-x: clip;
      max-width: 100%;
    }
    body.menu-open header {
      z-index: var(--z-mobile-nav);
    }
    .nav {
      min-height: 78px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 20px;
    }
    .brand {
      width: min(34vw, 360px);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: transparent;
      padding: 0 22px;
      border-radius: 0;
      box-shadow: none;
    }
    .brand img {
      width: 100%;
      max-width: 285px;
      height: auto;
      object-fit: contain;
      filter: none;
    }
    .nav-links {
      justify-self: center;
      display: flex;
      gap: 6px;
      align-items: center;
      padding: 6px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
    }
    .nav-links a {
      padding: 9px 12px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      color: #f1f3f6;
    }
    .nav-links a:hover {
      background: rgba(255,255,255,.12);
      box-shadow: none;
    }
    .nav-links a.nav-home,
    .nav-links a.nav-contact {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      padding: 0;
    }
    .nav-actions .nav-phone {
      width: 44px;
      height: 44px;
      min-height: 44px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 15px;
      background: rgba(255,255,255,.08);
      color: #ffffff;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .menu-btn-icon {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 20px;
      height: 16px;
    }
    .menu-btn-icon span {
      display: block;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background: currentColor;
      transition: transform .22s ease, opacity .22s ease;
    }
    body.menu-open .menu-btn-icon span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    body.menu-open .menu-btn-icon span:nth-child(2) {
      opacity: 0;
    }
    body.menu-open .menu-btn-icon span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.55);
    }

    .site-breadcrumbs {
      background: #f5f6f8;
      border-bottom: 1px solid rgba(17,19,24,.08);
      padding: 12px 0;
    }
    .breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
    }
    .breadcrumb-item:not(:last-child)::after {
      content: "/";
      margin-left: 8px;
      color: #9aa3af;
      font-weight: 500;
    }
    .breadcrumb-item a {
      color: var(--muted);
      text-decoration: none;
    }
    .breadcrumb-item a:hover { color: var(--red); }
    .breadcrumb-item.is-current span { color: var(--ink); }

    body.menu-open .nav-overlay {
      display: block;
      z-index: calc(var(--z-mobile-nav) - 1);
    }
    body.menu-open .whatsapp-float,
    body.menu-open .back-to-top {
      visibility: hidden;
      pointer-events: none;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 70px 0 82px;
      background:
        radial-gradient(circle at 87% 12%, rgba(226,30,47,.13), transparent 29%),
        radial-gradient(circle at 18% 24%, rgba(45,108,223,.10), transparent 26%),
        linear-gradient(180deg, #fff, #f5f6f8);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(17,19,24,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,19,24,.045) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 520px;
      gap: 42px;
      align-items: center;
    }
    .hero-title span { color: var(--red); }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .quick-note {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 26px;
    }
    .quick-note span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }
    .quick-note span::before {
      content: "âœ“";
      color: var(--red);
      font-weight: 900;
    }

    .build-board {
      position: relative;
      min-height: 610px;
      border-radius: 40px;
      background:
        linear-gradient(145deg, #ffffff, #eef1f6);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 24px;
      overflow: hidden;
    }
    .build-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(17,19,24,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,19,24,.055) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(to bottom, black, transparent 78%);
    }
    .workspace-head {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 22px;
      background: var(--dark);
      color: #fff;
    }
    .workspace-head b { display: block; }
    .workspace-head span { display: block; color: #b9c0cc; font-size: 13px; margin-top: 2px; }
    .status {
      min-width: 98px;
      text-align: center;
      padding: 10px 12px;
      border-radius: 999px;
      background: var(--red);
      font-weight: 900;
      font-size: 13px;
    }

    .module-map {
      position: relative;
      z-index: 2;
      min-height: 500px;
      margin-top: 22px;
    }
    .module {
      position: absolute;
      width: 185px;
      min-height: 118px;
      padding: 18px;
      border-radius: 26px;
      border: 1px solid rgba(17,19,24,.1);
      box-shadow: 0 16px 40px rgba(17,19,24,.10);
      background: #fff;
    }
    .module b {
      display: block;
      line-height: 1.16;
      font-size: 17px;
    }
    .module span {
      display: block;
      margin-top: 8px;
      font-size: 13px;
      color: var(--muted);
    }
    .module .icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .m1 { left: 0; top: 16px; background: var(--softred); transform: rotate(-3deg); }
    .m1 .icon { background: var(--red); }
    .m2 { right: 0; top: 58px; background: var(--softblue); transform: rotate(3deg); }
    .m2 .icon { background: var(--blue); }
    .m3 { left: 155px; top: 188px; background: var(--softyellow); }
    .m3 .icon { background: #d99c00; }
    .m4 { right: 48px; top: 292px; background: var(--softgreen); transform: rotate(-2deg); }
    .m4 .icon { background: #18a957; }
    .m5 { left: 18px; bottom: 18px; background: #fff; transform: rotate(2deg); }
    .m5 .icon { background: var(--dark); }
    .connector {
      position: absolute;
      z-index: 1;
      left: 82px;
      right: 82px;
      top: 96px;
      bottom: 86px;
      border: 4px dashed rgba(226,30,47,.22);
      border-radius: 44px;
      transform: rotate(-8deg);
    }

    .section { padding: 86px 0; }
    .section-dark {
      background: var(--dark);
      color: #fff;
    }
    .section-dark p { color: #b7beca; }
    .section-title {
      max-width: 820px;
      margin-bottom: 38px;
    }

    .path-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-top: 34px;
    }
    .path-step {
      position: relative;
      min-height: 150px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: 20px;
      box-shadow: 0 18px 54px rgba(17,19,24,.07);
    }
    .path-step::before {
      content: attr(data-step);
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background: var(--red);
      color: #fff;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .path-step b { display: block; line-height: 1.16; }
    .path-step span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .service-card {
      min-height: 228px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 30px;
      padding: 22px;
      background: rgba(255,255,255,.06);
      transition: .2s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.085);
    }
    .service-card::after {
      content: "";
      position: absolute;
      width: 110px;
      height: 110px;
      right: -45px;
      bottom: -45px;
      border-radius: 28px;
      transform: rotate(18deg);
      background: rgba(226,30,47,.14);
    }
    .service-no {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 17px;
      background: var(--red);
      color: #fff;
      font-weight: 900;
      margin-bottom: 18px;
    }
    .service-card p { margin-top: 10px; font-size: 15px; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }
    .why-main {
      background:
        radial-gradient(circle at 90% 12%, rgba(226,30,47,.2), transparent 32%),
        var(--dark);
      color: #fff;
      border-radius: 34px;
      padding: 34px;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow);
    }
    .why-main p { color: #bdc4ce; }
    .why-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .why-card {
      min-height: 180px;
      padding: 22px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 16px 50px rgba(17,19,24,.06);
    }
    .why-card b {
      display: block;
      font-size: 17px;
      line-height: 1.2;
    }
    .why-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .process-board {
      background: #fff;
      color: var(--ink);
      border-radius: 38px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 26px;
    }
    .process-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--line);
    }
    .process-head h2 { max-width: 720px; }
    .process-list {
      counter-reset: step;
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }
    .process-item {
      counter-increment: step;
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 16px;
      padding: 18px;
      border-radius: 22px;
      background: var(--paper);
      border: 1px solid var(--line);
    }
    .process-item::before {
      content: counter(step);
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: var(--red);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 20px;
    }
    .process-item p { margin-top: 6px; }

    .cta {
      border-radius: 38px;
      background:
        radial-gradient(circle at 92% 8%, rgba(255,255,255,.18), transparent 27%),
        linear-gradient(135deg, var(--red), #8e1019);
      color: #fff;
      padding: 42px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      box-shadow: 0 22px 70px rgba(226,30,47,.25);
    }
    .cta p { color: rgba(255,255,255,.86); margin-top: 12px; }
    .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

    .faq-contact {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: start;
    }
    details {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      margin-bottom: 12px;
      overflow: hidden;
    }
    summary {
      list-style: none;
      cursor: pointer;
      padding: 19px 21px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-weight: 900;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      color: var(--red);
      font-size: 24px;
    }
    details[open] summary::after { content: "âˆ’"; }
    details p { padding: 0 21px 21px; }

    .contact-card {
      border-radius: 34px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
    }
    .contact-top {
      background: var(--dark);
      color: #fff;
      padding: 28px;
    }
    .contact-top p { color: #b8c0cc; margin-top: 10px; }
    .contact-body { padding: 24px; }
    .contact-line {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }
    .contact-line:last-child { border-bottom: 0; }
    .dot {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--softred);
      color: var(--red);
      font-weight: 900;
    }
    .contact-line b { display: block; }
    .contact-line span,
    .contact-line a { color: var(--muted); }
    .map {
      display: block;
      width: 100%;
      height: 238px;
      border: 0;
      border-top: 1px solid var(--line);
    }

    .form-box {
      margin-top: 28px;
      border-radius: 34px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
      padding: 28px;
    }
    form {
      display: grid;
      gap: 13px;
      margin-top: 18px;
    }
    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 13px;
    }
    input, select, textarea {
      width: 100%;
      min-height: 50px;
      border-radius: 17px;
      border: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      padding: 12px 14px;
      font: inherit;
      outline: none;
    }
    textarea { min-height: 132px; resize: vertical; }
    input:focus, select:focus, textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(226,30,47,.12);
    }
    .success {
      display: none;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(18,130,80,.12);
      color: #0e7a4e;
      font-weight: 900;
    }
    .success.show { display: block; }

    footer {
      background: var(--dark);
      color: #fff;
      padding: 54px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .95fr 1fr;
      gap: 30px;
    }
    .footer-brand {
      width: min(50vw, 305px);
      display: inline-flex;
    }
    .footer-grid h3 {
      font-size: 16px;
      letter-spacing: 0;
      margin: 0 0 14px;
    }
    .footer-grid a,
    .footer-grid p {
      display: block;
      color: #b8c0cc;
      font-size: 14px;
      margin-bottom: 9px;
    }
    .copyright {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: #858d99;
      font-size: 14px;
    }
    .footer-bottom {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      color: #858d99;
      font-size: 14px;
    }
    .footer-bottom p { margin: 0; color: #858d99; }
    .footer-bottom a {
      color: #d5dbe3;
      font-weight: 700;
      text-decoration: none;
      transition: color .2s ease;
    }
    .footer-bottom a:hover { color: #fff; }

    .floating-contact {
      position: fixed;
      right: 18px;
      bottom: max(18px, env(safe-area-inset-bottom));
      z-index: var(--z-float);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .whatsapp-offer {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 14px 18px;
      border-radius: 999px;
      background: var(--green);
      color: white;
      font-weight: 900;
      font-size: 15px;
      box-shadow: 0 16px 38px rgba(37,211,102,.35);
      white-space: nowrap;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .why-grid,
      .faq-contact,
      .cta {
        grid-template-columns: 1fr;
      }
      .build-board { min-height: 560px; }
      .path-row { grid-template-columns: repeat(3, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-actions { justify-content: flex-start; }
    }

    @media (max-width: 860px) {
      header .container.nav {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
      }
      .nav {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
      }
      .brand {
        flex: 1 1 auto;
        min-width: 0;
        width: auto;
        max-width: min(168px, 46vw);
        padding: 0;
        justify-content: flex-start;
      }
      .brand img {
        max-width: 100%;
        width: auto;
        height: auto;
      }
      .nav-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
      }
      .menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(300px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        height: 100%;
        height: 100dvh;
        max-height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-top: calc(70px + 16px + env(safe-area-inset-top));
        padding-right: max(14px, env(safe-area-inset-right));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        padding-left: 14px;
        border-radius: 0;
        border: 0;
        border-left: 1px solid rgba(255,255,255,.10);
        background: rgba(0,0,0,.98);
        z-index: var(--z-mobile-nav);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transform: translate3d(100%, 0, 0);
        transition: transform .24s ease;
        visibility: hidden;
        pointer-events: none;
        will-change: transform;
      }
      body.menu-open .nav-links {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
      }
      .nav-links a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 12px;
        border-bottom: 1px solid rgba(255,255,255,.10);
        border-radius: 12px;
        font-size: 16px;
      }
      .nav-links a.nav-home,
      .nav-links a.nav-contact {
        width: auto;
        height: auto;
        justify-content: flex-start;
      }
      .nav-links a.nav-home::after { content: "Ana Sayfa"; }
      .nav-links a.nav-contact::after { content: "İletişim"; }
      .nav-actions .nav-phone {
        display: inline-flex;
        width: 40px;
        height: 40px;
        min-height: 40px;
      }
      .nav-actions .nav-cta {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
      }
      .menu-btn {
        width: 40px;
        height: 40px;
      }
    }

    @media (max-width: 640px) {
      body { padding-bottom: 100px; }
      .container { width: min(100% - 22px, var(--max)); }
      header .container.nav {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
      }
      .brand {
        max-width: min(150px, 44vw);
      }
      .nav-actions .nav-cta {
        min-height: 38px;
        padding: 8px 9px;
        font-size: 11px;
      }
      .menu-btn { width: 38px; height: 38px; }
      .hero { padding: 38px 0 56px; }
      h1 { font-size: clamp(31px, 10vw, 44px); }
      h2 { font-size: clamp(26px, 8.5vw, 38px); }
      .lead { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; }
      .quick-note { gap: 8px; }
      .quick-note span { width: 100%; }
      .build-board {
        min-height: auto;
        border-radius: 28px;
        padding: 16px;
      }
      .workspace-head {
        align-items: flex-start;
        flex-direction: column;
      }
      .status { min-width: 0; }
      .module-map {
        min-height: 0;
        margin-top: 16px;
        display: grid;
        gap: 12px;
      }
      .module {
        position: relative;
        width: 100%;
        min-height: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
      }
      .connector { display: none; }
      .path-row,
      .services-grid,
      .why-list,
      .form-row,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .section { padding: 56px 0; }
      .path-step,
      .service-card,
      .why-card,
      .form-box,
      .contact-body {
        padding: 20px;
      }
      .why-main { min-height: auto; padding: 24px; }
      .process-board { border-radius: 28px; padding: 20px; }
      .process-head {
        align-items: flex-start;
        flex-direction: column;
      }
      .process-item {
        grid-template-columns: 1fr;
        gap: 12px;
      }
      .process-item::before {
        width: 50px;
        height: 50px;
      }
      .cta {
        border-radius: 28px;
        padding: 24px;
      }
      .cta-actions .btn { width: 100%; }
      input, select, textarea { font-size: 16px; }
      .map { height: 220px; }
      .floating-contact {
        left: 14px;
        right: 14px;
        bottom: calc(86px + env(safe-area-inset-bottom));
      }
      .whatsapp-offer {
        width: 100%;
        max-width: 430px;
        min-height: 56px;
        border-radius: 16px;
        font-size: 16px;
      }
    }

    @media (max-width: 390px) {
      h1 { font-size: clamp(29px, 9vw, 40px); }
      .brand {
        max-width: min(132px, 40vw);
      }
      .nav-actions {
        gap: 4px;
      }
      .nav-actions .nav-cta {
        display: none;
      }
      .nav-actions .nav-phone,
      .menu-btn {
        width: 38px;
        height: 38px;
        min-height: 38px;
      }
      .whatsapp-offer { min-height: 54px; font-size: 15px; }
    }
  
