/* =============================================
   VAMA APPALTI SRL — Stylesheet Principale
   ============================================= */

/* ---- Font locali (nessun Google Fonts) ---- */
@font-face {
  font-family: 'VamaDisplay';
  src: local('Georgia'), local('Times New Roman');
  font-weight: 600;
}

:root {
  --blu:        #1B3A6B;
  --blu-mid:    #2a5298;
  --blu-light:  #EEF3FA;
  --blu-accent: #d0dff5;
  --blu-border: #cdd8e8;
  --grey:       #F2F6FC;
  --text:       #111111;
  --text-sec:   #374151;
  --text-muted: #5a6f8a;
  --white:      #ffffff;
  --green:      #25D366;
  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(27,58,107,0.10);
  --tr:         0.22s ease;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color:var(--text); background:var(--white); line-height:1.6;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* ---- NAVBAR ---- */
.navbar {
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--blu-border);
  padding:0 40px; height:68px;
  display:flex; align-items:center; justify-content:space-between;
  transition:box-shadow var(--tr);
}
.navbar.scrolled { box-shadow:0 2px 20px rgba(27,58,107,0.10); }
.nav-brand { display:flex; align-items:center; gap:12px; }
.nav-logo { width:72px; height:48px; border-radius:8px; overflow:hidden; }
.nav-logo img { width:100%; height:100%; object-fit:contain; }
.nav-logo-text {
  width:48px; height:48px; border-radius:8px;
  background:var(--blu); display:flex; align-items:center; justify-content:center;
  font-size:16px; font-weight:700; color:#fff; letter-spacing:1px;
}
.nav-brand-name { font-size:14px; font-weight:600; color:var(--text); line-height:1.2; }
.nav-brand-sub  { font-size:11px; color:var(--text-muted); }
.nav-links { display:flex; align-items:center; gap:24px; }
.nav-links a { font-size:13px; color:var(--text-sec); transition:color var(--tr); }
.nav-links a:hover, .nav-links a.active { color:var(--blu); }
.nav-dropdown { position:relative; }
.nav-dropdown::after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:14px;
}
.nav-dropdown > a::after { content:' ▾'; font-size:10px; }
.nav-drop-menu {
  position:absolute; top:calc(100% + 14px); left:-16px;
  background:var(--white); border:1px solid var(--blu-border);
  border-radius:var(--radius); padding:8px 0; min-width:230px;
  box-shadow:var(--shadow); opacity:0; pointer-events:none;
  transform:translateY(-8px); transition:all var(--tr);
  z-index:200;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu { opacity:1; pointer-events:all; transform:translateY(0); }
.nav-drop-menu a { display:block; padding:9px 18px; font-size:13px; color:var(--text-sec); }
.nav-drop-menu a:hover { background:var(--blu-light); color:var(--blu); }
.nav-cta {
  background:var(--blu) !important; color:#fff !important;
  padding:9px 20px; border-radius:var(--radius-sm);
  font-size:13px; font-weight:500;
}
.nav-cta:hover { background:var(--blu-mid) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
.hamburger span { width:22px; height:2px; background:var(--text); border-radius:2px; display:block; transition:all var(--tr); }

/* ---- HERO ---- */
.hero {
  background:var(--blu-light);
  border-bottom:1px solid var(--blu-border);
}
.hero-inner {
  max-width:1240px; margin:0 auto; padding:80px 40px 72px;
  display:flex; gap:56px; align-items:center; position:relative; overflow:hidden;
}
.hero-content { flex:1; max-width:560px; position:relative; z-index:2; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blu-accent); color:var(--blu);
  font-size:12px; font-weight:600; padding:5px 14px;
  border-radius:20px; margin-bottom:22px;
}
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--blu); flex-shrink:0; }
.hero h1 {
  font-family:Georgia,'Times New Roman',serif;
  font-size:clamp(28px,3.2vw,42px);
  font-weight:600; line-height:1.25; color:var(--text); margin-bottom:18px;
}
.hero h1 em { color:var(--blu); font-style:normal; }
.hero-sub { font-size:15px; color:var(--text-sec); line-height:1.75; margin-bottom:32px; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:36px; }
.hero-stats { display:flex; gap:32px; padding-top:28px; border-top:1px solid var(--blu-border); }
.stat-num { font-family:Georgia,serif; font-size:26px; font-weight:700; color:var(--blu); }
.stat-lbl { font-size:12px; color:var(--text-muted); margin-top:2px; }
.hero-visual { width:340px; flex-shrink:0; border-radius:var(--radius); overflow:hidden; border:1px solid var(--blu-border); box-shadow:var(--shadow); }
.hero-photo {
  position:absolute;
  top:0;
  right:40px;
  bottom:0;
  width:56%;
  border-radius:0 0 0 36px;
  z-index:1;
  overflow:hidden;
}
.hero-photo img { width:100%; height:100%; object-fit:cover; object-position:center right; display:block; }
.hero-photo::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, var(--blu-light) 0%, rgba(238,243,250,.94) 20%, rgba(238,243,250,.45) 43%, rgba(238,243,250,0) 68%);
}
.hero-photo::after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(238,243,250,.08), rgba(238,243,250,.16));
}

/* ---- BUTTONS ---- */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blu); color:#fff;
  padding:12px 26px; border-radius:var(--radius-sm);
  font-size:14px; font-weight:500; border:none; cursor:pointer;
  transition:all var(--tr); font-family:inherit;
}
.btn-primary:hover { background:var(--blu-mid); transform:translateY(-1px); box-shadow:0 6px 20px rgba(27,58,107,0.25); }
.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); color:var(--blu);
  padding:12px 26px; border-radius:var(--radius-sm);
  font-size:14px; font-weight:500; border:1.5px solid var(--blu);
  cursor:pointer; transition:all var(--tr); font-family:inherit;
}
.btn-outline:hover { background:var(--blu-light); transform:translateY(-1px); }
.btn-white {
  background:#fff; color:var(--blu);
  padding:10px 22px; border-radius:var(--radius-sm);
  font-size:13px; font-weight:600; transition:all var(--tr);
  display:inline-block; border:none; cursor:pointer;
}
.btn-white:hover { opacity:0.92; transform:translateY(-1px); }
.btn-ghost {
  background:transparent; color:#fff;
  padding:10px 22px; border-radius:var(--radius-sm);
  font-size:13px; font-weight:500; border:1px solid rgba(255,255,255,0.45);
  transition:all var(--tr); display:inline-block;
}
.btn-ghost:hover { border-color:#fff; transform:translateY(-1px); }

/* ---- IDEALISTA BANNER ---- */
.idealista-banner { background:var(--blu); padding:28px 40px; }
.idealista-inner {
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.idealista-text h2 { font-size:18px; font-weight:600; color:#fff; margin-bottom:4px; }
.idealista-text p  { font-size:13px; color:#a8c0e0; }
.idealista-btns { display:flex; gap:12px; }

/* ---- SECTION BASE ---- */
.section { padding:80px 0; }
.section-inner { max-width:1240px; margin:0 auto; padding:0 40px; }
.section-bg { background:var(--grey); }
.section-label { font-size:11px; font-weight:700; color:var(--blu); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.section-title { font-family:Georgia,serif; font-size:clamp(22px,2.4vw,30px); font-weight:600; color:var(--text); margin-bottom:8px; }
.section-sub { font-size:15px; color:var(--text-sec); margin-bottom:40px; max-width:560px; }

/* ---- CHI SIAMO ---- */
.chisiamo-grid { display:flex; gap:48px; align-items:flex-start; }
.chisiamo-visual { width:300px; flex-shrink:0; border-radius:var(--radius); overflow:hidden; border:1px solid var(--blu-border); box-shadow:var(--shadow); }
.chisiamo-visual svg { display:block; width:100%; }
.chisiamo-text p { font-size:14px; color:var(--text-sec); line-height:1.8; margin-bottom:14px; }
.features { display:flex; flex-direction:column; gap:10px; margin-top:8px; }
.feature { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text); line-height:1.5; }
.check-icon { width:20px; height:20px; min-width:20px; border-radius:50%; background:var(--blu-accent); display:flex; align-items:center; justify-content:center; margin-top:1px; }
.check-icon svg { width:10px; height:10px; }

/* ---- CARDS GRIDS ---- */
.grid-5 { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }

.card {
  background:var(--white); border:1px solid var(--blu-border);
  border-radius:var(--radius); overflow:hidden;
  transition:all var(--tr);
}
.card:hover { box-shadow:var(--shadow); transform:translateY(-3px); border-color:var(--blu-accent); }
.card svg, .card img { display:block; width:100%; }
.card-body { padding:14px; }
.card-body h3 { font-size:13px; font-weight:600; color:var(--text); margin-bottom:5px; line-height:1.35; }
.card-body p { font-size:12px; color:var(--text-sec); line-height:1.55; }
.card-pill { display:inline-block; background:var(--blu-accent); color:var(--blu); font-size:10px; font-weight:700; padding:3px 9px; border-radius:20px; margin-top:8px; }
.card-icon { width:38px; height:38px; border-radius:8px; background:var(--blu-accent); display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.card-icon svg { width:18px; height:18px; }

/* ---- PAGE HEADER ---- */
.page-header { background:var(--blu-light); border-bottom:1px solid var(--blu-border); padding:56px 40px 48px; }
.page-header-inner { max-width:1240px; margin:0 auto; }
.breadcrumb { font-size:12px; color:var(--text-muted); margin-bottom:12px; }
.breadcrumb a { color:var(--blu); }
.breadcrumb a:hover { text-decoration:underline; }
.page-header h1 { font-family:Georgia,serif; font-size:clamp(24px,3vw,36px); font-weight:600; color:var(--text); margin-bottom:10px; }
.page-header .lead { font-size:15px; color:var(--text-sec); line-height:1.7; max-width:600px; }

/* ---- CONTENT PROSE ---- */
.prose { max-width:760px; }
.prose h2 { font-family:Georgia,serif; font-size:20px; font-weight:600; color:var(--text); margin:32px 0 12px; }
.prose h3 { font-size:16px; font-weight:600; color:var(--blu); margin:24px 0 10px; }
.prose p { font-size:14px; color:var(--text-sec); line-height:1.8; margin-bottom:14px; }
.prose ul { list-style:none; margin:12px 0 20px; }
.prose ul li { font-size:14px; color:var(--text-sec); line-height:1.7; padding-left:22px; position:relative; margin-bottom:6px; }
.prose ul li::before { content:''; position:absolute; left:0; top:9px; width:7px; height:7px; border-radius:50%; background:var(--blu-accent); border:2px solid var(--blu); }
.prose strong { color:var(--text); font-weight:600; }
.info-box { background:var(--blu-light); border:1px solid var(--blu-border); border-radius:var(--radius); padding:20px 24px; margin:24px 0; }
.info-box .label { font-size:11px; font-weight:700; color:var(--blu); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }

/* ---- MUTUI PAGE ---- */
.mutui-layout {
  display:grid;
  grid-template-columns:minmax(0, 1fr) 420px;
  gap:56px;
  align-items:flex-start;
}
.mutui-main { min-width:0; }
.mutui-fasi { min-width:0; }
.mutui-fase {
  display:grid;
  grid-template-columns:40px minmax(0, 1fr);
  gap:16px;
  margin-bottom:22px;
  align-items:flex-start;
}
.mutui-fase-num {
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--blu);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:13px;
}
.mutui-fase strong { font-size:14px; color:var(--text); }
.mutui-fase p { font-size:13px; color:var(--text-sec); margin-top:4px; line-height:1.6; }

/* ---- PARTNER BAR ---- */
.partner-bar { background:var(--blu-light); border-top:1px solid var(--blu-border); border-bottom:1px solid var(--blu-border); padding:20px 40px; }
.partner-inner { max-width:1240px; margin:0 auto; display:flex; align-items:center; gap:0; flex-wrap:wrap; }
.partner-label { font-size:10px; font-weight:700; color:var(--text-muted); text-transform:uppercase; letter-spacing:.1em; margin-right:28px; white-space:nowrap; }
.partner-item { padding:0 24px; border-left:1px solid var(--blu-border); }
.partner-name { font-size:13px; font-weight:600; color:var(--blu); }
.partner-sub  { font-size:10px; color:var(--text-muted); }

/* ---- CONTATTI ---- */
.contatti-grid { display:flex; gap:48px; align-items:flex-start; }
.contatti-info { flex:1; }
.contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:18px; }
.contact-ico { width:36px; height:36px; border-radius:8px; background:var(--blu-light); border:1px solid var(--blu-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-ico svg { width:15px; height:15px; }
.contact-lbl { font-size:10px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }
.contact-val { font-size:14px; font-weight:500; color:var(--text); }
.contact-val a { color:var(--blu); }
.contact-val a:hover { text-decoration:underline; }
.orari-box { background:var(--blu-light); border:1px solid var(--blu-border); border-radius:var(--radius-sm); padding:14px 18px; margin-top:20px; }
.orari-box .lbl { font-size:10px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; }
.orari-box .val { font-size:14px; font-weight:600; color:var(--text); }
.map-wrap { margin-top:20px; border-radius:var(--radius); overflow:hidden; border:1px solid var(--blu-border); }
.map-wrap svg { display:block; width:100%; }
.map-wrap iframe { display:block; width:100%; height:260px; border:0; }

/* ---- FORM ---- */
.form-box { flex:1; background:var(--grey); border:1px solid var(--blu-border); border-radius:var(--radius); padding:30px; }
.form-box h3 { font-size:17px; font-weight:600; margin-bottom:22px; }
.form-row { margin-bottom:14px; }
.form-row label { font-size:11px; color:var(--text-muted); display:block; margin-bottom:5px; text-transform:uppercase; letter-spacing:.05em; }
.form-row input,
.form-row textarea,
.form-row select {
  width:100%; background:var(--white);
  border:1px solid var(--blu-border); border-radius:var(--radius-sm);
  padding:11px 14px; font-size:14px; color:var(--text);
  font-family:inherit; transition:border-color var(--tr); appearance:none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline:none; border-color:var(--blu); box-shadow:0 0 0 3px rgba(27,58,107,0.08);
}
.form-row textarea { height:110px; resize:vertical; }
.form-gdpr { display:flex; align-items:flex-start; gap:10px; font-size:12px; color:var(--text-sec); margin-bottom:16px; line-height:1.5; }
.form-gdpr input[type=checkbox] { width:16px; height:16px; flex-shrink:0; margin-top:2px; accent-color:var(--blu); cursor:pointer; }
.form-gdpr a { color:var(--blu); text-decoration:underline; }
.form-honey { display:none !important; visibility:hidden !important; position:absolute; left:-9999px; }
.captcha-box { background:var(--white); border:1px solid var(--blu-border); border-radius:var(--radius-sm); padding:14px 16px; margin-bottom:14px; display:flex; align-items:center; gap:16px; }
.captcha-question { font-size:15px; font-weight:600; color:var(--text); }
.captcha-input { width:80px !important; text-align:center; font-size:16px; font-weight:600; }
.captcha-hint { font-size:12px; color:var(--text-muted); }
.btn-submit { width:100%; background:var(--blu); color:#fff; border:none; border-radius:var(--radius-sm); padding:13px; font-size:14px; font-weight:600; font-family:inherit; cursor:pointer; transition:all var(--tr); }
.btn-submit:hover { background:var(--blu-mid); transform:translateY(-1px); }
.btn-submit:disabled { opacity:.6; cursor:not-allowed; transform:none; }
.form-msg { margin-top:14px; padding:14px 16px; border-radius:var(--radius-sm); font-size:14px; display:none; }
.form-msg.success { background:#e8f5e9; border:1px solid #a5d6a7; color:#2e7d32; display:block; }
.form-msg.error   { background:#fdecea; border:1px solid #f5c6cb; color:#c62828; display:block; }
.form-msg.loading { background:var(--blu-light); border:1px solid var(--blu-border); color:var(--blu); display:block; }

/* ---- FOOTER ---- */
footer { background:var(--blu-light); border-top:1px solid var(--blu-border); padding:32px 40px 24px; }
.footer-inner { max-width:1240px; margin:0 auto; }
.footer-top { display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom:28px; }
.footer-col h4 { font-size:12px; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; }
.footer-col a { display:block; font-size:13px; color:var(--text-muted); margin-bottom:8px; transition:color var(--tr); }
.footer-col a:hover { color:var(--blu); }
.footer-col .info { font-size:13px; color:var(--text-muted); margin-bottom:6px; }
.footer-bottom { border-top:1px solid var(--blu-border); padding-top:20px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:12px; color:var(--text-muted); }
.footer-legal { display:flex; gap:16px; }
.footer-legal a { font-size:12px; color:var(--text-muted); transition:color var(--tr); }
.footer-legal a:hover { color:var(--blu); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:var(--green); color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 24px rgba(37,211,102,0.45);
  transition:all var(--tr);
  animation:waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform:scale(1.1) !important; }
.wa-float svg { width:28px; height:28px; }
.wa-tooltip {
  position:absolute; right:68px; top:50%; transform:translateY(-50%);
  background:var(--text); color:#fff; font-size:12px; font-weight:500;
  padding:6px 12px; border-radius:var(--radius-sm); white-space:nowrap;
  opacity:0; pointer-events:none; transition:opacity var(--tr);
}
.wa-float:hover .wa-tooltip { opacity:1; }

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position:fixed; bottom:0; left:0; right:0; z-index:1000;
  background:#fff; border-top:1px solid var(--blu-border);
  padding:18px 40px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  box-shadow:0 -4px 24px rgba(27,58,107,0.10);
  transform:translateY(100%); transition:transform 0.4s ease;
}
.cookie-banner.show { transform:translateY(0); }
.cookie-text { font-size:13px; color:var(--text-sec); max-width:680px; line-height:1.6; }
.cookie-text a { color:var(--blu); text-decoration:underline; }
.cookie-btns { display:flex; gap:10px; flex-shrink:0; flex-wrap:wrap; }
.cookie-accept  { background:var(--blu); color:#fff; border:none; padding:9px 20px; border-radius:var(--radius-sm); font-size:13px; font-weight:500; cursor:pointer; font-family:inherit; }
.cookie-decline { background:transparent; color:var(--text-sec); border:1px solid var(--blu-border); padding:9px 20px; border-radius:var(--radius-sm); font-size:13px; cursor:pointer; font-family:inherit; }
.cookie-settings { background:transparent; color:var(--blu); border:none; font-size:13px; cursor:pointer; text-decoration:underline; font-family:inherit; }

/* ---- ALERT / NOTICE ---- */
.notice { padding:14px 18px; border-radius:var(--radius-sm); font-size:14px; margin-bottom:20px; }
.notice-info { background:var(--blu-light); border-left:3px solid var(--blu); color:var(--blu); }
.notice-warn { background:#fff8e1; border-left:3px solid #f9a825; color:#6d4c00; }

/* ---- ANIMAZIONI ---- */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.anim { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.anim.visible { opacity:1; transform:translateY(0); }
.anim-d1 { transition-delay:.1s; }
.anim-d2 { transition-delay:.2s; }
.anim-d3 { transition-delay:.3s; }

/* ---- RESPONSIVE ---- */
@media(max-width:1024px) {
  .grid-5 { grid-template-columns:repeat(3,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px) {
  .navbar { padding:0 20px; }
  .nav-links { display:none; flex-direction:column; align-items:flex-start;
    position:absolute; top:68px; left:0; right:0; background:#fff;
    border-bottom:1px solid var(--blu-border); padding:20px;
    gap:14px; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .nav-dropdown { width:100%; }
  .nav-dropdown::after { display:none; }
  .nav-drop-menu {
    position:static; opacity:1; pointer-events:all; transform:none;
    box-shadow:none; border:0; padding:6px 0 0 14px; min-width:0;
  }
  .hamburger { display:flex; }
  .hero-inner { flex-direction:column; padding:48px 24px 40px; }
  .hero-photo {
    position:relative;
    inset:auto;
    width:100%;
    height:260px;
    border-radius:var(--radius);
    margin-top:8px;
  }
  .hero-photo::before {
    background:linear-gradient(180deg, rgba(238,243,250,0) 52%, var(--blu-light) 100%);
  }
  .hero-visual { width:100%; }
  .chisiamo-grid { flex-direction:column; }
  .mutui-layout { grid-template-columns:1fr; gap:32px; }
  .chisiamo-visual { width:100%; }
  .contatti-grid { flex-direction:column; }
  .section-inner,.page-header-inner,.footer-inner { padding-left:20px; padding-right:20px; }
  .section { padding:56px 0; }
  .idealista-banner,.partner-bar { padding:20px; }
  footer { padding:24px 20px 20px; }
}
@media(max-width:640px) {
  .grid-5,.grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:1fr; }
  .hero-stats { gap:20px; }
  .idealista-inner { flex-direction:column; }
  .footer-top { flex-direction:column; }
  .cookie-banner { padding:14px 20px; }
  .cookie-btns { width:100%; }
}
</style>
