:root {
    /* Brand: yellow + black, matching hire-cars-crete.gr */
    --paper: #ffffff;
    --paper-2: #fafaf7;
    --paper-3: #f4f3ee;
    --ink: #0a0a0a;
    --ink-2: #1f1f1f;
    --ink-3: #3a3a3a;
    --muted: #6e6e6e;
    --rule: #e5e3dc;
    --rule-soft: #efedea;

    --brand: #ffd100;          /* gold — flag bottom stripe & primary brand */
    --brand-dark: #e8bd00;
    --brand-deep: #b88f00;

    --flag-red: #c8102e;       /* German-flag red — strategic secondary accent */
    --flag-red-dark: #9e0a23;

    --trust: #16a34a;          /* step-1 green from their site */
    --trust-dark: #15803d;
    --info: #1e3a8a;
    --warn: #c8102e;           /* aligned with flag red */

    --gold-star: #f5a623;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-size: 15.5px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, h4, h5 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 144;
  }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
  .mono { font-family: 'JetBrains Mono', monospace; letter-spacing: -0.02em; }

  /* ============ TOP UTILITY BAR ============ */
  .util-bar {
    background: var(--ink);
    color: #e8e6dd;
    font-size: 12.5px;
    padding: 9px 0;
    letter-spacing: 0.02em;
  }
  .util-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .util-bar a { color: #e8e6dd; text-decoration: none; transition: color 0.15s; }
  .util-bar a:hover { color: var(--brand); }
  .util-bar strong { color: var(--brand); }
  .langs { display: flex; gap: 2px; align-items: center; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; }
  .langs a {
    padding: 3px 9px;
    border-radius: 1px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .langs a.active { background: var(--brand); color: var(--ink); }
  .util-right { display: flex; gap: 22px; align-items: center; }
  .util-right span { display: inline-flex; align-items: center; gap: 6px; }
  .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--trust); box-shadow: 0 0 0 0 rgba(22,163,74,0.7); animation: pulse 2s infinite; }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
  }
  .star-warm { color: var(--gold-star); }

  /* ============ HEADER ============ */
  header.main {
    background: var(--paper);
    border-bottom: none;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow:
      0 4px 0 0 var(--brand),
      0 6px 0 0 var(--flag-red),
      0 8px 0 0 var(--ink);
  }
  .header-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
  .logo-block { display: flex; align-items: baseline; gap: 12px; }
  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.025em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .logo-mark {
    display: inline-flex;
    width: 32px; height: 32px;
    background: var(--brand);
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    transform: rotate(-3deg);
  }
  .logo-mark svg { transform: rotate(3deg); }
  .logo-est { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; border-left: 1px solid var(--rule); padding-left: 12px; }
  nav ul { display: flex; gap: 24px; list-style: none; align-items: center; }
  nav a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.15s;
    position: relative;
  }
  nav a:hover { color: var(--ink); }
  nav a:hover::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 3px;
    background: var(--brand);
  }
  .nav-cta {
    background: var(--flag-red);
    color: var(--paper) !important;
    padding: 11px 18px;
    border-radius: 1px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s, transform 0.1s;
  }
  .nav-cta:hover { background: var(--flag-red-dark); transform: translateY(-1px); }
  .nav-cta:hover::after { display: none; }

  /* ============ HERO with VIDEO BG ============ */
  .hero {
    background: var(--ink);
    padding: 72px 0 96px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(1.05) contrast(1.05);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.7) 100%),
      linear-gradient(90deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.5) 100%);
  }
  .hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.6;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
  }

  .rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--paper);
  }
  .rating-bar .stars { color: var(--gold-star); letter-spacing: 1px; font-size: 14px; }
  .rating-bar strong { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--paper); }
  .rating-bar .source { color: rgba(255,255,255,0.7); font-size: 12px; }
  .rating-bar a { color: var(--brand); font-weight: 700; text-decoration: none; font-size: 12.5px; border-left: 1px solid rgba(255,255,255,0.2); padding-left: 14px; margin-left: 4px; }

  .hero-text h1 {
    font-size: 68px;
    line-height: 0.98;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--paper);
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  }
  .hero-text h1 .underline-y {
    background-image: linear-gradient(180deg, transparent 65%, var(--brand) 65%);
    padding: 0 4px;
    color: var(--paper);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .hero-text h1 em {
    font-style: italic;
    font-variation-settings: "opsz" 144;
    color: var(--brand);
    font-weight: 500;
  }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  }
  .hero-sub strong { font-weight: 700; color: var(--paper); }

  /* Proof row — light version on video */
  .proof-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    border-bottom: 1px solid rgba(255,255,255,0.22);
    margin-top: 16px;
    background: rgba(10,10,10,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .proof-cell {
    padding: 20px 22px;
    border-right: 1px solid rgba(255,255,255,0.14);
  }
  .proof-cell:last-child { border-right: none; }
  .proof-cell .num {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 6px;
    font-variation-settings: "opsz" 144;
  }
  .proof-cell .num .accent { background: var(--brand); color: var(--ink); padding: 0 6px; }
  .proof-cell .num .accent-red { background: var(--flag-red); color: var(--paper); padding: 0 6px; }
  .proof-cell .label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.78);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  /* ============ BOOKING CARD ============ */
  .booking-card {
    background: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 1px;
    padding: 0;
    position: relative;
    box-shadow: 12px 12px 0 var(--brand), 0 24px 60px rgba(0,0,0,0.35);
  }
  .booking-head {
    background: var(--ink);
    color: var(--paper);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .booking-head h2 {
    font-size: 22px;
    color: var(--paper);
    font-weight: 600;
    line-height: 1;
  }
  .booking-head .meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  .booking-body { padding: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .form-field select, .form-field input {
    padding: 12px 14px;
    border: 1px solid var(--rule);
    border-radius: 1px;
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    background: var(--paper-3);
    color: var(--ink);
    transition: border-color 0.15s, background 0.15s;
    font-weight: 500;
  }
  .form-field select:focus, .form-field input:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--brand);
  }
  .cta-btn {
    width: 100%;
    padding: 18px;
    background: var(--brand);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 1px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .cta-btn:hover { background: var(--brand-dark); transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
  .cta-btn::after { content: '→'; font-size: 18px; }
  .booking-foot {
    background: var(--paper-2);
    margin: 20px -24px -24px;
    padding: 14px 24px;
    border-top: 1px solid var(--rule);
    font-size: 12.5px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .booking-foot .yes { color: var(--trust-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

  /* ============ COMPARISON ============ */
  .compare-strip {
    background: var(--ink);
    color: var(--paper);
    padding: 56px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .compare-strip::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 6px;
    background: linear-gradient(to right, var(--ink) 0%, var(--ink) 33%, var(--flag-red) 33%, var(--flag-red) 66%, var(--brand) 66%, var(--brand) 100%);
  }
  .compare-head { margin-bottom: 32px; max-width: 720px; }
  .compare-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand);
    margin-bottom: 10px;
    font-weight: 700;
  }
  .compare-strip h2 {
    color: var(--paper);
    font-size: 40px;
    font-weight: 600;
    line-height: 1.05;
  }
  .compare-strip h2 em {
    font-style: italic;
    background: var(--brand);
    color: var(--ink);
    padding: 0 6px;
    font-variation-settings: "opsz" 144;
  }
  .compare-table {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0;
    margin-top: 32px;
    border: 1px solid #2a2a2a;
  }
  .compare-table > div {
    padding: 18px 22px;
    border-bottom: 1px solid #2a2a2a;
    border-right: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
  }
  .compare-table > div:nth-child(3n) { border-right: none; }
  .compare-table > div.head-cell {
    background: #1a1a1a;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #e0deca;
  }
  .compare-table > div.head-cell.us {
    background: var(--brand);
    color: var(--ink);
  }
  .compare-table > div.feature { font-weight: 700; color: var(--paper); }
  .compare-table > div.us-cell { background: rgba(255, 209, 0, 0.07); }
  .compare-table .yes { color: #4ade80; font-weight: 700; }
  .compare-table .no { color: #f87171; opacity: 0.95; }
  .compare-table .icon { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 13px; min-width: 14px; }

  /* ============ HOW IT WORKS ============ */
  .how-section { background: var(--paper); padding: 90px 0; }
  .section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    color: var(--ink-2);
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-block;
    background: var(--brand);
    padding: 5px 10px;
  }
  .section-title {
    font-size: 50px;
    margin-bottom: 16px;
    max-width: 800px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .section-title em { font-style: italic; font-weight: 500; }
  .section-title .y { background: var(--brand); padding: 0 6px; font-style: normal; }
  .section-lede {
    font-size: 17px;
    color: var(--ink-3);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.55;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }
  .step {
    padding: 32px 26px 36px 0;
    border-right: 1px solid var(--rule);
    position: relative;
  }
  .step:not(:first-child) { padding-left: 26px; }
  .step:last-child { border-right: none; padding-right: 0; }
  .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
  }
  .step-num .num-big {
    color: var(--ink);
    font-weight: 700;
  }
  .step-num .time {
    color: var(--ink);
    font-weight: 700;
    background: var(--brand);
    padding: 4px 8px;
  }
  .step:nth-child(even) .step-num .time {
    background: var(--flag-red);
    color: var(--paper);
  }
  .step h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.1;
  }
  .step p { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }

  /* ============ TRUST / REVIEWS ============ */
  .trust-section { background: var(--paper-3); padding: 100px 0; }
  .trust-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .rating-large { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
  .rating-big-num {
    font-family: 'Fraunces', serif;
    font-size: 110px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--ink);
    font-variation-settings: "opsz" 144;
    position: relative;
  }
  .rating-big-num::after {
    content: '';
    position: absolute;
    left: 0; right: 6px; bottom: 8px;
    height: 14px;
    background: var(--brand);
    z-index: -1;
  }
  .rating-meta-large { padding-bottom: 14px; }
  .rating-meta-large .stars { color: var(--gold-star); font-size: 26px; letter-spacing: 3px; margin-bottom: 6px; }
  .rating-meta-large .count { font-weight: 700; font-size: 16px; }
  .rating-meta-large .sources { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .review-card {
    background: var(--paper);
    padding: 28px;
    border: 1px solid var(--rule);
    border-radius: 1px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 var(--brand);
  }
  .review-card::before {
    content: '"';
    position: absolute;
    top: -8px; left: 20px;
    font-family: 'Fraunces', serif;
    font-size: 86px;
    background: var(--brand);
    color: var(--ink);
    line-height: 1;
    font-weight: 700;
    padding: 0 8px;
  }
  .review-stars { color: var(--gold-star); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; padding-top: 14px; }
  .review-text {
    font-family: 'Fraunces', serif;
    font-size: 17.5px;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 22px;
    font-weight: 400;
    font-variation-settings: "opsz" 14;
  }
  .review-byline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    font-size: 13px;
  }
  .review-name { font-weight: 700; }
  .review-meta-info { color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; }
  .review-verified { color: var(--trust-dark); font-weight: 700; font-size: 11.5px; display: inline-flex; align-items: center; gap: 4px; }

  /* ============ ABOUT ============ */
  .about-section { background: var(--paper); padding: 100px 0; }
  .about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-text p {
    margin-bottom: 20px;
    color: var(--ink-3);
    font-size: 16px;
    line-height: 1.65;
  }
  .about-text p strong { color: var(--ink); font-weight: 700; }
  .about-text p .highlight {
    background: var(--brand);
    padding: 0 4px;
    color: var(--ink);
    font-weight: 600;
  }
  .about-aside {
    background: var(--paper);
    border: 2px solid var(--ink);
    padding: 32px;
    box-shadow: 8px 8px 0 var(--brand);
  }
  .about-aside h4 {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 700;
    background: var(--brand);
    padding: 5px 10px;
    display: inline-block;
  }
  .key-facts { display: flex; flex-direction: column; gap: 0; }
  .key-fact {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
  }
  .key-fact:last-child { border-bottom: none; }
  .key-fact .k { font-size: 13px; color: var(--muted); font-weight: 600; }
  .key-fact .v { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; color: var(--ink); font-variation-settings: "opsz" 144; }

  /* ============ FLEET ============ */
  .fleet-section { background: var(--paper-3); padding: 100px 0; }
  .fleet-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 48px;
    gap: 32px;
    flex-wrap: wrap;
  }
  .fleet-head .left { flex: 1; min-width: 280px; }
  .fleet-stats {
    display: flex;
    gap: 32px;
    align-items: end;
  }
  .fleet-stat .num { font-family: 'Fraunces', serif; font-size: 38px; font-weight: 700; line-height: 1; font-variation-settings: "opsz" 144; }
  .fleet-stat .label { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .car-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 1px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .car-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 0 -4px var(--brand);
    border-color: var(--ink);
  }
  .car-img { aspect-ratio: 16/10; background: var(--rule-soft) center/cover; position: relative; }
  .car-img .class-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--ink);
    color: var(--brand);
    padding: 5px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
  .car-body { padding: 22px; }
  .car-name { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.1; }
  .car-specs { display: flex; gap: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--muted); margin-bottom: 18px; flex-wrap: wrap; text-transform: uppercase; letter-spacing: 0.05em; }
  .car-specs span { background: var(--paper-3); padding: 4px 8px; border: 1px solid var(--rule); }
  .car-foot { display: flex; justify-content: space-between; align-items: end; padding-top: 16px; border-top: 1px solid var(--rule); }
  .car-price-block .price-from { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
  .car-price-block .price-num { font-family: 'Fraunces', serif; font-size: 30px; color: var(--ink); font-weight: 700; line-height: 1; font-variation-settings: "opsz" 144; }
  .car-price-block .price-per { font-size: 12px; color: var(--muted); margin-left: 2px; }
  .car-cta {
    display: inline-block;
    padding: 10px 16px;
    background: var(--brand);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 1px;
    border: 1px solid var(--ink);
    transition: transform 0.1s, box-shadow 0.15s;
  }
  .car-cta:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--ink); }

  /* ============ INSURANCE ============ */
  .insurance-section { background: var(--ink); color: var(--paper); padding: 100px 0; }
  .insurance-section h2 { color: var(--paper); }
  .insurance-section .section-lede { color: rgba(255,255,255,0.7); }
  .insurance-section .section-title .y { background: var(--brand); color: var(--ink); }
  .ins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid #2a2a2a;
  }
  .ins-item {
    padding: 28px 32px 28px 0;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    gap: 20px;
  }
  .ins-item:nth-child(even) { padding-left: 32px; border-left: 1px solid #2a2a2a; padding-right: 0; }
  .ins-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--ink);
    background: var(--brand);
    font-weight: 800;
    letter-spacing: 0.04em;
    min-width: 38px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ins-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--paper);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  .ins-item p { font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.55; }
  .ins-item p strong { color: var(--brand); font-weight: 700; }

  /* ============ TEAM ============ */
  .team-section { background: var(--paper); padding: 100px 0; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--brand);
    border: 2px solid var(--ink);
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 80px;
    color: var(--ink);
    font-weight: 700;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .team-card h4 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
  .team-role { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
  .team-bio { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
  .team-langs { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; background: var(--ink); color: var(--brand); padding: 4px 8px; display: inline-block; }

  /* ============ LOCATIONS ============ */
  .loc-section { background: var(--paper-3); padding: 100px 0; }
  .loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    border-top: 2px solid var(--ink);
    border-left: 2px solid var(--ink);
  }
  .loc-card {
    background: var(--paper);
    padding: 28px;
    border-bottom: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
    transition: background 0.15s;
  }
  .loc-card:hover { background: var(--brand); }
  .loc-card.featured { background: var(--ink); color: var(--paper); }
  .loc-card.featured h3 { color: var(--paper); }
  .loc-card.featured .addr { color: rgba(255,255,255,0.78); }
  .loc-card.featured:hover { background: var(--ink); }
  .loc-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    background: var(--brand);
    padding: 4px 8px;
    margin-bottom: 12px;
    font-weight: 700;
    display: inline-block;
  }
  .loc-card.featured .loc-tag { background: var(--brand); color: var(--ink); }
  .loc-card h3 { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 14px; font-weight: 700; }
  .loc-card .addr { font-size: 14px; color: var(--ink-3); line-height: 1.65; margin-bottom: 16px; }
  .loc-card .phone { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 600; }

  /* ============ FAQ ============ */
  .faq-section { background: var(--paper); padding: 100px 0; }
  .faq-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-top: 2px solid var(--ink);
    overflow: hidden;
  }
  .faq-item:last-child { border-bottom: 2px solid var(--ink); }
  .faq-q {
    padding: 22px 0;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    list-style: none;
    line-height: 1.3;
    gap: 16px;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after {
    content: '+';
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    color: var(--ink);
    background: var(--brand);
    font-weight: 600;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  details[open] .faq-q::after { transform: rotate(45deg); }
  .faq-a { padding: 0 0 22px; color: var(--ink-3); font-size: 15px; line-height: 1.65; max-width: 90%; }
  .faq-a strong { color: var(--ink); }

  /* ============ FOOTER ============ */
  footer.site-foot { background: var(--ink); color: #e8e6dd; padding: 72px 0 32px; position: relative; }
  footer.site-foot::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 6px;
    background: linear-gradient(to right, var(--ink) 0%, var(--ink) 33%, var(--flag-red) 33%, var(--flag-red) 66%, var(--brand) 66%, var(--brand) 100%);
  }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
  .foot-brand .logo { color: var(--paper); }
  .foot-brand .logo .accent { color: var(--brand); }
  .foot-brand p { font-size: 14px; opacity: 0.85; margin: 16px 0; line-height: 1.65; max-width: 320px; }
  .foot-eot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: var(--ink);
    padding: 9px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-top: 6px;
  }
  footer h4 { color: var(--brand); font-size: 13px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 18px; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 10px; font-size: 14px; }
  footer a { color: #e8e6dd; text-decoration: none; opacity: 0.85; transition: opacity 0.15s, color 0.15s; }
  footer a:hover { opacity: 1; color: var(--brand); }
  .foot-bottom { border-top: 1px solid #2a2a2a; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12.5px; opacity: 0.7; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.05em; }
  .legal-required { color: var(--flag-red) !important; font-weight: 700; opacity: 1 !important; }

  /* ============ WhatsApp Float ============ */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    background: #25D366;
    color: white;
    padding: 14px 18px;
    border-radius: 1px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 99;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: translateY(-2px); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 980px) {
    .hero-grid, .compare-table, .steps-grid, .reviews-grid, .about-grid, .fleet-grid, .ins-grid, .team-grid, .loc-grid, .faq-wrap, .foot-grid, .trust-top { grid-template-columns: 1fr; }
    .hero-text h1, .section-title { font-size: 38px; }
    .rating-big-num { font-size: 72px; }
    nav ul { display: none; }
    .nav-cta { display: inline-flex; }
    .step, .ins-item { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0 !important; border-left: none !important; }
    .compare-table > div { border-right: none !important; }
    .util-right { gap: 12px; font-size: 11.5px; }
    .util-right span:nth-child(2) { display: none; }
  }
  /* Save mobile data: show poster image instead of streaming video on small/cellular */
  @media (max-width: 720px) {
    .hero-video { display: none; }
    .hero { background: url('../images/hero-poster.jpg') center/cover, var(--ink); }
  }

/* WordPress integration */
.admin-bar header.main { top: 32px; }
@media (max-width: 782px) { .admin-bar header.main { top: 46px; } }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor { max-width: 100%; }
.entry-content { background: var(--paper); padding: 70px 0; }
.entry-content .container > * + * { margin-top: 1rem; }
.entry-content a { color: var(--flag-red); font-weight: 700; }
.hcc-booking-shortcode > * { max-width: 100%; }

/* ============ Plugin booking form skin ============
   Scoped only inside the hero booking card. This makes most shortcode/plugin
   forms visually match the original design without touching the rest of WP. */
.booking-card .hcc-booking-shortcode,
.booking-card .hcc-plugin-skin {
  width: 100%;
}

.booking-card .hcc-booking-shortcode :where(form) {
  margin: 0;
}

.booking-card .hcc-booking-shortcode :where(.row, .form-row, .fields, .field-row, .booking-row, .search-row, .rc-row, .wpcf7-form-control-wrap) {
  max-width: 100%;
}

.booking-card .hcc-booking-shortcode :where(label) {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 6px;
}

.booking-card .hcc-booking-shortcode :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), select, textarea) {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--rule) !important;
  border-radius: 1px !important;
  background: var(--paper-3) !important;
  color: var(--ink) !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.4;
  box-shadow: none !important;
  outline: none;
}

.booking-card .hcc-booking-shortcode :where(textarea) {
  min-height: 104px;
  resize: vertical;
}

.booking-card .hcc-booking-shortcode :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):focus, select:focus, textarea:focus) {
  border-color: var(--ink) !important;
  background: var(--paper) !important;
  box-shadow: 0 0 0 3px var(--brand) !important;
}

.booking-card .hcc-booking-shortcode :where(button, input[type="submit"], input[type="button"], .button, .btn, .submit, .search-submit, .booking-submit, .reservation-submit) {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px !important;
  background: var(--brand) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 1px !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.booking-card .hcc-booking-shortcode :where(button:hover, input[type="submit"]:hover, input[type="button"]:hover, .button:hover, .btn:hover, .submit:hover, .search-submit:hover, .booking-submit:hover, .reservation-submit:hover) {
  background: var(--brand-dark) !important;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink) !important;
}

.booking-card .hcc-booking-shortcode :where(.form-field, .field, .control, .form-group, .input-group, .booking-field, .rc-field, p) {
  margin: 0 0 14px;
}

.booking-card .hcc-booking-shortcode :where(.form-row, .row, .fields, .booking-row, .search-row, .rc-row) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.booking-card .hcc-booking-shortcode :where(.notice, .message, .alert, .error, .success) {
  border-radius: 1px !important;
  font-family: 'Manrope', -apple-system, sans-serif;
}

.booking-card .hcc-booking-shortcode :where(.ui-datepicker, .flatpickr-calendar) {
  font-family: 'Manrope', -apple-system, sans-serif;
}

@media (max-width: 720px) {
  .booking-card .hcc-booking-shortcode :where(.form-row, .row, .fields, .booking-row, .search-row, .rc-row) {
    grid-template-columns: 1fr;
  }
}


/* ============ Car Rental Forceweb plugin skin ============ */
.booking-card .hcc-booking-shortcode .crs-booking-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form .row-group {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin: 0 0 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form .row-group > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form label {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: var(--muted) !important;
  margin: 0 !important;
  line-height: 1.35 !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form .date-time-wrap {
  display: grid !important;
  grid-template-columns: 1fr 0.72fr !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form select,
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="date"],
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="text"],
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="email"],
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="tel"],
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="number"] {
  width: 100% !important;
  min-height: 46px !important;
  padding: 12px 14px !important;
  border: 1px solid var(--rule) !important;
  border-radius: 1px !important;
  background: var(--paper-3) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  appearance: auto !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form select:focus,
.booking-card .hcc-booking-shortcode .crs-booking-form input:focus {
  border-color: var(--ink) !important;
  background: var(--paper) !important;
  box-shadow: 0 0 0 3px var(--brand) !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form button[type="submit"],
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="submit"] {
  width: 100% !important;
  min-height: 56px !important;
  padding: 18px !important;
  margin: 12px 0 0 !important;
  background: var(--brand) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 1px !important;
  box-shadow: none !important;
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  cursor: pointer !important;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form button[type="submit"]:hover,
.booking-card .hcc-booking-shortcode .crs-booking-form input[type="submit"]:hover {
  background: var(--brand-dark) !important;
  color: var(--ink) !important;
  transform: translate(-1px, -1px) !important;
  box-shadow: 3px 3px 0 var(--ink) !important;
}

.booking-card .hcc-booking-shortcode .crs-booking-form button[type="submit"]::after {
  content: ' →';
  font-size: 18px;
}

@media (max-width: 720px) {
  .booking-card .hcc-booking-shortcode .crs-booking-form .row-group,
  .booking-card .hcc-booking-shortcode .crs-booking-form .date-time-wrap {
    grid-template-columns: 1fr !important;
  }
}
