    :root {
      --bg: #f4f1e9;
      --surface: #ffffff;
      --surface-soft: #fbfaf6;
      --green-950: #052d22;
      --green-900: #07382b;
      --green-800: #0b4637;
      --green-700: #106047;
      --green-100: #dff8df;
      --mint: #baf7c4;
      --mint-2: #e8ffe9;
      --gold: #d8b86a;
      --text: #102019;
      --muted: #66736d;
      --muted-2: #8a948f;
      --border: rgba(16, 32, 25, .12);
      --border-light: rgba(255,255,255,.22);
      --shadow: 0 24px 70px rgba(5, 45, 34, .14);
      --shadow-soft: 0 10px 30px rgba(5, 45, 34, .08);
      --radius-lg: 34px;
      --radius-md: 24px;
      --radius-sm: 16px;
      --container: 1200px;
      --serif: Georgia, "Times New Roman", serif;
      --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: var(--sans);
      color: var(--text);
      background: var(--bg);
    }

    body {
      min-width: 320px;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 10% 0%, rgba(186, 247, 196, .35), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(216, 184, 106, .16), transparent 30%),
        var(--bg);
      line-height: 1.6;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    img,
    svg {
      display: block;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 0;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      background: rgba(244, 241, 233, .78);
      border-bottom: 1px solid rgba(16, 32, 25, .08);
    }

    .header-inner {
      width: min(100% - 32px, 1320px);
      margin: 0 auto;
      min-height: 72px;
      padding: 10px 14px 10px 16px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: var(--shadow-soft);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 220px;
    }

    .brand-mark {
      width: 50px;
      height: 50px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--green-950);
      color: var(--mint);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
      flex-shrink: 0;
    }

    .brand-text strong {
      display: block;
      color: var(--green-950);
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: 1;
    }

    .brand-text span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .16em;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .nav a:hover {
      color: var(--green-950);
      background: rgba(186,247,196,.2);
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .phone-link {
      padding: 12px 16px;
      border-radius: 999px;
      color: var(--green-950);
      background: rgba(5, 45, 34, .06);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .btn {
      min-height: 50px;
      padding: 0 20px;
      border-radius: 999px;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 800;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    }

    .btn-primary {
      color: var(--mint);
      background: var(--green-950);
      box-shadow: 0 14px 30px rgba(5, 45, 34, .22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #021d16;
      box-shadow: 0 18px 34px rgba(5, 45, 34, .28);
    }

    .btn-secondary {
      color: var(--green-950);
      background: rgba(255,255,255,.78);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      background: #fff;
    }

    .mobile-menu-note {
      display: none;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .hero {
      position: relative;
      padding: 72px 0 88px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 24px 24px auto auto;
      width: 540px;
      height: 540px;
      border-radius: 50%;
      background: rgba(186,247,196,.26);
      filter: blur(95px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
      gap: 54px;
      align-items: center;
    }

    .kicker {
      width: fit-content;
      margin-bottom: 22px;
      padding: 9px 14px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--green-950);
      background: rgba(186,247,196,.38);
      border: 1px solid rgba(16, 96, 71, .16);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .kicker-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-700);
      box-shadow: 0 0 0 6px rgba(16,96,71,.10);
    }

    .hero h1 {
      max-width: 820px;
      color: var(--green-950);
      font-family: var(--serif);
      font-size: clamp(52px, 7vw, 96px);
      font-weight: 500;
      line-height: .98;
      letter-spacing: -.055em;
    }

    .hero-lead {
      max-width: 760px;
      margin-top: 28px;
      color: var(--muted);
      font-size: clamp(19px, 1.6vw, 25px);
      line-height: 1.65;
    }

    .hero-actions {
      margin-top: 38px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-meta {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 780px;
    }

    .meta-card {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    .meta-value {
      color: var(--green-950);
      font-size: 26px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .meta-label {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
    }

    .parking-visual {
      position: relative;
      min-height: 620px;
      border-radius: 44px;
      padding: 28px;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(5,45,34,.96), rgba(11,70,55,.94)),
        var(--green-950);
      box-shadow: var(--shadow);
      color: white;
    }

    .parking-visual::before {
      content: '';
      position: absolute;
      width: 360px;
      height: 360px;
      right: -90px;
      top: -80px;
      border-radius: 50%;
      background: rgba(186,247,196,.22);
      filter: blur(60px);
    }

    .parking-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: .45;
    }

    .visual-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 26px;
    }

    .visual-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }

    .visual-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .visual-icon {
      width: 62px;
      height: 62px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      background: rgba(186,247,196,.16);
      border: 1px solid rgba(186,247,196,.28);
      color: var(--mint);
    }

    .visual-logo strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      letter-spacing: -.03em;
    }

    .visual-logo span {
      display: block;
      margin-top: 6px;
      color: rgba(255,255,255,.68);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .visual-status {
      padding: 10px 14px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(186,247,196,.14);
      border: 1px solid rgba(186,247,196,.22);
      color: var(--mint);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .map-card {
      margin-top: 42px;
      padding: 22px;
      border-radius: 30px;
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(12px);
    }

    .map-title {
      color: rgba(255,255,255,.7);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .map-grid {
      margin-top: 18px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .map-block {
      min-height: 118px;
      padding: 18px;
      border-radius: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: rgba(244,241,233,.1);
      border: 1px solid rgba(255,255,255,.13);
    }

    .map-block.active {
      background: rgba(186,247,196,.18);
      border-color: rgba(186,247,196,.34);
    }

    .map-block strong {
      color: #fff;
      font-size: 18px;
      line-height: 1.25;
    }

    .map-block span {
      color: rgba(255,255,255,.66);
      font-size: 13px;
      font-weight: 700;
    }

    .visual-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .mini-stat {
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.13);
    }

    .mini-stat span {
      display: block;
      color: rgba(255,255,255,.6);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .mini-stat strong {
      display: block;
      margin-top: 8px;
      color: white;
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -.04em;
    }

    .section {
      padding: 88px 0;
    }

    .section-dark {
      background: var(--green-950);
      color: white;
    }

    .section-head {
      margin-bottom: 38px;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
    }

    .section-label {
      margin-bottom: 10px;
      color: var(--green-700);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-dark .section-label {
      color: var(--mint);
    }

    .section-title {
      max-width: 780px;
      color: var(--green-950);
      font-family: var(--serif);
      font-size: clamp(38px, 4.8vw, 64px);
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -.045em;
    }

    .section-dark .section-title {
      color: white;
    }

    .section-text {
      max-width: 560px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
    }

    .section-dark .section-text {
      color: rgba(255,255,255,.7);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .about-card {
      padding: 34px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    .about-card.featured {
      background: linear-gradient(145deg, var(--green-950), var(--green-800));
      color: white;
    }

    .about-card h3 {
      font-size: 25px;
      letter-spacing: -.04em;
      line-height: 1.2;
    }

    .about-card p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .about-card.featured p {
      color: rgba(255,255,255,.72);
    }

    .feature-list {
      margin-top: 24px;
      display: grid;
      gap: 12px;
    }

    .feature-item {
      padding: 14px 16px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(186,247,196,.11);
      border: 1px solid rgba(186,247,196,.16);
      color: white;
      font-weight: 800;
    }

    .check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--mint);
      color: var(--green-950);
      font-size: 14px;
      font-weight: 900;
      flex-shrink: 0;
    }

    .official-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .official-item {
      padding: 18px;
      border-radius: 22px;
      background: rgba(186,247,196,.11);
      border: 1px solid rgba(186,247,196,.16);
    }

    .official-item span {
      display: block;
      color: var(--mint);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .official-item strong {
      display: block;
      margin-top: 8px;
      color: white;
      font-size: 17px;
      line-height: 1.35;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .location-card {
      position: relative;
      min-height: 340px;
      padding: 34px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    .location-card::before {
      content: '';
      position: absolute;
      width: 220px;
      height: 220px;
      right: -70px;
      top: -70px;
      border-radius: 50%;
      background: rgba(186,247,196,.34);
      filter: blur(30px);
    }

    .location-card > * {
      position: relative;
      z-index: 1;
    }

    .location-badge {
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--green-100);
      color: var(--green-950);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .location-card h3 {
      margin-top: 52px;
      color: var(--green-950);
      font-family: var(--serif);
      font-size: 42px;
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 500;
    }

    .location-card p {
      margin-top: 18px;
      max-width: 460px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .location-link {
      margin-top: 28px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green-950);
      font-weight: 900;
      border-bottom: 2px solid var(--mint);
    }

    .note-box {
      margin-top: 22px;
      padding: 20px 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.82);
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      box-shadow: var(--shadow-soft);
    }

    .tariff-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .tariff-card {
      min-height: 200px;
      padding: 24px;
      border-radius: 28px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.13);
      transition: transform .18s ease, background .18s ease, border-color .18s ease;
    }

    .tariff-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.12);
      border-color: rgba(186,247,196,.34);
    }

    .tariff-icon {
      width: 44px;
      height: 44px;
      margin-bottom: 22px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: rgba(186,247,196,.12);
      color: var(--mint);
    }

    .tariff-name {
      color: white;
      font-size: 18px;
      font-weight: 900;
      line-height: 1.25;
    }

    .tariff-price {
      margin-top: 14px;
      color: var(--mint);
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -.05em;
      line-height: 1;
    }

    .tariff-price span {
      font-size: 15px;
      letter-spacing: 0;
    }

    .tariff-desc {
      margin-top: 12px;
      color: rgba(255,255,255,.62);
      font-size: 14px;
      line-height: 1.55;
    }

    .section-dark .note-box {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.13);
      color: rgba(255,255,255,.66);
      box-shadow: none;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step-card {
      position: relative;
      min-height: 250px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    .step-number {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--green-950);
      color: var(--mint);
      font-weight: 900;
    }

    .step-card h3 {
      margin-top: 50px;
      font-size: 21px;
      line-height: 1.22;
      letter-spacing: -.03em;
    }

    .step-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .payment-options {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .payment-pill {
      padding: 11px 16px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(255,255,255,.82);
      color: var(--green-950);
      font-size: 14px;
      font-weight: 800;
      box-shadow: var(--shadow-soft);
    }

    .subs-table-wrap {
      padding: 10px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: var(--shadow-soft);
      overflow-x: auto;
    }

    .subs-table {
      width: 100%;
      min-width: 720px;
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border-radius: 26px;
      background: white;
    }

    .subs-table th,
    .subs-table td {
      padding: 20px 22px;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .subs-table th {
      color: var(--green-950);
      background: var(--mint-2);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .subs-table td {
      font-size: 17px;
      color: var(--text);
      font-weight: 700;
    }

    .subs-table tr:last-child td {
      border-bottom: none;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .info-card {
      padding: 34px;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid rgba(255,255,255,.84);
      box-shadow: var(--shadow-soft);
    }

    .info-card h3 {
      color: var(--green-950);
      font-size: 28px;
      letter-spacing: -.04em;
      line-height: 1.15;
    }

    .info-card p {
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .info-card .btn {
      margin-top: 26px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
      gap: 24px;
      align-items: start;
    }

    .contact-card,
    .contact-form,
    .legal-card {
      padding: 34px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.86);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(12px);
    }

    .contact-card h3,
    .contact-form h3,
    .legal-card h3 {
      color: var(--green-950);
      font-size: 28px;
      letter-spacing: -.04em;
      line-height: 1.15;
    }

    .contact-list {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }

    .contact-row {
      padding: 16px;
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid var(--border);
    }

    .contact-row span {
      display: block;
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .contact-row strong {
      display: block;
      margin-top: 6px;
      color: var(--green-950);
      font-size: 16px;
      line-height: 1.45;
      word-break: break-word;
    }

    .form-grid {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }

    .form-control {
      width: 100%;
      min-height: 56px;
      padding: 0 18px;
      border-radius: 18px;
      border: 1.5px solid var(--border);
      outline: none;
      background: var(--surface-soft);
      color: var(--text);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    textarea.form-control {
      min-height: 150px;
      padding-top: 16px;
      resize: vertical;
    }

    .form-control:focus {
      border-color: var(--green-800);
      background: white;
      box-shadow: 0 0 0 4px rgba(16,96,71,.09);
    }

    .legal-card {
      margin-top: 24px;
    }

    .legal-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .legal-item {
      padding: 16px;
      border-radius: 20px;
      background: var(--surface-soft);
      border: 1px solid var(--border);
    }

    .legal-item span {
      display: block;
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .legal-item strong {
      display: block;
      margin-top: 6px;
      color: var(--green-950);
      font-size: 16px;
      line-height: 1.45;
      word-break: break-word;
    }

    .site-footer {
      padding: 46px 0;
      background: #031f18;
      color: white;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-brand .brand-mark {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand strong {
      display: block;
      font-size: 20px;
      line-height: 1;
    }

    .footer-brand span {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.58);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px 18px;
      max-width: 560px;
    }

    .footer-links a {
      color: rgba(255,255,255,.7);
      font-size: 14px;
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--mint);
    }

    .copyright {
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.5);
      font-size: 14px;
    }

    @media (max-width: 1100px) {
      .nav {
        display: none;
      }

      .mobile-menu-note {
        display: block;
      }

      .hero-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .parking-visual {
        min-height: 520px;
      }

      .tariff-grid,
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }
    }

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

      .site-header {
        padding: 10px 0;
      }

      .header-inner {
        width: min(100% - 20px, 1320px);
        border-radius: 26px;
        align-items: stretch;
        flex-direction: column;
      }

      .brand {
        width: 100%;
        justify-content: space-between;
      }

      .header-cta {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
      }

      .phone-link,
      .header-cta .btn {
        width: 100%;
        justify-content: center;
      }

      .mobile-menu-note {
        display: none;
      }

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

      .hero h1 {
        font-size: clamp(44px, 13vw, 62px);
      }

      .hero-lead {
        font-size: 18px;
      }

      .hero-actions {
        flex-direction: column;
      }

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

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

      .parking-visual {
        min-height: auto;
        border-radius: 30px;
        padding: 20px;
      }

      .visual-top,
      .visual-bottom,
      .map-grid,
      .official-grid,
      .about-grid,
      .locations-grid,
      .two-col,
      .legal-grid {
        grid-template-columns: 1fr;
      }

      .visual-top {
        flex-direction: column;
      }

      .visual-status {
        width: 100%;
        justify-content: center;
      }

      .section {
        padding: 64px 0;
      }

      .about-card,
      .location-card,
      .info-card,
      .contact-card,
      .contact-form,
      .legal-card {
        padding: 24px;
        border-radius: 28px;
      }

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

      .location-card h3 {
        margin-top: 42px;
        font-size: 34px;
      }

      .tariff-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

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

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 420px) {
      .brand-text strong {
        font-size: 16px;
      }

      .brand-text span {
        font-size: 10px;
      }

      .section-title {
        font-size: 36px;
      }

      .map-card {
        padding: 16px;
      }

      .tariff-card,
      .step-card {
        padding: 22px;
        border-radius: 24px;
      }
    }