/* ============================================================
   GEN6 Enterprise — Clean Design System
   Blue / White / Black · Apple · Stripe · Linear
   ============================================================ */

:root {
  /* Surface */
  --paper:        #FFFFFF;
  --cloud:        #F6F8FB;
  --mist:         #EEF2F7;
  --line:         #E4E9F0;
  --line-strong:  #D2DAE6;

  /* Ink */
  --ink:          #0B1220;   /* near-black, slightly blue */
  --navy:         #0B1B3B;   /* deep brand navy */
  --navy-2:       #122A52;
  --slate:        #3A4658;
  --muted:        #5B6675;
  --subtle:       #8593A6;

  /* Accent — one confident blue */
  --blue:         #1D4ED8;
  --blue-bright:  #2563EB;
  --blue-deep:    #1E40AF;
  --blue-soft:    #EEF2FF;
  --blue-ink:     #1E3A8A;

  /* Feedback */
  --green:        #15803D;

  /* Type */
  --text-xs:   13px;
  --text-sm:   15px;
  --text-base: 17px;
  --text-md:   19px;
  --text-lg:   24px;
  --text-xl:   clamp(30px, 4vw, 42px);
  --text-2xl:  clamp(38px, 5.4vw, 60px);
  --text-hero: clamp(44px, 6.4vw, 76px);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius:    16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 2px 6px rgba(11,18,32,.05);
  --shadow:    0 6px 24px rgba(11,18,32,.08);
  --shadow-lg: 0 24px 60px rgba(11,18,32,.14);

  --container: 1180px;
  --pad: clamp(20px, 5vw, 96px);
}

/* ------------------- Reset ------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }

::selection { background: var(--blue-soft); color: var(--blue-ink); }

/* ------------------- Layout ------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cloud { background: var(--cloud); }
.section--navy { background: var(--navy); color: #fff; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.section--navy .eyebrow { color: #93B4FF; }
.section--navy .eyebrow::before { background: #93B4FF; }

.h2 { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.03em; }
.lead { font-size: var(--text-md); color: var(--muted); max-width: 62ch; margin-top: 16px; }
.section--navy .lead { color: #B9C6DC; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ------------------- Buttons ------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: var(--text-sm);
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(29,78,216,.28); }
.btn--primary:hover { background: var(--blue-deep); box-shadow: 0 10px 26px rgba(29,78,216,.36); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1a2336; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--cloud); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--cloud); }
.btn--link { color: var(--blue); font-weight: 600; padding: 0; border-radius: 0; }
.btn--link:hover { color: var(--blue-deep); }
.btn--lg { padding: 16px 28px; font-size: var(--text-base); }
.btn--block { width: 100%; }

/* ------------------- Header ------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 800; letter-spacing: -0.03em; }
.brand .brand-mark { font-size: 21px; color: var(--ink); }
.brand .brand-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); display: inline-block; transform: translateY(-2px); }
.brand .brand-sub { font-size: 10px; letter-spacing: .28em; color: var(--subtle); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: var(--text-sm); font-weight: 500; color: var(--slate);
  padding: 8px 12px; border-radius: 8px; transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--cloud); }
.nav-link.active { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm); font-weight: 600; color: var(--ink);
}
.nav-phone:hover { color: var(--blue); }
.nav-phone svg { width: 16px; height: 16px; color: var(--blue); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: var(--paper); border-radius: 10px; cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px;
  background: var(--ink); transform: translate(-50%,-50%); transition: transform .2s ease, opacity .15s ease;
}
.nav-toggle span::before { transform: translate(-50%,-6px); }
.nav-toggle span::after { transform: translate(-50%,6px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translate(-50%,-50%) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--pad) 24px; border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu a { padding: 12px 4px; font-size: var(--text-md); font-weight: 500; border-bottom: 1px solid var(--mist); }
.mobile-menu .btn { margin-top: 12px; }
body.menu-open .mobile-menu { display: flex; }

@media (max-width: 940px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
}

/* ------------------- Hero ------------------- */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: var(--text-hero); letter-spacing: -0.035em; line-height: 1.02; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: var(--text-md); color: var(--muted); max-width: 50ch; margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 30px; max-width: 460px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--slate); font-weight: 500; }
.hero-trust svg { width: 16px; height: 16px; color: var(--blue); }

.hero-media { position: relative; }
.hero-media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--mist); }
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute; left: -18px; bottom: -22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
}
.hero-card .hc-col { text-align: center; }
.hero-card .hc-big { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.hero-card .hc-small { font-size: 12px; color: var(--muted); margin-top: 4px; }
.hero-card .hc-div { width: 1px; height: 34px; background: var(--line); justify-self: center; }

.feature-bar {
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center;
  padding: 26px var(--pad); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cloud);
}
.feature-bar .fb { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: var(--text-sm); color: var(--ink); }
.feature-bar svg { width: 20px; height: 20px; color: var(--blue); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; }
  .hero-card { left: 12px; bottom: -16px; }
}

/* ------------------- Stats ------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat .num { font-size: var(--text-xl); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.section--navy .stat .num { color: #fff; }
.stat .lbl { font-size: var(--text-sm); color: var(--muted); margin-top: 6px; }
.section--navy .stat .lbl { color: #9FAFCC; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); gap: 28px 16px; } }

/* ------------------- Cards / Grids ------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 26px; }
.card-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.card h3 { font-size: 22px; }
.card-body p { color: var(--muted); margin-top: 10px; font-size: var(--text-sm); }
.card-rate { font-size: 20px; font-weight: 800; color: var(--ink); margin-top: 16px; }

.feature-list { display: grid; gap: 8px; margin-top: 16px; }
.feature-list li { position: relative; padding-left: 26px; font-size: var(--text-sm); color: var(--slate); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D4ED8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ------------------- Steps ------------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.step .step-n { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .1em; }
.step h3 { font-size: 20px; margin-top: 12px; }
.step p { color: var(--muted); margin-top: 8px; font-size: var(--text-sm); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ------------------- Client cards ------------------- */
.client { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.client .ci { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-soft); display: grid; place-items: center; color: var(--blue); margin-bottom: 14px; }
.client .ci svg { width: 20px; height: 20px; }
.client h3 { font-size: 18px; }
.client p { color: var(--muted); font-size: var(--text-sm); margin-top: 8px; }
.client .stay { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--blue); background: var(--blue-soft); padding: 5px 12px; border-radius: 999px; }

/* ------------------- FAQ ------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0; font-size: var(--text-md); font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; color: var(--blue); transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); padding-bottom: 22px; font-size: var(--text-sm); }

/* ------------------- CTA / Lead form ------------------- */
.cta {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden;
}
.cta h2 { font-size: var(--text-xl); color: #fff; }
.cta p { color: #B9C6DC; margin-top: 12px; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-points { display: grid; gap: 14px; margin-top: 26px; }
.cta-points li { display: flex; gap: 12px; align-items: flex-start; color: #D6DEEC; font-size: var(--text-sm); }
.cta-points svg { width: 20px; height: 20px; color: #93B4FF; flex-shrink: 0; margin-top: 1px; }

.form { background: #fff; border-radius: var(--radius); padding: 28px; color: var(--ink); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: block; width: 100%; margin-bottom: 12px; padding: 13px 15px; font: inherit; font-size: var(--text-sm);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
.field:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.14); }
select.field { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B6675' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
textarea.field { resize: vertical; min-height: 84px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success, .form-error-msg { padding: 14px; border-radius: var(--radius-sm); font-size: var(--text-sm); }
.form-success { background: #ECFDF5; color: var(--green); text-align: center; }
.form-success h3 { font-size: 18px; }
.form-error-msg { background: #FEF2F2; color: #B91C1C; margin-top: 10px; }

/* ------------------- Trust strip ------------------- */
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.trust-item { text-align: center; padding: 24px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.trust-item svg { width: 26px; height: 26px; color: var(--blue); margin: 0 auto 12px; }
.trust-item h4 { font-size: 15px; }
.trust-item p { font-size: 13px; color: var(--muted); margin-top: 6px; }
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2,1fr); } }

/* ------------------- Listing / vehicle cards ------------------- */
.spec-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.spec-chip { font-size: 11px; font-weight: 600; letter-spacing: .06em; color: var(--slate); background: var(--cloud); border: 1px solid var(--line); padding: 4px 9px; border-radius: 999px; }
.fine { font-size: 12px; color: var(--subtle); margin-top: 18px; }

/* ------------------- Sub page hero ------------------- */
.subhero { padding: clamp(56px, 7vw, 96px) 0 clamp(40px,5vw,64px); background: var(--cloud); border-bottom: 1px solid var(--line); }
.subhero h1 { font-size: var(--text-2xl); letter-spacing: -0.03em; max-width: 16ch; }
.subhero .lead { margin-top: 18px; }
.subhero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { font-size: 13px; font-weight: 600; color: var(--slate); background: var(--paper); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; display: inline-flex; gap: 7px; align-items: center; }
.pill svg { width: 14px; height: 14px; color: var(--blue); }

/* ------------------- Gallery ------------------- */
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery figcaption { padding: 14px 16px; background: var(--paper); }
.gallery .gn { font-weight: 700; font-size: 15px; }
.gallery .gc { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ------------------- Amenities ------------------- */
.amenity { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.amenity svg { width: 22px; height: 22px; color: var(--blue); }
.amenity h4 { font-size: 15px; margin-top: 12px; }
.amenity p { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ------------------- Requirements ------------------- */
.req { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); }
.req h3 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }
.req.req--req h3 { color: var(--blue); }
.req.req--help h3 { color: var(--muted); }

/* ------------------- Footer ------------------- */
.site-footer { background: var(--ink); color: #C4CDDD; padding: clamp(56px,6vw,80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand .brand-mark { color: #fff; }
.footer-brand .brand .brand-sub { color: #6E7E97; }
.footer-tag { margin-top: 14px; font-size: var(--text-sm); color: #9AA8BE; max-width: 34ch; }
.footer-contact { margin-top: 18px; display: grid; gap: 8px; font-size: var(--text-sm); }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: #93B4FF; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #9AA8BE; font-size: var(--text-sm); padding: 6px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 13px; color: #6E7E97; }
.footer-bottom a { color: #9AA8BE; }
.footer-bottom a:hover { color: #fff; }

/* ------------------- Reveal animation (subtle) ------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .card:hover { transform: none; }
}

/* ------------------- Utility ------------------- */
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.text-muted { color: var(--muted); }
.arrow-link { color: var(--blue); font-weight: 600; font-size: var(--text-sm); display: inline-flex; gap: 6px; align-items: center; }
.arrow-link:hover { color: var(--blue-deep); }
