﻿
    :root {
      --ink: #10131a;
      --muted: #5d6675;
      --line: #dfe4ec;
      --soft: #f4f7fb;
      --paper: #ffffff;
      --red: #d71920;
      --red-dark: #a40f16;
      --navy: #111827;
      --blue: #1f3b65;
      --green: #12804a;
      --shadow: 0 24px 60px rgba(16, 19, 26, .12);
      --shadow-strong: 0 30px 90px rgba(16, 19, 26, .18);
      --radius: 8px;
      --wrap: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select { font: inherit; }

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

    .topbar {
      background: var(--navy);
      color: #fff;
      font-size: 13px;
    }

    .topbar .wrap,
    .nav .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topbar .wrap { min-height: 40px; }
    .topbar-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.82);
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(16, 19, 26, .08);
    }

    .nav .wrap { min-height: 78px; }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .brand-mark, .custom-logo {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(16,19,26,.1);
      display: block;
      object-fit: contain;
      padding: 3px;
      box-shadow: 0 12px 28px rgba(16,19,26,.12);
    }

    .navlinks {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #333b48;
      font-size: 14px;
      font-weight: 700;
    }

    .navlinks a:hover { color: var(--red); }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(16,19,26,.08);
    }

    .menu-toggle span:not(.screen-reader-text) {
      display: block;
      width: 21px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      transition: transform .2s ease, opacity .2s ease;
    }

    .mobile-menu-open .menu-toggle span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
    .mobile-menu-open .menu-toggle span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 850;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    }

    .btn:hover { transform: translateY(-1px); }
    .btn.primary {
      background: var(--red);
      color: #fff;
      box-shadow: 0 14px 28px rgba(215,25,32,.22);
    }
    .btn.primary:hover { background: var(--red-dark); }
    .btn.ghost {
      background: #fff;
      color: var(--ink);
      border-color: var(--line);
    }
    .btn.dark { background: var(--navy); color: #fff; }
    .btn.full { width: 100%; }

    .hero {
      min-height: calc(100vh - 118px);
      display: grid;
      align-items: center;
      padding: 76px 0 64px;
      background:
        radial-gradient(circle at 78% 16%, rgba(215,25,32,.12), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fd 56%, #eef3fa 100%),
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 480px;
      gap: 54px;
      align-items: center;
    }

    h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
    h1 {
      max-width: 760px;
      font-size: clamp(44px, 6vw, 82px);
      font-weight: 950;
    }
    h2 {
      font-size: clamp(31px, 4vw, 54px);
      font-weight: 920;
    }
    h3 {
      font-size: 21px;
      font-weight: 880;
    }

    .lead {
      max-width: 670px;
      margin: 22px 0 0;
      color: #313946;
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.35;
      font-weight: 650;
    }

    .page-hero {
      position: relative;
      padding: 86px 0 70px;
      background:
        linear-gradient(135deg, rgba(16,19,26,.96), rgba(31,59,101,.9)),
        radial-gradient(circle at 86% 8%, rgba(215,25,32,.32), transparent 30%);
      color: #fff;
      overflow: hidden;
      border-bottom: 1px solid rgba(16,19,26,.08);
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: max(24px, calc((100vw - var(--wrap)) / 2));
      bottom: -54px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      pointer-events: none;
    }

    .page-hero .wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(180px, 1fr);
      gap: 32px;
      align-items: end;
    }

    .page-hero h1 {
      max-width: 760px;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .page-hero h1::after {
      content: "";
      display: block;
      width: 78px;
      height: 5px;
      margin-top: 22px;
      border-radius: 99px;
      background: var(--red);
    }

    .page-hero p {
      max-width: 520px;
      margin: 0;
      color: rgba(255,255,255,.78);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 600;
    }

    .page-hero + section {
      padding-top: 76px;
    }

    .page-hero + section h2 {
      font-size: clamp(30px, 3.6vw, 48px);
      line-height: 1.08;
    }

    .page-hero + section p {
      font-size: 16px;
      line-height: 1.68;
    }

    .grid {
      display: grid;
      gap: 24px;
    }

    .grid.two {
      grid-template-columns: .9fr 1.1fr;
      align-items: start;
    }

    .post-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .hero-panel {
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(16,19,26,.08);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .hero-visual {
      position: relative;
      display: grid;
      gap: 14px;
    }

    .glass-card {
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(16,19,26,.08);
      border-radius: var(--radius);
      box-shadow: var(--shadow-strong);
      padding: 22px;
    }

    .vehicle-line {
      display: grid;
      grid-template-columns: 66px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    .plate {
      min-height: 42px;
      border-radius: 5px;
      background: linear-gradient(90deg, #1e4fa3 0 18%, #f8fafc 18%);
      color: var(--ink);
      display: grid;
      place-items: center;
      padding-left: 10px;
      font-weight: 950;
      letter-spacing: .04em;
      box-shadow: inset 0 0 0 1px rgba(16,19,26,.12);
    }

    .progress-stack {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .progress-row {
      display: grid;
      grid-template-columns: 24px 1fr auto;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
    }

    .spark {
      position: absolute;
      right: -18px;
      top: -20px;
      width: 128px;
      height: 128px;
      border-radius: 50%;
      background: var(--red);
      opacity: .08;
      pointer-events: none;
    }

    .panel-title {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 16px;
    }

    .status {
      color: var(--green);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .checklist {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .checklist li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .tick {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(18,128,74,.1);
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 13px;
    }

    section { padding: 92px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }
    .section-head p {
      margin: 0;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
    }

    .insurance {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .seo-local {
      background: #fff;
    }

    .seo-panel {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: stretch;
    }

    .seo-copy,
    .seo-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 30px;
      box-shadow: 0 16px 36px rgba(16,19,26,.06);
    }

    .seo-copy p,
    .seo-list p { color: var(--muted); }

    .seo-list ul {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .seo-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 10px;
      color: var(--muted);
    }

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

    .card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 42px rgba(16, 19, 26, .1);
    }

    .page-hero + section .card,
    .page-hero + section .contact-card,
    .page-hero + section .post-card {
      border-color: rgba(16,19,26,.08);
      box-shadow: 0 18px 44px rgba(16,19,26,.06);
    }

    .card p { color: var(--muted); margin: 12px 0 20px; }
    .mini-link {
      color: var(--red);
      font-weight: 900;
      font-size: 14px;
    }

    .info-strip {
      display: grid;
      grid-template-columns: 1.1fr .9fr 1fr;
      gap: 16px;
      margin-top: -46px;
      position: relative;
      z-index: 2;
    }

    .info-box {
      background: var(--navy);
      color: #fff;
      border-radius: var(--radius);
      padding: 24px;
      min-height: 160px;
    }

    .info-box.light {
      background: #fff;
      color: var(--ink);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .hours {
      display: grid;
      gap: 7px;
      margin-top: 15px;
      font-size: 14px;
    }

    .hours div {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: rgba(255,255,255,.78);
    }

    .info-box.light .hours div { color: var(--muted); }
    .hours strong { color: inherit; }

    .split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 52px;
      align-items: center;
    }

    .page-hero + section .split {
      align-items: start;
    }

    .page-hero + section .lead {
      max-width: 680px;
      margin-top: 18px;
      color: #313946;
      font-size: 19px;
      line-height: 1.5;
    }

    .image-frame {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #d9e1ed;
    }

    .image-frame img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .bullets {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 24px 0 0;
      list-style: none;
    }

    .bullets li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--muted);
    }

    .why {
      background: var(--navy);
      color: #fff;
    }

    .why .section-head p,
    .why .reason p { color: rgba(255,255,255,.68); }

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

    .reason {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius);
      padding: 24px;
      min-height: 260px;
      background: rgba(255,255,255,.04);
    }

    .reason h3 { color: #fff; }
    .reason p { margin: 14px 0 0; font-size: 15px; }

    .stats {
      background: linear-gradient(180deg, #fff, #f6f8fb);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .stat {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      background: #fff;
    }

    .stat strong {
      display: block;
      font-size: 46px;
      line-height: 1;
      color: var(--red);
      margin-bottom: 10px;
    }

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

    .service {
      padding: 30px;
      border-left: 4px solid var(--red);
      background: var(--soft);
      border-radius: var(--radius);
    }

    .service p { color: var(--muted); margin-bottom: 0; }

    .service .mini-link { display: inline-flex; margin-top: 18px; }

    .blog-band {
      background: #fff;
      border-top: 1px solid var(--line);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr .92fr;
      gap: 18px;
    }

    .post-card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 16px 36px rgba(16,19,26,.06);
    }

    .post-card.featured {
      grid-row: span 2;
    }

    .post-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
      background: var(--soft);
    }

    .post-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      padding: 22px;
    }

    .post-card p { color: var(--muted); }

    .post-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .guide {
      background: var(--navy);
      color: #fff;
    }

    .guide .section-head p { color: rgba(255,255,255,.72); }

    .steps {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      counter-reset: guide;
    }

    .step {
      position: relative;
      min-height: 150px;
      padding: 20px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14);
    }

    .step::before {
      counter-increment: guide;
      content: counter(guide);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--red);
      color: #fff;
      font-weight: 950;
      margin-bottom: 18px;
    }

    .step strong { display: block; font-size: 17px; }
    .step span { display: block; color: rgba(255,255,255,.68); font-size: 13px; margin-top: 8px; }

    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 30px;
      font-weight: 950;
      box-shadow: 0 18px 42px rgba(37,211,102,.34);
      border: 3px solid #fff;
    }

    .calculator {
      background:
        linear-gradient(180deg, rgba(16,19,26,.86), rgba(16,19,26,.92)),
        url("https://faauto.ba/wp-content/uploads/2025/06/Untitled-design-44.png") center / cover no-repeat;
      color: #fff;
    }

    .calc-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 42px;
      align-items: start;
    }

    .calc-copy p { color: rgba(255,255,255,.74); font-size: 17px; }
    .calc-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .calc-list div {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      color: rgba(255,255,255,.8);
    }

    .calc {
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    label {
      display: grid;
      gap: 6px;
      color: #374151;
      font-size: 13px;
      font-weight: 850;
    }

    input, select {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 0 12px;
      color: var(--ink);
      background: #fff;
      outline: none;
    }

    input:focus, select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 4px rgba(215,25,32,.1);
    }

    .summary {
      margin-top: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 14px;
    }

    .summary-row:last-child { border-bottom: 0; }
    .summary-row.total {
      background: var(--navy);
      color: #fff;
      font-size: 20px;
      font-weight: 950;
    }

    .note {
      color: var(--muted);
      font-size: 12px;
      margin-top: 12px;
    }

    .calc-submit {
      width: 100%;
      margin-top: 16px;
      margin: 12px 0 0;
    }

    .reviews {
      background: var(--soft);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      background: #fff;
    }

    .faq-item p {
      margin: 12px 0 0;
      color: var(--muted);
    }

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

    .review {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
    }

    .stars {
      color: var(--red);
      font-weight: 950;
      letter-spacing: .08em;
      margin-bottom: 12px;
    }

    .review p { color: var(--muted); margin: 0 0 18px; }
    .review strong { display: block; }
    .review span { color: var(--muted); font-size: 13px; }

    .contact {
      background: var(--paper);
    }

    .contact-panel {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }

    .contact-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      background: #fff;
      min-height: 180px;
    }

    .contact-card p { color: var(--muted); margin: 10px 0 20px; }

    footer {
      background: var(--navy);
      color: #fff;
      padding: 58px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 32px;
      margin-bottom: 34px;
    }

    footer p, footer li { color: rgba(255,255,255,.72); }
    footer ul {
      list-style: none;
      margin: 12px 0 0;
      padding: 0;
      display: grid;
      gap: 9px;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,.12);
      padding-top: 22px;
      color: rgba(255,255,255,.56);
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .menu-toggle { display: inline-flex; }
      .navlinks {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        background: #fff;
        border: 1px solid rgba(16,19,26,.1);
        border-radius: 8px;
        box-shadow: var(--shadow);
        padding: 10px;
        z-index: 30;
      }
      .mobile-menu-open .navlinks { display: grid; }
      .navlinks a {
        display: block;
        padding: 14px 12px;
        border-radius: 6px;
      }
      .navlinks a:hover { background: var(--soft); }
      .navlinks ul {
        display: grid;
        gap: 2px;
        width: 100%;
      }
      .hero-grid,
      .split,
      .calc-grid { grid-template-columns: 1fr; }
      .page-hero .wrap {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .hero-panel { max-width: 520px; }
      .info-strip,
      .cards,
      .seo-panel,
      .reason-grid,
      .stat-grid,
      .services-grid,
      .review-grid,
      .faq-grid,
      .blog-grid,
      .post-grid,
      .steps,
      .contact-panel,
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .wrap { width: min(100% - 24px, var(--wrap)); }
      .topbar .wrap { align-items: flex-start; flex-direction: column; padding: 10px 0; }
      .nav .wrap { min-height: 68px; }
      .nav .btn { display: none; }
      .brand-name { font-size: 14px; }
      .brand-mark, .custom-logo { width: 46px; height: 46px; }
      .hero {
        min-height: auto;
        padding: 48px 0 28px;
        background:
          radial-gradient(circle at 82% 12%, rgba(215,25,32,.14), transparent 34%),
          linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
      }
      h1 { font-size: 42px; }
      .page-hero {
        padding: 54px 0 44px;
      }
      .page-hero h1 {
        font-size: 36px;
        line-height: 1.06;
      }
      .page-hero h1::after {
        width: 58px;
        height: 4px;
        margin-top: 16px;
      }
      .page-hero p {
        font-size: 16px;
      }
      .page-hero + section {
        padding-top: 48px;
      }
      .page-hero + section h2 {
        font-size: 31px;
      }
      section { padding: 64px 0; }
      .section-head { display: grid; align-items: start; }
      .info-strip,
      .cards,
      .seo-panel,
      .reason-grid,
      .stat-grid,
      .services-grid,
      .review-grid,
      .faq-grid,
      .blog-grid,
      .post-grid,
      .steps,
      .contact-panel,
      .footer-grid,
      .form-grid { grid-template-columns: 1fr; }
      .info-strip { margin-top: 0; }
      .calculator {
        display: block !important;
        padding: 56px 0 !important;
        overflow: visible !important;
      }
      .calc-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 22px !important;
      }
      .calc,
      .faauto-standalone-calculator {
        display: block !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 18px !important;
        overflow: visible !important;
      }
      .form-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
      }
      .summary {
        display: block !important;
        margin-top: 16px !important;
      }
      .summary-row {
        align-items: center;
        padding: 12px !important;
      }
      .summary-row.total {
        font-size: 17px;
      }
      .grid.two {
        display: grid !important;
        grid-template-columns: 1fr !important;
      }
    }
  
.custom-logo-link{display:flex;align-items:center}.brand-name{font-weight:900}.navlinks ul{display:flex;gap:22px;list-style:none;margin:0;padding:0}.navlinks li{list-style:none}.footer-brand .custom-logo-link{margin-right:12px}.screen-reader-text{position:absolute;left:-9999px}

@media (max-width: 980px) {
  .mobile-menu-open .navlinks { display: grid !important; }
  .navlinks ul { display: grid !important; gap: 2px !important; width: 100%; }
}

