/* =========================================================
   EAZY COMPUTER REPAIR — Stylesheet
   Mobile-first. Design tokens below drive the whole system.
   ========================================================= */

:root{
  /* --- Color tokens --- */
  --ink:        #0E1412;   /* near-black, green-warm — matches logo bg */
  --ink-soft:   #15201C;
  --paper:      #FBFBF9;   /* main page background */
  --surface:    #F1F3F1;   /* card / section background */
  --surface-2:  #E8EBE8;
  --chrome:     #C9CFCE;   /* chrome/silver divider & border */
  --chrome-dark:#9AA3A1;
  --slate:      #586461;   /* secondary body text */
  --text:       #141816;   /* primary text */
  --white:      #FFFFFF;

  --green-700:  #146338;
  --green-600:  #1A7E45;
  --green-500:  #2FBF6F;   /* primary brand green (logo) */
  --green-400:  #67D99A;
  --green-100:  #E3F6EA;

  --gold-600:   #B8862A;
  --gold-500:   #D4A93B;   /* urgent / premium accent */
  --gold-100:   #FAF1DA;

  --danger:     #C23B3B;

  /* --- Type --- */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  /* --- Layout --- */
  --max: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 68px;
  --shadow-sm: 0 1px 2px rgba(14,20,18,0.06), 0 1px 1px rgba(14,20,18,0.04);
  --shadow-md: 0 8px 24px rgba(14,20,18,0.10);
  --shadow-lg: 0 18px 48px rgba(14,20,18,0.16);
}

/* --- Reset --- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:var(--green-600); text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }
h1,h2,h3,h4{ font-family:var(--font-display); line-height:1.15; margin:0 0 .5em; color:var(--text); }
p{ margin:0 0 1em; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:2px;
  border-radius:4px;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--ink); color:var(--white); padding:.75em 1.25em;
  z-index:200; font-family:var(--font-mono); font-size:.9rem;
}
.skip-link:focus{ left:8px; top:8px; }

.container{ max-width:var(--max); margin-inline:auto; padding-inline:20px; }
@media (min-width:768px){ .container{ padding-inline:32px; } }

section{ padding:64px 0; }
@media (min-width:768px){ section{ padding:96px 0; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.06em;
  text-transform:uppercase; color:var(--green-600);
  background:var(--green-100); border:1px solid var(--green-400);
  padding:.4em .9em; border-radius:999px; margin-bottom:1em;
}
.eyebrow.gold{ color:var(--gold-600); background:var(--gold-100); border-color:var(--gold-500); }

.section-head{ max-width:680px; margin-bottom:40px; }
.section-head h2{ font-size:clamp(1.6rem, 4vw, 2.4rem); }
.section-head p{ color:var(--slate); font-size:1.05rem; }
.section-head.center{ margin-inline:auto; text-align:center; }

/* =================== BUTTONS =================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--font-body); font-weight:600; font-size:1rem;
  padding:.85em 1.5em; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn svg{ width:18px; height:18px; flex:none; }

.btn-call{ background:var(--gold-500); color:var(--ink); box-shadow:var(--shadow-md); }
.btn-call:hover{ background:var(--gold-600); }

.btn-request{ background:var(--green-500); color:var(--ink); box-shadow:var(--shadow-md); }
.btn-request:hover{ background:var(--green-400); }

.btn-outline{ background:transparent; border-color:var(--chrome); color:var(--text); }
.btn-outline:hover{ border-color:var(--green-500); color:var(--green-600); }

.btn-ghost-dark{ background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.25); color:var(--white); }
.btn-ghost-dark:hover{ background:rgba(255,255,255,0.16); }

.btn-block{ width:100%; }

/* =================== NAVBAR =================== */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--nav-h);
  background:rgba(251,251,249,0.88);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--chrome);
  transition:box-shadow .2s ease;
}
.navbar.is-scrolled{ box-shadow:var(--shadow-sm); }
.nav-inner{
  height:var(--nav-h); display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{ display:flex; align-items:center; gap:10px; min-width:0; }
.brand img{ width:42px; height:42px; border-radius:9px; flex:none; }
.brand-name{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--text); line-height:1.1; white-space:nowrap; }
.brand-name span{ color:var(--green-600); }
.brand-sub{ display:block; font-family:var(--font-mono); font-size:.65rem; color:var(--slate); letter-spacing:.03em; }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ color:var(--text); font-weight:500; font-size:.95rem; }
.nav-links a:hover{ color:var(--green-600); }

.nav-cta{ display:flex; align-items:center; gap:12px; }

.hamburger{
  display:none;
  flex:none; width:44px; height:44px; border-radius:10px;
  background:transparent; border:1px solid var(--chrome);
  align-items:center; justify-content:center; cursor:pointer;
}
.hamburger span{ display:block; width:20px; height:2px; background:var(--text); position:relative; }
.hamburger span::before,.hamburger span::after{
  content:""; position:absolute; left:0; width:20px; height:2px; background:var(--text); transition:transform .2s ease;
}
.hamburger span::before{ top:-6px; }
.hamburger span::after{ top:6px; }
.hamburger[aria-expanded="true"] span{ background:transparent; }
.hamburger[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.hamburger[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

.mobile-panel{
  position:fixed; top:var(--nav-h); left:0; right:0; bottom:0;
  background:var(--paper); z-index:99;
  padding:24px 20px 40px; overflow-y:auto;
  transform:translateY(-8px); opacity:0; visibility:hidden;
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.mobile-panel.is-open{ transform:translateY(0); opacity:1; visibility:visible; }
.mobile-panel a{
  display:block; padding:16px 4px; font-size:1.1rem; font-weight:600; color:var(--text);
  border-bottom:1px solid var(--surface-2);
}
.mobile-panel .btn{ margin-top:20px; }

@media (max-width:899px){
  .nav-links{ display:none; }
  .nav-cta .btn-outline-text{ display:none; }
  .hamburger{ display:flex; }
}
@media (min-width:900px){
  .mobile-panel{ display:none; }
}

/* =================== HERO =================== */
.hero{
  padding-top:calc(var(--nav-h) + 36px);
  padding-bottom:56px;
  background:
    radial-gradient(circle at 85% 0%, var(--green-100) 0%, transparent 55%),
    var(--paper);
  overflow:hidden;
}
.hero-grid{
  display:grid; gap:36px;
  grid-template-columns:1fr;
  align-items:center;
}
@media (min-width:980px){
  .hero{ padding-top:calc(var(--nav-h) + 64px); padding-bottom:80px; }
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:48px; }
}

.hero-copy h1{ font-size:clamp(2.1rem, 6vw, 3.4rem); margin-bottom:.6em; }
.hero-copy h1 em{ font-style:normal; color:var(--green-600); display:block; }
.hero-copy .lede{ font-size:1.15rem; color:var(--slate); max-width:520px; margin-bottom:1.6em; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:22px; }

.hero-trust{ display:flex; flex-wrap:wrap; gap:18px; font-size:.88rem; color:var(--slate); }
.hero-trust li{ display:flex; align-items:center; gap:6px; }
.hero-trust svg{ width:16px; height:16px; color:var(--green-600); flex:none; }

/* --- Hero visual: terminal device card (the "hero image") --- */
.hero-visual{ position:relative; }
.device-card{
  background:var(--ink); border-radius:20px; padding:18px;
  box-shadow:var(--shadow-lg);
  border:1px solid #1F2C26;
  position:relative;
}
.device-bar{ display:flex; align-items:center; gap:8px; padding:0 4px 14px; }
.device-dot{ width:10px; height:10px; border-radius:50%; }
.device-dot.r{ background:#E2625A; } .device-dot.y{ background:var(--gold-500); } .device-dot.g{ background:var(--green-500); }
.device-title{ margin-left:8px; font-family:var(--font-mono); font-size:.72rem; color:var(--chrome-dark); }

.terminal{ font-family:var(--font-mono); font-size:.82rem; color:var(--green-400); line-height:1.7; min-height:210px; }
.terminal .muted{ color:#5C6F66; }
.terminal .white{ color:#E9EFEC; }
.terminal .gold{ color:var(--gold-500); }
.terminal .cursor{ display:inline-block; width:7px; height:14px; background:var(--green-400); vertical-align:middle; animation:blink 1.1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }

.device-overlay{
  position:absolute; left:50%; bottom:-26px; transform:translateX(-50%);
  display:flex; gap:10px; width:100%; padding:0 14px;
}
.device-overlay .btn{ flex:1; font-size:.92rem; padding:.75em 1em; }

.hero-badge{
  position:absolute; top:-18px; right:6px;
  background:var(--white); border:1px solid var(--chrome);
  border-radius:999px; padding:.5em 1em; box-shadow:var(--shadow-md);
  font-family:var(--font-mono); font-size:.72rem; display:flex; align-items:center; gap:6px;
}
.hero-badge .dot{ width:8px; height:8px; border-radius:50%; background:var(--green-500); box-shadow:0 0 0 3px var(--green-100); }

/* =================== STATUS STRIP =================== */
.status-strip{
  background:var(--ink); color:var(--chrome);
  font-family:var(--font-mono); font-size:.78rem;
  padding:12px 0; border-top:1px solid #1F2C26; border-bottom:1px solid #1F2C26;
}
.status-strip .container{ display:flex; flex-wrap:wrap; gap:10px 28px; justify-content:center; }
.status-strip li{ display:flex; align-items:center; gap:8px; }
.status-strip .dot{ width:7px; height:7px; border-radius:50%; background:var(--green-500); }

/* =================== SERVICES =================== */
.services-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
@media (min-width:700px){ .services-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:980px){ .services-grid{ grid-template-columns:repeat(6,1fr); gap:18px; } }

.service-card{
  background:var(--white); border:1px solid var(--surface-2); border-radius:var(--radius);
  padding:22px 16px; text-align:center; transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--green-400); }
.service-icon{
  width:52px; height:52px; border-radius:14px; background:var(--green-100); color:var(--green-700);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
}
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ font-size:.98rem; margin-bottom:.25em; }
.service-card p{ font-size:.82rem; color:var(--slate); margin:0; }

/* =================== PROCESS (terminal session) =================== */
.process-wrap{ display:grid; gap:40px; align-items:start; }
@media (min-width:980px){ .process-wrap{ grid-template-columns:.85fr 1.15fr; } }

.process-steps{ display:flex; flex-direction:column; gap:22px; }
.process-step{ display:flex; gap:16px; }
.step-num{
  flex:none; width:38px; height:38px; border-radius:50%; background:var(--ink); color:var(--green-400);
  font-family:var(--font-mono); font-weight:600; display:flex; align-items:center; justify-content:center; font-size:.95rem;
}
.process-step h3{ font-size:1.05rem; margin-bottom:.2em; }
.process-step p{ color:var(--slate); font-size:.92rem; margin:0; }

.session-card{ background:var(--ink); border-radius:18px; padding:22px 22px 26px; box-shadow:var(--shadow-lg); }
.session-log{ font-family:var(--font-mono); font-size:.85rem; line-height:1.85; color:#CFE9DA; }
.session-log .prompt{ color:var(--green-400); }
.session-log .out{ color:#8FA59A; padding-left:1.4em; display:block; }
.session-log .ok{ color:var(--green-400); }

/* =================== SERVICE AREAS =================== */
.areas-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:680px){ .areas-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .areas-grid{ grid-template-columns:repeat(4,1fr); } }

.area-card{
  background:var(--surface); border:1px solid var(--surface-2); border-radius:var(--radius-sm);
  padding:18px; scroll-margin-top:90px;
}
.area-card h3{ font-size:1rem; display:flex; align-items:center; gap:8px; margin-bottom:.4em; }
.area-card h3 svg{ width:16px; height:16px; color:var(--green-600); flex:none; }
.area-card p{ font-size:.86rem; color:var(--slate); margin:0; }

.areas-note{ margin-top:28px; font-size:.9rem; color:var(--slate); }

/* =================== WHY US =================== */
.why-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media (min-width:700px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:980px){ .why-grid{ grid-template-columns:repeat(4,1fr); } }
.why-card{ padding:4px; }
.why-icon{
  width:46px; height:46px; border-radius:12px; background:var(--gold-100); color:var(--gold-600);
  display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.why-icon svg{ width:24px; height:24px; }
.why-card h3{ font-size:1rem; }
.why-card p{ color:var(--slate); font-size:.9rem; margin:0; }

/* =================== FORM SECTION =================== */
.form-section{ background:var(--surface); }
.form-wrap{ display:grid; gap:36px; }
@media (min-width:980px){ .form-wrap{ grid-template-columns:1.3fr .9fr; gap:48px; } }

.form-card{
  background:var(--white); border-radius:var(--radius); border:1px solid var(--surface-2);
  padding:24px; box-shadow:var(--shadow-sm);
}
@media (min-width:600px){ .form-card{ padding:32px; } }

.field{ margin-bottom:18px; }
.field label{ display:block; font-weight:600; font-size:.9rem; margin-bottom:.4em; }
.field .req{ color:var(--danger); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea{
  width:100%; padding:.8em .9em; border:1.5px solid var(--chrome); border-radius:var(--radius-sm);
  font-family:inherit; font-size:1rem; background:var(--white); color:var(--text);
}
.field textarea{ min-height:120px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--green-500); }
.field-row{ display:grid; gap:18px; }
@media (min-width:560px){ .field-row.cols-2{ grid-template-columns:1fr 1fr; } }

.radio-group, .checkbox-group{ display:flex; flex-wrap:wrap; gap:10px; }
.pill-option{ position:relative; }
.pill-option input{ position:absolute; opacity:0; width:1px; height:1px; }
.pill-option label{
  display:flex; align-items:center; gap:8px; padding:.65em 1.1em; border:1.5px solid var(--chrome);
  border-radius:999px; font-size:.88rem; font-weight:500; cursor:pointer; margin:0; color:var(--text);
  transition:border-color .15s ease, background .15s ease;
}
.pill-option label svg{ width:16px; height:16px; flex:none; color:var(--slate); }
.pill-option input:checked + label{ border-color:var(--green-500); background:var(--green-100); color:var(--green-700); }
.pill-option input:checked + label svg{ color:var(--green-600); }
.pill-option input:focus-visible + label{ outline:3px solid var(--gold-500); outline-offset:2px; }

.form-note{ font-size:.82rem; color:var(--slate); margin-top:4px; }
.form-status{ margin-top:16px; padding:14px 16px; border-radius:var(--radius-sm); font-size:.92rem; display:none; }
.form-status.show{ display:block; }
.form-status.success{ background:var(--green-100); color:var(--green-700); border:1px solid var(--green-400); }
.form-status.error{ background:#FBE9E7; color:#8C2F2F; border:1px solid #E2A6A0; }

.urgent-card{
  background:var(--ink); color:var(--white); border-radius:var(--radius); padding:28px;
  position:sticky; top:calc(var(--nav-h) + 24px);
}
.urgent-card .eyebrow.gold{ background:rgba(212,169,59,.16); border-color:var(--gold-500); color:var(--gold-500); }
.urgent-card h3{ color:var(--white); font-size:1.3rem; }
.urgent-card p{ color:#C9D4CF; font-size:.92rem; }
.urgent-card .phone-link{
  display:flex; align-items:center; gap:10px; font-family:var(--font-mono); font-size:1.2rem; color:var(--white);
  margin:14px 0; padding:14px; background:rgba(255,255,255,0.06); border-radius:var(--radius-sm);
}
.urgent-card .phone-link svg{ color:var(--green-400); width:20px; height:20px; flex:none; }
.urgent-card .divider{ border-top:1px solid rgba(255,255,255,.12); margin:18px 0; }
.urgent-card .sms-box{ font-size:.86rem; color:#C9D4CF; }
.urgent-card .sms-box strong{ color:var(--gold-500); }

/* =================== FAQ =================== */
.faq-list{ max-width:760px; }
.faq-item{ border-bottom:1px solid var(--surface-2); }
.faq-item summary{
  cursor:pointer; list-style:none; padding:18px 4px; display:flex; align-items:center; justify-content:space-between;
  font-weight:600; font-size:1rem; gap:12px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .chev{ flex:none; width:20px; height:20px; transition:transform .2s ease; color:var(--green-600); }
.faq-item[open] summary .chev{ transform:rotate(180deg); }
.faq-item p{ padding:0 4px 20px; color:var(--slate); font-size:.95rem; max-width:640px; }

/* =================== FOOTER =================== */
footer{ background:var(--ink); color:#C9D4CF; padding:64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:36px; margin-bottom:40px; }
@media (min-width:780px){ .footer-grid{ grid-template-columns:1.3fr 1fr 1fr 1fr; gap:24px; } }

.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ width:40px; height:40px; border-radius:9px; }
.footer-brand strong{ font-family:var(--font-display); color:var(--white); font-size:1.05rem; }
.footer-col h4{ color:var(--white); font-family:var(--font-mono); font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; margin-bottom:14px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:#AEBDB6; font-size:.92rem; }
.footer-col a:hover{ color:var(--green-400); }
.footer-p{ color:#9AAAA3; font-size:.92rem; max-width:320px; }

.footer-contact li{ display:flex; align-items:center; gap:8px; font-size:.92rem; color:#AEBDB6; }
.footer-contact svg{ width:16px; height:16px; color:var(--green-400); flex:none; }

.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center; color:var(--white); transition:background .15s ease, border-color .15s ease;
}
.social-row a:hover{ background:var(--green-500); border-color:var(--green-500); color:var(--ink); }
.social-row svg{ width:18px; height:18px; }

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1); padding-top:24px; display:flex; flex-wrap:wrap;
  gap:12px; justify-content:space-between; font-size:.82rem; color:#7E8F88;
}
.footer-bottom a{ color:#9AAAA3; }

/* Sticky mobile call bar */
.mobile-call-bar{
  position:fixed; bottom:0; left:0; right:0; z-index:90;
  display:flex; gap:10px; padding:10px 14px; background:var(--white);
  border-top:1px solid var(--chrome); box-shadow:0 -8px 24px rgba(14,20,18,0.08);
}
.mobile-call-bar .btn{ flex:1; padding:.8em 1em; font-size:.95rem; }
@media (min-width:900px){ .mobile-call-bar{ display:none; } }
body{ padding-bottom:74px; }
@media (min-width:900px){ body{ padding-bottom:0; } }

/* Utility */
.text-center{ text-align:center; }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* =================== PROMO POPOVER (Tech4SmallBusiness) =================== */
.promo-popover{
  position:fixed; right:20px; bottom:90px; z-index:120;
  width:320px; max-width:calc(100% - 32px);
  background:rgba(47,191,111,0.18);
  border:1px solid rgba(47,191,111,0.5);
  -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px);
  border-radius:16px;
  padding:22px 20px 20px;
  box-shadow:var(--shadow-lg);
  transform:translateY(18px); opacity:0; visibility:hidden;
  transition:opacity .35s ease, transform .35s ease, visibility .35s;
}
.promo-popover.is-visible{ opacity:1; transform:translateY(0); visibility:visible; }

.promo-eyebrow{
  font-family:var(--font-mono); font-size:.74rem; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-600); margin:0 0 8px; font-weight:600;
}
.promo-text{ color:var(--ink); font-size:.95rem; line-height:1.5; margin:0 0 16px; }
.promo-text strong{ color:var(--green-700); }

.promo-actions{ display:flex; flex-direction:column; gap:10px; }
.promo-btn-primary{
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--ink); color:var(--white); font-weight:600; font-size:.9rem;
  padding:.75em 1em; border-radius:999px; text-decoration:none; text-align:center;
  transition:background .15s ease, transform .15s ease;
}
.promo-btn-primary:hover{ background:var(--green-700); transform:translateY(-1px); }
.promo-call{ color:var(--ink); font-size:.84rem; text-align:center; text-decoration:underline; }
.promo-call:hover{ color:var(--green-700); }

.promo-close{
  position:absolute; top:10px; right:10px; width:26px; height:26px; border-radius:50%;
  background:rgba(255,255,255,0.55); border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--ink); padding:0;
}
.promo-close svg{ width:13px; height:13px; }
.promo-close:hover{ background:var(--white); }

@media (min-width:900px){
  .promo-popover{ bottom:28px; }
}
@media (prefers-reduced-motion: reduce){
  .promo-popover{ transition:none; }
}
