/* ==========================================================================
   Booscar — Ümraniye Rent A Car
   Design system: "gece rotası" — ink navy + amber signal + cool fog neutrals
   Signature element: dashboard-style digital price readout on vehicle cards
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root{
  /* ---- color tokens ---- */
  --ink-900:#0d1b2a;
  --ink-800:#142b40;
  --ink-700:#1c3c58;
  --route-600:#1f4e73;
  --route-500:#2c688f;
  --signal-500:#e8a63b;
  --signal-600:#c8862a;
  --signal-100:#fbe8c7;
  --fog-50:#f5f7f9;
  --fog-100:#eaeef2;
  --fog-200:#dde3e9;
  --slate-600:#56677a;
  --slate-500:#71879b;
  --slate-900:#16232f;
  --white:#ffffff;
  --whatsapp:#25d366;
  --whatsapp-dark:#1da851;

  /* ---- type tokens ---- */
  --font-display:'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:'Manrope', 'Segoe UI', sans-serif;
  --font-mono:'JetBrains Mono', 'Courier New', monospace;

  /* ---- shape / motion tokens ---- */
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-pill:999px;
  --shadow-card:0 1px 2px rgba(13,27,42,.06), 0 12px 32px -16px rgba(13,27,42,.22);
  --shadow-card-hover:0 1px 2px rgba(13,27,42,.08), 0 24px 48px -20px rgba(13,27,42,.32);
  --ease:cubic-bezier(.22,.68,0,1);
  --container:1220px;
}

/* ---- reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}
body{
  font-family:var(--font-body);
  color:var(--slate-900);
  background:var(--fog-50);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
h1,h2,h3,h4{font-family:var(--font-display);line-height:1.15;font-weight:700;color:var(--ink-900)}
h1{font-size:clamp(2.1rem,4.4vw,3.6rem);letter-spacing:-.01em}
h2{font-size:clamp(1.6rem,3vw,2.4rem);letter-spacing:-.01em}
h3{font-size:clamp(1.15rem,1.6vw,1.4rem)}
p{color:var(--slate-600)}
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2.5rem)}
:focus-visible{outline:3px solid var(--signal-500);outline-offset:2px;border-radius:4px}

/* ---- eyebrow / kicker ---- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-mono);font-size:.72rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--signal-600);
  margin-bottom:.9rem;
}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--signal-500);display:inline-block;border-radius:2px}
.on-dark .eyebrow{color:var(--signal-500)}

/* ---- route-line divider motif ---- */
.route-divider{width:100%;height:20px;margin-block:0;position:relative;overflow:hidden}
.route-divider svg{width:100%;height:100%;display:block}
.route-line-path{stroke-dasharray:2 14;stroke-linecap:round}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.9rem 1.6rem;border-radius:var(--radius-pill);
  font-family:var(--font-body);font-weight:700;font-size:.95rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space:nowrap;
}
.btn svg{width:18px;height:18px;flex:none}
.btn-primary{background:var(--signal-500);color:var(--ink-900);box-shadow:0 10px 24px -10px rgba(232,166,59,.55)}
.btn-primary:hover{background:var(--signal-600);transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(232,166,59,.6)}
.btn-outline{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.4)}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,.08);transform:translateY(-2px)}
.btn-ghost{background:var(--fog-100);color:var(--ink-900)}
.btn-ghost:hover{background:var(--fog-200);transform:translateY(-2px)}
.btn-whatsapp{background:var(--whatsapp);color:var(--white);box-shadow:0 10px 24px -10px rgba(37,211,102,.5)}
.btn-whatsapp:hover{background:var(--whatsapp-dark);transform:translateY(-2px)}
.btn-block{width:100%}
.btn-sm{padding:.6rem 1.1rem;font-size:.85rem}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(13,27,42,.82);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding-block:.85rem}
.brand{display:flex;align-items:center;gap:.7rem;flex:none}
.brand img{height:42px;width:auto;border-radius:8px;background:var(--white);padding:3px}
.brand-name{font-family:var(--font-display);color:var(--white);font-weight:700;font-size:1.05rem;line-height:1.15}
.brand-name span{display:block;font-family:var(--font-mono);font-size:.62rem;letter-spacing:.13em;color:var(--signal-500);font-weight:600;margin-top:.15rem}
.main-nav{display:flex;align-items:center;flex:1;gap:2rem}
.main-nav ul{display:flex;gap:1.7rem;flex:1;justify-content:center}
.main-nav a{color:rgba(255,255,255,.78);font-weight:600;font-size:.9rem;transition:color .2s;position:relative;padding-block:.3rem}
.main-nav a:hover,.main-nav a.active{color:var(--white)}
.main-nav a.active::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--signal-500);border-radius:2px}
.header-cta{display:flex;align-items:center;gap:.7rem}
.menu-toggle{display:none;flex:none;width:42px;height:42px;border-radius:var(--radius-sm);background:rgba(255,255,255,.08);align-items:center;justify-content:center}
.menu-toggle svg{width:20px;height:20px;color:var(--white)}

@media (max-width: 960px){
  .main-nav{
    position:fixed;inset:0;background:var(--ink-900);
    flex-direction:column;align-items:stretch;
    padding:6.5rem 1.25rem 2rem;
    transform:translateX(100%);transition:transform .35s var(--ease);
    overflow-y:auto;z-index:300;
  }
  .main-nav.open{transform:translateX(0)}
  .main-nav ul{flex-direction:column;gap:0;flex:none;justify-content:flex-start}
  .main-nav ul li a{display:block;padding:1rem .25rem;font-size:1.02rem}
  .main-nav .header-cta{flex-direction:column;margin-top:1.25rem}
  .main-nav .header-cta .btn{width:100%}
  .menu-toggle{display:flex;position:relative;z-index:310}
  body.nav-open .fab-stack,body.nav-open .mobile-bar{display:none !important}
  body.nav-open{overflow:hidden}
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;color:var(--white);overflow:hidden;
  background:
    radial-gradient(ellipse 90% 70% at 85% -10%, rgba(232,166,59,.16), transparent 60%),
    linear-gradient(180deg, rgba(13,27,42,.94), rgba(13,27,42,.97)),
    var(--ink-900);
}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.22;mix-blend-mode:luminosity}
.hero-inner{position:relative;padding-block:clamp(3.5rem,8vw,6.5rem);display:grid;gap:2.5rem;grid-template-columns:1.15fr .85fr;align-items:center}
.hero h1{color:var(--white);margin-bottom:1.1rem}
.hero h1 em{font-style:normal;color:var(--signal-500)}
.hero p.lead{font-size:1.08rem;color:rgba(255,255,255,.76);max-width:46ch;margin-bottom:1.9rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-bottom:2.2rem}
.hero-meta{display:flex;flex-wrap:wrap;gap:1.6rem}
.hero-meta-item{display:flex;align-items:center;gap:.6rem;color:rgba(255,255,255,.7);font-size:.85rem}
.hero-meta-item svg{width:18px;height:18px;color:var(--signal-500);flex:none}
.hero-meta-item strong{color:var(--white);font-weight:700}

.hero-panel{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);padding:1.6rem;backdrop-filter:blur(6px);
}
.hero-panel-title{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:var(--signal-500);margin-bottom:1rem;display:flex;justify-content:space-between;gap:.6rem;flex-wrap:wrap}
.hero-fleet-row{display:flex;justify-content:space-between;align-items:center;padding-block:.75rem;border-bottom:1px dashed rgba(255,255,255,.14)}
.hero-fleet-row:last-child{border-bottom:none}
.hero-fleet-row .name{font-weight:700;color:var(--white);font-size:.92rem}
.hero-fleet-row .spec{font-size:.75rem;color:rgba(255,255,255,.55)}
.hero-fleet-row .price{font-family:var(--font-mono);color:var(--signal-500);font-weight:700;font-size:.98rem}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-hero{
  position:relative;color:var(--white);padding-block:clamp(2.6rem,6vw,4rem);overflow:hidden;
  background:linear-gradient(180deg, rgba(13,27,42,.92), rgba(13,27,42,.97)), var(--ink-900);
}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.22;mix-blend-mode:luminosity}
.page-hero-inner{position:relative}
.breadcrumb{display:flex;gap:.5rem;align-items:center;font-size:.82rem;color:rgba(255,255,255,.6);margin-bottom:1rem;font-weight:600}
.breadcrumb a:hover{color:var(--white)}
.breadcrumb span{color:var(--signal-500)}
.page-hero h1{color:var(--white);margin-bottom:.6rem}
.page-hero p{color:rgba(255,255,255,.72);max-width:60ch;font-size:1.02rem}

/* ==========================================================================
   Sections / cards
   ========================================================================== */
section{padding-block:clamp(3rem,6vw,5rem)}
.section-head{max-width:640px;margin-bottom:2.6rem}
.section-head.center{margin-inline:auto;text-align:center}
.alt{background:var(--white)}

.grid{display:grid;gap:1.5rem}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
@media (max-width:960px){.grid-4{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid-4,.grid-3,.grid-2{grid-template-columns:1fr}}

.feature-card{
  background:var(--white);border:1px solid var(--fog-200);border-radius:var(--radius-md);
  padding:1.7rem 1.5rem;transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover);border-color:transparent}
.feature-icon{
  width:46px;height:46px;border-radius:var(--radius-sm);background:var(--ink-900);
  display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;
}
.feature-icon svg{width:22px;height:22px;color:var(--signal-500)}
.feature-card h3{margin-bottom:.5rem;font-size:1.05rem}
.feature-card p{font-size:.92rem}

/* ---- fade-in-on-scroll ---- */
.fade-in{opacity:0;transform:translateY(18px);transition:opacity .7s var(--ease), transform .7s var(--ease)}
.fade-in.is-visible{opacity:1;transform:translateY(0)}

/* ==========================================================================
   Vehicle cards + digital price readout (signature element)
   ========================================================================== */
.vehicle-card{
  background:var(--white);border:1px solid var(--fog-200);border-radius:var(--radius-lg);
  overflow:hidden;display:grid;grid-template-columns:280px 1fr;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vehicle-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-card-hover)}
.vehicle-media{position:relative;background:var(--fog-100);min-height:200px}
.vehicle-media img{width:100%;height:100%;object-fit:cover;min-height:200px}
.vehicle-badge{
  position:absolute;top:.9rem;left:.9rem;background:var(--ink-900);color:var(--signal-500);
  font-family:var(--font-mono);font-size:.68rem;font-weight:700;letter-spacing:.05em;
  padding:.35rem .7rem;border-radius:var(--radius-pill);
}
.vehicle-body{padding:1.5rem 1.7rem;display:flex;flex-direction:column;gap:1rem}
.vehicle-top{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap}
.vehicle-name{font-family:var(--font-display);font-size:1.25rem;font-weight:700;color:var(--ink-900)}
.vehicle-specs{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.4rem}
.spec-chip{
  font-size:.74rem;font-weight:700;color:var(--route-600);background:var(--fog-100);
  padding:.3rem .65rem;border-radius:var(--radius-pill);display:inline-flex;align-items:center;gap:.35rem;
}
.spec-chip svg{width:13px;height:13px}

.meter{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:var(--fog-200);border-radius:var(--radius-md);overflow:hidden;
  border:1px solid var(--ink-900);
}
.meter-cell{background:var(--ink-900);padding:.75rem .5rem;text-align:center}
.meter-label{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:.3rem}
.meter-value{font-family:var(--font-mono);font-size:1.05rem;font-weight:700;color:var(--signal-500);letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.meter-value small{font-size:.62rem;color:rgba(255,255,255,.55);font-weight:600;margin-left:.1rem}

.vehicle-actions{display:flex;gap:.7rem;margin-top:.2rem}

@media (max-width:760px){
  .vehicle-card{grid-template-columns:1fr}
  .vehicle-media{min-height:180px}
}

.vehicle-list{display:flex;flex-direction:column;gap:1.5rem}

/* fleet page toolbar note */
.price-note{
  display:flex;gap:.7rem;align-items:flex-start;background:var(--signal-100);
  border:1px solid var(--signal-500);border-radius:var(--radius-md);padding:1rem 1.2rem;margin-bottom:2.2rem;
}
.price-note svg{width:20px;height:20px;color:var(--signal-600);flex:none;margin-top:.1rem}
.price-note p{color:var(--ink-900);font-size:.88rem;font-weight:600}

/* image placeholder note ribbon (dev aid, styled to still look intentional) */
.media-note{
  position:absolute;inset:auto 0 0 0;background:rgba(13,27,42,.78);color:rgba(255,255,255,.85);
  font-family:var(--font-mono);font-size:.63rem;text-align:center;padding:.3rem .4rem;letter-spacing:.03em;
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip{
  background:var(--ink-900);color:var(--white);border-radius:var(--radius-lg);
  padding:2.2rem clamp(1.2rem,4vw,2.5rem);display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
  position:relative;overflow:hidden;
}
.stat{text-align:left}
.stat-value{font-family:var(--font-mono);font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;color:var(--signal-500);font-variant-numeric:tabular-nums}
.stat-label{font-size:.82rem;color:rgba(255,255,255,.65);margin-top:.25rem;font-weight:600}
@media (max-width:760px){.stats-strip{grid-template-columns:repeat(2,1fr)}}

/* ==========================================================================
   Blog cards
   ========================================================================== */
.blog-card{
  background:var(--white);border:1px solid var(--fog-200);border-radius:var(--radius-md);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-card-hover)}
.blog-thumb{aspect-ratio:16/10;overflow:hidden;background:var(--fog-100)}
.blog-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.blog-card:hover .blog-thumb img{transform:scale(1.06)}
.blog-body{padding:1.4rem 1.5rem 1.6rem;display:flex;flex-direction:column;gap:.7rem;flex:1}
.blog-date{font-family:var(--font-mono);font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--route-600);font-weight:700}
.blog-body h3{font-size:1.08rem;line-height:1.35}
.blog-body h3 a:hover{color:var(--route-600)}
.blog-excerpt{font-size:.88rem;flex:1}
.blog-readmore{font-size:.84rem;font-weight:700;color:var(--ink-900);display:inline-flex;align-items:center;gap:.4rem;margin-top:.3rem}
.blog-readmore svg{width:15px;height:15px;transition:transform .2s}
.blog-card:hover .blog-readmore svg{transform:translateX(3px)}

/* ---- article (single post) ---- */
.article-shell{max-width:760px;margin-inline:auto;padding-block:clamp(2.5rem,5vw,4rem)}
.article-cover{border-radius:var(--radius-lg);overflow:hidden;margin-bottom:2rem;aspect-ratio:16/8}
.article-cover img{width:100%;height:100%;object-fit:cover}
.article-body h2{margin-top:2.2rem;margin-bottom:.9rem;font-size:1.45rem}
.article-body h3{margin-top:1.6rem;margin-bottom:.6rem}
.article-body p{margin-bottom:1.1rem;font-size:1.02rem;color:var(--slate-900)}
.article-body ul,.article-body ol{margin:0 0 1.2rem 1.3rem;color:var(--slate-900)}
.article-body li{margin-bottom:.5rem;font-size:1.02rem}
.article-body ul li{list-style:disc}
.article-body ol li{list-style:decimal}
.article-body a{color:var(--route-600);font-weight:700;text-decoration:underline;text-underline-offset:3px}
.article-cta{
  margin-top:2.4rem;background:var(--ink-900);border-radius:var(--radius-lg);padding:1.8rem 1.9rem;
  color:var(--white);display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap;
}
.article-cta h3{color:var(--white);margin-bottom:.3rem}
.article-cta p{color:rgba(255,255,255,.68);font-size:.9rem}
.article-tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:1.6rem}
.tag{font-size:.76rem;font-weight:700;color:var(--route-600);background:var(--fog-100);padding:.3rem .75rem;border-radius:var(--radius-pill)}
.related-posts{margin-top:3rem;padding-top:2.4rem;border-top:1px solid var(--fog-200)}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{display:flex;flex-direction:column;gap:.8rem}
.faq-item{background:var(--white);border:1px solid var(--fog-200);border-radius:var(--radius-md);overflow:hidden}
.faq-q{
  width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:1.1rem 1.4rem;font-family:var(--font-body);font-weight:700;font-size:.98rem;color:var(--ink-900);text-align:left;
}
.faq-q svg{width:20px;height:20px;flex:none;color:var(--signal-600);transition:transform .3s var(--ease)}
.faq-item[open] .faq-q svg{transform:rotate(180deg)}
.faq-a{padding:0 1.4rem 1.3rem;font-size:.92rem;color:var(--slate-600)}
.faq-item summary{cursor:pointer;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background:linear-gradient(120deg, var(--ink-900), var(--route-600));
  border-radius:var(--radius-lg);padding:clamp(2rem,5vw,3.2rem);color:var(--white);
  display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap;position:relative;overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;right:-60px;top:-60px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle, rgba(232,166,59,.35), transparent 70%);
}
.cta-band h2{color:var(--white);margin-bottom:.5rem;max-width:26ch}
.cta-band p{color:rgba(255,255,255,.72);max-width:42ch}
.cta-actions{display:flex;gap:.8rem;flex-wrap:wrap;position:relative}

/* ==========================================================================
   Service-area chips + map
   ========================================================================== */
.area-chips{display:flex;flex-wrap:wrap;gap:.7rem}
.area-chip{
  display:inline-flex;align-items:center;gap:.5rem;background:var(--white);border:1px solid var(--fog-200);
  padding:.6rem 1.1rem;border-radius:var(--radius-pill);font-weight:700;font-size:.85rem;color:var(--ink-900);
}
.area-chip svg{width:15px;height:15px;color:var(--signal-600)}

.map-frame{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--fog-200);line-height:0}
.map-frame iframe{width:100%;height:360px;border:0;display:block}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:2.5rem;align-items:start}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr}}
.contact-info-card{background:var(--ink-900);color:var(--white);border-radius:var(--radius-lg);padding:2rem}
.contact-row{display:flex;gap:1rem;align-items:flex-start;padding-block:1rem;border-bottom:1px dashed rgba(255,255,255,.14)}
.contact-row:last-child{border-bottom:none}
.contact-row .ic{width:38px;height:38px;border-radius:var(--radius-sm);background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;flex:none}
.contact-row .ic svg{width:18px;height:18px;color:var(--signal-500)}
.contact-row .lbl{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.5);margin-bottom:.25rem}
.contact-row .val{font-weight:700}
.contact-row a:hover{color:var(--signal-500)}
.social-row{display:flex;gap:.7rem;margin-top:1.6rem}
.social-btn{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:background .2s,transform .2s}
.social-btn:hover{background:var(--signal-500);color:var(--ink-900);transform:translateY(-2px)}
.social-btn svg{width:18px;height:18px}

.form-card{background:var(--white);border:1px solid var(--fog-200);border-radius:var(--radius-lg);padding:2rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
@media (max-width:560px){.form-row{grid-template-columns:1fr}}
.field label{display:block;font-size:.82rem;font-weight:700;color:var(--ink-900);margin-bottom:.4rem}
.field input,.field textarea,.field select{
  width:100%;border:1.5px solid var(--fog-200);border-radius:var(--radius-sm);padding:.8rem .95rem;
  font-family:var(--font-body);font-size:.94rem;color:var(--slate-900);background:var(--fog-50);transition:border-color .2s,background .2s;
}
.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--route-600);background:var(--white);outline:none}
.field{margin-bottom:1rem}
.field textarea{resize:vertical;min-height:110px}
.form-note{font-size:.78rem;color:var(--slate-500);margin-top:.8rem}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{background:var(--ink-900);color:rgba(255,255,255,.72);padding-block:3.5rem 1.6rem;margin-top:2rem}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.1fr;gap:2.5rem;padding-bottom:2.6rem;border-bottom:1px solid rgba(255,255,255,.1)}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem}
.footer-brand img{height:38px;background:var(--white);border-radius:8px;padding:3px}
.footer-brand span{font-family:var(--font-display);color:var(--white);font-weight:700}
.footer-col h4{color:var(--white);font-size:.82rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.1rem;font-family:var(--font-mono);font-weight:600}
.footer-col ul{display:flex;flex-direction:column;gap:.7rem}
.footer-col a{font-size:.9rem;transition:color .2s}
.footer-col a:hover{color:var(--signal-500)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;padding-top:1.6rem;font-size:.8rem}
.footer-bottom a:hover{color:var(--signal-500)}

/* ==========================================================================
   Floating action buttons
   ========================================================================== */
.fab-stack{position:fixed;right:1.1rem;bottom:1.1rem;z-index:200;display:flex;flex-direction:column;gap:.7rem;align-items:flex-end}
.fab{
  width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 26px -8px rgba(13,27,42,.45);transition:transform .25s var(--ease);
}
.fab:hover{transform:scale(1.08)}
.fab svg{width:26px;height:26px}
.fab-whatsapp{background:var(--whatsapp);color:var(--white)}
.fab-call{background:var(--ink-900);color:var(--signal-500)}

/* ---- mobile sticky action bar ---- */
.mobile-bar{display:none}
@media (max-width:720px){
  .mobile-bar{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:190;
    background:var(--white);border-top:1px solid var(--fog-200);box-shadow:0 -8px 24px -12px rgba(13,27,42,.2);
  }
  .mobile-bar a{flex:1;display:flex;align-items:center;justify-content:center;gap:.5rem;padding:.95rem 0;font-weight:700;font-size:.9rem}
  .mobile-bar a svg{width:18px;height:18px}
  .mobile-bar .m-call{color:var(--ink-900)}
  .mobile-bar .m-wa{background:var(--whatsapp);color:var(--white)}
  .fab-stack{bottom:5.2rem}
  body{padding-bottom:58px}
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.badge-2026{
  display:inline-flex;align-items:center;gap:.5rem;background:rgba(232,166,59,.14);
  border:1px solid rgba(232,166,59,.4);color:var(--signal-500);font-family:var(--font-mono);
  font-size:.72rem;font-weight:700;letter-spacing:.06em;padding:.4rem .85rem;border-radius:var(--radius-pill);
}
.on-dark .badge-2026{color:var(--signal-500)}
