/* ==========================================================================
   Amateta Retail Suite — Public website design system (shared by all pages)
   Neutral-first, brand used as an accent. Flat refined buttons, generous
   whitespace, calm cards. Mobile-first. No external framework.
   Brand: deep blue #0E76BC · cyan #1173B0 · green #8CC63E · orange #E8730F
   ========================================================================== */
:root{
  /* Brand */
  --primary:#0E76BC; --primary-dark:#0b5f9b; --primary-2:#1173B0; --primary-light:#4FB8E8;
  --green:#7FB833; --green-dark:#5f9327; --orange:#E8730F; --orange-dark:#c9610a;
  /* Button-safe orange: white text on --orange measured 3.05:1. */
  --orange-cta:#B85309; --orange-cta-dark:#9c4507;
  /* Neutrals, slightly blue-biased so they sit with the brand */
  --ink:#0f1f2e; --ink-2:#1d3348; --body:#55677a; --muted:#5f7183;
  --bg:#ffffff; --bg-soft:#f6f9fb; --bg-soft2:#eef4f9; --line:#e4ebf1; --dark:#0d1b28;
  /* Shape & depth — subtle, never glossy */
  --radius:16px; --radius-sm:10px; --radius-lg:22px;
  --shadow-xs:0 1px 2px rgba(15,31,46,.06);
  --shadow:0 2px 8px rgba(15,31,46,.06),0 12px 28px rgba(15,31,46,.07);
  --shadow-lg:0 8px 20px rgba(15,31,46,.08),0 28px 60px rgba(15,31,46,.12);
  --maxw:1200px; --header-h:74px;
  --grad:linear-gradient(135deg,var(--primary-dark),var(--primary) 55%,var(--primary-2));
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  --t:.2s cubic-bezier(.4,0,.2,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
/* The closed mobile drawer parks off-screen to the right; without this it would
   create a horizontal scrollbar on every page. */
body{margin:0;font-family:var(--font);color:var(--body);background:var(--bg);
  line-height:1.7;font-size:16.5px;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;display:block}
a{color:var(--primary);text-decoration:none;transition:color var(--t)}
a:hover{color:var(--primary-2)}

h1,h2,h3,h4{color:var(--ink);line-height:1.15;margin:0 0 .5em;font-weight:800;letter-spacing:-.022em}
h1{font-size:clamp(2.1rem,5vw,3.5rem)}
h2{font-size:clamp(1.65rem,3.4vw,2.5rem)}
h3{font-size:1.2rem;letter-spacing:-.012em}
h4{font-size:1rem}
p{margin:0 0 1rem}
strong{color:var(--ink-2);font-weight:700}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 22px}
.section{padding:92px 0}
.section.tight{padding:56px 0}
.bg-soft{background:var(--bg-soft)}
.bg-ink{background:var(--dark);color:#c3d0dc}
.center{text-align:center}

.eyebrow{display:inline-block;font-weight:700;color:var(--primary-dark);
  background:var(--bg-soft2);padding:7px 15px;border-radius:100px;font-size:.75rem;
  letter-spacing:.09em;text-transform:uppercase;margin-bottom:16px;line-height:1}
.lead{font-size:1.1rem;color:var(--body);max-width:700px;line-height:1.75}
.section-head{max-width:730px;margin:0 auto 56px}
.section-head.center{text-align:center}
.section-head.center .lead{margin-left:auto;margin-right:auto}

/* --------------------------------------------------------------------------
   BUTTONS — flat, calm, correctly sized. No gradients, no giant pills.
   -------------------------------------------------------------------------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-family:inherit;font-size:.95rem;font-weight:600;line-height:1;
  padding:13px 22px;border-radius:var(--radius-sm);border:1.5px solid transparent;
  cursor:pointer;text-decoration:none;white-space:nowrap;
  transition:background var(--t),border-color var(--t),color var(--t),transform var(--t),box-shadow var(--t)}
.btn i{font-size:.92em}
.btn:focus-visible{outline:3px solid rgba(27,156,216,.45);outline-offset:2px}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--primary);color:#fff;box-shadow:var(--shadow-xs)}
.btn-primary:hover{background:var(--primary-dark);color:#fff;box-shadow:0 6px 16px rgba(14,118,188,.28);transform:translateY(-1px)}
.btn-cta{background:var(--orange-cta);color:#fff;box-shadow:var(--shadow-xs)}
.btn-cta:hover{background:var(--orange-cta-dark);color:#fff;box-shadow:0 6px 16px rgba(184,83,9,.32);transform:translateY(-1px)}
.btn-ghost{background:transparent;color:var(--ink-2);border-color:var(--line)}
.btn-ghost:hover{background:var(--bg-soft);border-color:#cfdae4;color:var(--ink);transform:translateY(-1px)}
.btn-light{background:#fff;color:var(--ink);box-shadow:var(--shadow-xs)}
.btn-light:hover{background:#f2f6f9;color:var(--ink);box-shadow:0 6px 16px rgba(0,0,0,.16);transform:translateY(-1px)}
.btn-lg{padding:16px 30px;font-size:1rem;border-radius:12px}
.btn-block{display:flex;width:100%}
/* Outline buttons sitting ON a dark hero / CTA band */
.hero .btn-ghost,.cta-band .btn-ghost{border-color:rgba(255,255,255,.45);color:#fff;background:transparent}
.hero .btn-ghost:hover,.cta-band .btn-ghost:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.7);color:#fff}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(12px);border-bottom:1px solid var(--line)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:20px;height:var(--header-h)}
.brand{display:flex;align-items:center;gap:10px;flex:none}
.brand img{height:38px;width:auto}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0}
.nav-links a{position:relative;color:var(--ink-2);font-weight:600;padding:9px 14px;
  border-radius:8px;font-size:.94rem;transition:color var(--t),background var(--t)}
.nav-links a:hover{background:var(--bg-soft);color:var(--primary)}
.nav-links a.active{color:var(--primary-dark);background:var(--bg-soft2)}
.nav-cta{display:flex;align-items:center;gap:10px;flex:none}
.nav-cta .btn{padding:10px 18px;font-size:.9rem}
.burger{display:none;background:transparent;border:1.5px solid var(--line);color:var(--ink);
  width:44px;height:44px;border-radius:10px;cursor:pointer;font-size:1.05rem;
  align-items:center;justify-content:center}
.burger:hover{background:var(--bg-soft)}

/* Mobile drawer */
.drawer{position:fixed;top:0;right:0;height:100%;width:min(86vw,340px);background:#fff;
  box-shadow:var(--shadow-lg);transform:translateX(100%);transition:transform .28s ease;
  z-index:1100;padding:20px;display:flex;flex-direction:column;gap:4px;overflow-y:auto}
.drawer.open{transform:translateX(0)}
.drawer .drawer-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}
.drawer a{color:var(--ink-2);font-weight:600;padding:13px 14px;border-radius:10px;font-size:1rem}
.drawer a:hover{background:var(--bg-soft);color:var(--primary)}
.drawer a.active{background:var(--bg-soft2);color:var(--primary-dark)}
.drawer .btn{margin-top:10px}
/* Buttons inside the drawer: `.drawer a` is more specific than `.btn-cta`,
   so without these the mobile menu painted dark ink on the orange button. */
.drawer a.btn-cta,.drawer a.btn-cta:hover{color:#fff}
.drawer a.btn-ghost{color:var(--ink-2)}
.drawer-overlay{position:fixed;inset:0;background:rgba(9,20,30,.5);opacity:0;visibility:hidden;
  transition:opacity var(--t),visibility var(--t);z-index:1050}
.drawer-overlay.open{opacity:1;visibility:visible}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
/* A solid colour UNDER the gradient, not just the gradient.
   The hero text is white. A gradient is a background-image, so on its own the
   background-COLOUR stays transparent — and if the gradient does not paint
   (an old browser, a stylesheet that half-loaded, a forced-colours mode) the
   white text lands on the page's own white ground and vanishes. The solid
   colour is the floor under that. */
.hero{position:relative;color:#fff;overflow:hidden;padding:96px 0 104px;
  background-color:#0b5f9b;
  background-image:linear-gradient(135deg,#0b5f9b 0%,var(--primary) 45%,#1e93cf 100%)}
.hero::after{content:"";position:absolute;right:-14%;top:-32%;width:760px;height:760px;
  background:radial-gradient(circle,rgba(255,255,255,.14) 0%,transparent 62%);pointer-events:none}
.hero .container{position:relative;z-index:1}
.hero .container.hero-2{display:grid;grid-template-columns:1.06fr .94fr;gap:56px;align-items:center}
.hero .eyebrow{background:rgba(255,255,255,.16);color:#fff}
.hero h1{color:#fff;margin-bottom:.42em}
.hero p{color:rgba(255,255,255,.92);font-size:1.12rem;max-width:560px;line-height:1.7}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.hero-2 .hero-cta{margin-top:30px}
.hero-points{display:flex;gap:22px;flex-wrap:wrap;margin-top:26px}
.hero-2 .hero-points{margin-top:26px}
.hero-points span{display:inline-flex;align-items:center;gap:8px;font-size:.92rem;color:rgba(255,255,255,.94)}
.hero-points i{color:#B6E86A}
.hero-illus-wrap{position:relative;display:flex;justify-content:center;align-items:center}
.hero-illus-wrap::before{content:"";position:absolute;width:82%;height:82%;border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.2) 0%,transparent 68%)}
.hero-illus{position:relative;width:100%;max-width:540px;height:auto;filter:drop-shadow(0 26px 46px rgba(0,0,0,.3))}
.hero-card{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.24);
  border-radius:var(--radius);padding:22px;backdrop-filter:blur(8px)}
.hero-card img{border-radius:12px}
.hero-mock{background:#fff;border-radius:12px;padding:6px 16px;color:var(--body)}
.hero-mock .row{display:flex;justify-content:space-between;gap:14px;padding:13px 2px;
  border-bottom:1px solid var(--line);font-size:.92rem}
.hero-mock .row:last-child{border-bottom:none}

/* Download page hero */
.dl-hero{display:grid;grid-template-columns:1.05fr .95fr;gap:52px;align-items:center}
.dl-hero h1{color:#fff}
.dl-hero p{color:rgba(255,255,255,.92)}

/* --------------------------------------------------------------------------
   LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.grid{display:grid;gap:26px}
/* Grid children default to min-content width, so one long unbreakable child (a
   wide button, a long filename) can blow the column past the screen. */
.grid>*{min-width:0}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

/* --------------------------------------------------------------------------
   CARDS
   -------------------------------------------------------------------------- */
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:30px 28px;box-shadow:var(--shadow-xs);
  transition:transform var(--t),box-shadow var(--t),border-color var(--t)}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#d8e3ec}
.card h3{margin-bottom:.5em}
.card p{color:var(--body);font-size:.97rem;margin:0}
.card .ico{width:50px;height:50px;border-radius:14px;display:grid;place-items:center;
  font-size:1.24rem;margin-bottom:18px;background:var(--bg-soft2);color:var(--primary)}
.card .ico.green{background:#eef7e2;color:var(--green-dark)}
.card .ico.orange{background:#fdefe1;color:var(--orange-dark)}

/* Stats band */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:34px 28px;box-shadow:var(--shadow)}
.stats>div{text-align:center}
.stats .num{font-size:clamp(1.7rem,3vw,2.3rem);font-weight:800;color:var(--primary);line-height:1.1;letter-spacing:-.02em}
.stats .lbl{font-size:.86rem;color:var(--muted);margin-top:6px;font-weight:600}

/* Steps */
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 28px}
.step .n{width:42px;height:42px;border-radius:12px;background:var(--primary);color:#fff;
  font-weight:800;font-size:1.05rem;display:grid;place-items:center;margin-bottom:18px}
.step h3{margin-bottom:.45em}
.step p{margin:0;font-size:.97rem}

/* Hardware tiles */
.hw{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:transform var(--t),box-shadow var(--t)}
.hw:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.hw .hw-media{background:var(--bg-soft);display:grid;place-items:center;padding:30px;min-height:210px}
.hw .hw-media img,.hw img.hw-img{max-height:170px;width:auto;object-fit:contain}
.hw .hw-body{padding:24px 26px 28px}
.hw h3{margin-bottom:.4em}
.hw p{margin:0;font-size:.95rem}
.hw .ico{width:48px;height:48px;border-radius:13px;display:grid;place-items:center;
  background:var(--bg-soft2);color:var(--primary);font-size:1.2rem;margin-bottom:14px}

/* Icon + text row */
.info-row{display:flex;gap:16px;align-items:flex-start;margin-bottom:22px}
.info-row .ico{width:46px;height:46px;flex:none;border-radius:13px;display:grid;place-items:center;
  background:var(--bg-soft2);color:var(--primary);font-size:1.1rem}

/* --------------------------------------------------------------------------
   FEATURED BUNDLE
   -------------------------------------------------------------------------- */
.bundle-band{background:var(--bg-soft)}
.msbundle{display:grid;grid-template-columns:1fr 1fr;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.msbundle .media{position:relative;background:linear-gradient(160deg,#eef4f9,#e2edf5);
  display:grid;place-items:center;padding:44px}
.msbundle .media img{max-height:330px;width:auto;object-fit:contain;filter:drop-shadow(0 18px 34px rgba(15,31,46,.18))}
.msbundle .media .tag{position:absolute;top:20px;left:20px;background:var(--ink);color:#fff;
  font-size:.74rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:7px 14px;border-radius:100px}
.msbundle .info{padding:46px 44px;display:flex;flex-direction:column;justify-content:center}
.msbundle .info h3{font-size:1.6rem;margin-bottom:.3em}
.msbundle .info .sub{color:var(--body);margin-bottom:20px}
.msbundle .speclist{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:11px}
.msbundle .speclist li{display:flex;gap:11px;align-items:flex-start;font-size:.97rem;color:var(--body)}
.msbundle .speclist i{color:var(--green);margin-top:4px;flex:none}
.msbundle .price{display:flex;align-items:baseline;gap:8px;margin-bottom:24px}
.msbundle .price .amt{font-size:2rem;font-weight:800;color:var(--ink);letter-spacing:-.02em}
.msbundle .price .from{font-size:.9rem;color:var(--muted);font-weight:600}
.msbundle .actions{display:flex;gap:12px;flex-wrap:wrap}

/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */
.pricing{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:stretch}
.plan{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:32px 26px;
  display:flex;flex-direction:column;position:relative;
  transition:transform var(--t),box-shadow var(--t),border-color var(--t)}
.plan:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#d8e3ec}
.plan.popular{border:2px solid var(--primary);box-shadow:var(--shadow)}
.plan .tag{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--primary);
  color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:6px 15px;border-radius:100px;white-space:nowrap}
.plan h3{font-size:1.15rem;margin-bottom:.25em}
.plan .desc{font-size:.88rem;color:var(--muted);margin-bottom:18px;min-height:38px}
.plan .price{font-size:2.15rem;font-weight:800;color:var(--ink);letter-spacing:-.025em;margin-bottom:20px;line-height:1.1}
.plan .price small{font-size:.85rem;font-weight:600;color:var(--muted);letter-spacing:0}
.plan ul{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:11px;flex:1}
.plan li{display:flex;gap:10px;align-items:flex-start;font-size:.93rem;color:var(--body)}
.plan li i{color:var(--green);margin-top:4px;flex:none;font-size:.85rem}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 28px;
  display:flex;flex-direction:column;gap:16px}
.stars{color:#B45309;letter-spacing:2px;font-size:.95rem}
.quote p{margin:0;color:var(--ink-2);font-size:1rem;line-height:1.7}
.quote .who{display:flex;align-items:center;gap:13px;margin-top:auto;font-size:.9rem;color:var(--muted)}
.quote .av{width:44px;height:44px;border-radius:50%;background:var(--bg-soft2);color:var(--primary-dark);
  display:grid;place-items:center;font-weight:800;font-size:.9rem;flex:none}

/* --------------------------------------------------------------------------
   CTA BAND
   -------------------------------------------------------------------------- */
.cta-band{background-color:#14365a;background-image:linear-gradient(135deg,var(--ink) 0%,#14365a 55%,var(--primary) 100%);
  color:#fff;border-radius:var(--radius-lg);padding:64px 44px;text-align:center;position:relative;overflow:hidden}
.cta-band::after{content:"";position:absolute;right:-90px;bottom:-120px;width:420px;height:420px;
  background:radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 65%)}
.cta-band h2{color:#fff;position:relative;z-index:1}
.cta-band p{color:rgba(255,255,255,.9);max-width:620px;margin:0 auto 30px;position:relative;z-index:1;font-size:1.06rem}
.cta-band>div{position:relative;z-index:1}

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.field{margin-bottom:18px}
.field label{display:block;font-weight:600;font-size:.9rem;color:var(--ink-2);margin-bottom:7px}
.field input,.field select,.field textarea{width:100%;padding:13px 15px;border:1.5px solid var(--line);
  border-radius:var(--radius-sm);font-family:inherit;font-size:.97rem;color:var(--ink);background:#fff;
  transition:border-color var(--t),box-shadow var(--t)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--primary-2);
  box-shadow:0 0 0 4px rgba(27,156,216,.13)}
.alert{padding:14px 18px;border-radius:var(--radius-sm);margin-bottom:20px;font-size:.94rem}
.alert-ok{background:#e8f6ea;color:#1c6b32;border:1px solid #bfe4c8}
.alert-err{background:#fdecec;color:#a12626;border:1px solid #f5c9c9}
.contact-line{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px;font-size:.97rem}
.contact-line i{color:var(--primary);width:22px;text-align:center;margin-top:5px;flex:none}

/* Download spec list */
.dl-spec{display:flex;flex-direction:column;gap:12px;margin:0;padding:0}
.dl-spec li{font-size:.97rem;color:var(--body);padding-bottom:12px;border-bottom:1px solid var(--line);list-style:none}
.dl-spec li:last-child{border-bottom:none;padding-bottom:0}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer{background:var(--dark);color:#9fb1c2;padding:72px 0 0;font-size:.94rem}
.site-footer img{height:40px;margin-bottom:18px}
.site-footer h4{color:#fff;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px;font-weight:700}
.site-footer .cols{display:grid;grid-template-columns:1.7fr 1fr 1fr 1fr 1.3fr;gap:36px;padding-bottom:52px}
.site-footer a{color:#9fb1c2;display:block;padding:6px 0}
.site-footer a:hover{color:#fff}
.site-footer .social{display:flex;gap:11px;margin-top:18px}
.site-footer .social a{width:40px;height:40px;border-radius:11px;background:rgba(255,255,255,.08);
  display:grid;place-items:center;padding:0;color:#c3d0dc;
  transition:background var(--t),color var(--t),transform var(--t)}
.site-footer .social a:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}
.foot-bottom{border-top:1px solid rgba(255,255,255,.1);padding:24px 0;display:flex;
  justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;font-size:.87rem;color:#7b8fa2}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width:1024px){
  .section{padding:74px 0}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .pricing{grid-template-columns:repeat(2,1fr)}
  .hero .container.hero-2,.dl-hero{grid-template-columns:1fr;gap:44px}
  .hero p{max-width:none}
  .hero-illus{max-width:440px;margin:0 auto}
  .site-footer .cols{grid-template-columns:1fr 1fr;gap:32px}
}
/* Collapse the nav BEFORE the links + 3 buttons can overflow the header. */
@media (max-width:1080px){
  .nav-links{display:none}
  .burger{display:inline-flex}
  .nav-cta .btn{display:none}
}
@media (max-width:860px){
  .grid-3,.grid-2{grid-template-columns:1fr}
  .msbundle{grid-template-columns:1fr}
  .msbundle .info{padding:34px 26px}
  .msbundle .media{padding:32px}
  .stats{grid-template-columns:repeat(2,1fr);padding:28px 20px;gap:26px}
}
@media (max-width:640px){
  body{font-size:16px}
  .section{padding:58px 0}
  .section.tight{padding:40px 0}
  .section-head{margin-bottom:36px}
  .hero{padding:64px 0 72px}
  .hero-cta{gap:11px}
  .hero-cta .btn{width:100%}
  /* Long button labels must wrap on a phone rather than widen the layout. */
  .btn{white-space:normal;text-align:center}
  .btn-lg{padding:15px 24px;font-size:.97rem}
  .grid-4{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .cta-band{padding:44px 24px;border-radius:var(--radius)}
  .card,.step{padding:26px 22px}
  .site-footer{padding-top:52px}
  .site-footer .cols{grid-template-columns:1fr;gap:32px;padding-bottom:36px}
  .foot-bottom{flex-direction:column;text-align:center;gap:10px}
  .hero-points{gap:14px}
}

/* ==========================================================================
   FAQ ACCORDION
   Lifted out of index.php's inline <style> so faq.php shares it. Two pages
   rendering the same rows had to look the same, and a copy in each would drift.
   ========================================================================== */
.faq{max-width:860px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq details{background:var(--bg);border:1px solid var(--line);border-radius:14px;
  padding:0 22px;box-shadow:var(--shadow-xs)}
.faq summary{cursor:pointer;list-style:none;padding:18px 0;font-weight:700;font-size:16px;
  color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"\f078";font-family:"Font Awesome 6 Free";font-weight:900;
  font-size:13px;color:var(--primary-dark);transition:transform var(--t);flex:none}
.faq details[open] summary::after{transform:rotate(180deg)}
.faq details p{margin:0;padding:0 0 20px;color:var(--body);font-size:15px;line-height:1.65}
/* The keyboard focus ring has to be visible: these are the only controls on the
   page, and a visitor tabbing through must be able to see where they are. */
.faq summary:focus-visible{outline:3px solid var(--primary);outline-offset:3px;border-radius:8px}

/* ==========================================================================
   LEGAL PAGES (privacy, terms)
   Long-form reading: a narrower measure, clear heading rhythm, generous
   leading. Nothing decorative — these exist to be read and understood.
   ========================================================================== */
.legal h1{margin-bottom:.3em}
.legal h2{font-size:1.35rem;margin:2.2em 0 .5em;padding-top:.2em}
.legal h3{font-size:1.05rem;margin:1.5em 0 .35em;color:var(--ink-2)}
.legal p{font-size:16.5px;line-height:1.8;color:var(--body);max-width:70ch}
.legal p strong{color:var(--ink-2)}
.legal .lead{margin-bottom:1.4em}
.legal-foot{margin-top:44px;padding:20px 24px;background:var(--bg-soft);
  border-radius:var(--radius);border:1px solid var(--line)}
.legal-foot p{margin:0}

/* ==========================================================================
   HERO SLIDESHOW
   Real photographs of real installations. Cross-fade rather than slide: it is
   calmer, needs no horizontal layout maths, and cannot cause a sideways scroll
   on a phone.

   The frame keeps a fixed aspect ratio so nothing on the page moves when a
   picture loads or changes — layout shift on the first screen is the most
   expensive thing a marketing site can do to itself.
   ========================================================================== */
.slideshow{position:relative;width:100%;max-width:560px;margin-inline:auto}
.slides{position:relative;aspect-ratio:4/3;border-radius:var(--radius-lg);overflow:hidden;
  background:var(--bg-soft2);box-shadow:var(--shadow-lg)}
.slide{position:absolute;inset:0;margin:0;opacity:0;transition:opacity .7s ease;pointer-events:none}
.slide.is-active{opacity:1;pointer-events:auto}
.slide img{width:100%;height:100%;object-fit:cover;display:block}
.slide figcaption{position:absolute;left:0;right:0;bottom:0;padding:30px 20px 16px;
  color:#fff;font-size:14.5px;font-weight:600;line-height:1.45;
  /* A dark scrim, not a flat bar: the caption stays readable over any photo,
     which a fixed colour cannot promise. */
  background:linear-gradient(to top,rgba(8,20,30,.88) 0%,rgba(8,20,30,.62) 55%,rgba(8,20,30,0) 100%)}
/* The dot you SEE is 9px. The thing you TAP is 31x21, because the padding is
   transparent and background-clip keeps the colour on the content box only.
   A 9px target is missed more often than it is hit with a thumb. */
.slide-dots{display:flex;gap:2px;justify-content:center;margin-top:10px}
.slide-dots button{
  width:9px;height:9px;padding:11px 6px;border-radius:50%;cursor:pointer;
  box-sizing:content-box;background-clip:content-box;
  border:none;background:var(--line);transition:background var(--t),width var(--t)}
.slide-dots button.is-active{background:var(--primary);width:26px;border-radius:100px;
  background-clip:content-box}
.slide-dots button:hover{background:var(--primary-light);background-clip:content-box}
.slide-dots button:focus-visible{outline:3px solid var(--primary);outline-offset:3px}
@media (prefers-reduced-motion:reduce){
  /* Somebody who has asked their machine to stop moving things gets the first
     picture and the dots, and nothing animates on its own. */
  .slide{transition:none}
}

.hero-trust{margin-top:20px;font-size:14px;color:rgba(255,255,255,.9);display:flex;
  align-items:flex-start;gap:8px;line-height:1.5}
.hero-trust i{margin-top:3px;flex:none;opacity:.85}

/* ==========================================================================
   THE AMATETA FAMILY
   Three sister products. Whole-card links, because a visitor should be able to
   hit anywhere on it rather than hunting for the words.
   ========================================================================== */
.brand-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px}
.brand-card{display:flex;flex-direction:column;gap:6px;background:var(--bg);
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:28px 26px;
  box-shadow:var(--shadow-xs);transition:transform var(--t),box-shadow var(--t),border-color var(--t);
  color:inherit;text-decoration:none}
.brand-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--primary-light)}
.brand-icon{width:52px;height:52px;border-radius:14px;background:var(--bg-soft2);
  color:var(--primary-dark);display:grid;place-items:center;font-size:20px;margin-bottom:10px}
.brand-card h3{margin:0;font-size:1.15rem;color:var(--ink)}
.brand-card p{margin:0;color:var(--body);font-size:14.5px;line-height:1.6;flex:1}
.brand-cta{margin-top:14px;font-weight:700;font-size:14px;color:var(--primary-dark);
  display:inline-flex;align-items:center;gap:8px}
.brand-card:hover .brand-cta i{transform:translateX(3px)}
.brand-cta i{transition:transform var(--t);font-size:12px}

/* ==========================================================================
   SITE-WIDE FURNITURE
   The announcement strip, the keyboard skip link and the family band. All
   three appear on every page and are switched on from Admin -> Website Content.
   ========================================================================== */

/* --- the announcement strip ------------------------------------------------
   Above the sticky header, so it scrolls away and never eats screen height on
   a phone once the visitor has read it. */
.topbar{background:var(--dark);color:#cfe0ee;font-size:.86rem;line-height:1.4}
.topbar .container{display:flex;align-items:center;justify-content:center;gap:14px;
  flex-wrap:wrap;padding-block:9px;text-align:center}
.topbar i{color:var(--green)}
.topbar a{color:#fff;font-weight:700;white-space:nowrap;border-bottom:1px solid rgba(255,255,255,.4)}
.topbar a:hover{color:var(--primary-light);border-bottom-color:var(--primary-light)}
.topbar a i{color:inherit;font-size:.75em;margin-left:2px}

/* --- keyboard skip link ----------------------------------------------------
   Invisible until it is tabbed to. Somebody navigating by keyboard should not
   have to walk through the whole menu on every page to reach the content. */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:var(--primary);
  color:#fff;padding:12px 20px;border-radius:0 0 var(--radius-sm) 0;font-weight:700}
.skip-link:focus{left:0;color:#fff}

/* --- the rest of the Amateta family ---------------------------------------
   On every page, not only the home page: somebody who arrived looking for a
   till should be able to find the hosting and the invoicing from where they
   landed, without hunting. */
.family-strip{background:var(--bg-soft2);border-top:1px solid var(--line);padding:40px 0}
.family-lead{text-align:center;margin:0 0 22px;font-weight:700;color:var(--ink-2);
  font-size:.78rem;letter-spacing:.11em;text-transform:uppercase}
.family-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.family-links a{display:flex;align-items:center;gap:14px;background:var(--bg);
  border:1px solid var(--line);border-radius:var(--radius-sm);padding:15px 18px;
  color:var(--body);transition:transform var(--t),box-shadow var(--t),border-color var(--t)}
.family-links a:hover{transform:translateY(-2px);box-shadow:var(--shadow-xs);
  border-color:var(--primary-light);color:var(--body)}
.family-links i{font-size:1.15rem;color:var(--primary);flex:none;width:26px;text-align:center}
.family-links span{display:flex;flex-direction:column;gap:1px;min-width:0}
.family-links strong{color:var(--ink);font-size:.97rem;font-weight:700}
.family-links small{font-size:.82rem;color:var(--muted);line-height:1.4}

/* --- the family links inside the phone drawer ---------------------------- */
/* 12px floor, same as everywhere else on a phone. .72rem was 11.5px. */
.drawer-label{margin:22px 0 8px;font-size:12px;letter-spacing:.1em;text-transform:uppercase;
  font-weight:700;color:var(--ink-2)}
.drawer-fam{display:flex!important;align-items:center;gap:10px;font-size:.93rem;color:var(--body)!important}
.drawer-fam i{color:var(--primary);width:20px;text-align:center}

/* The footer logo carries width/height attributes now (so the footer does not
   jump while it loads); the CSS height must not then squash it. */
.site-footer img{width:auto}

/* --- forms on a phone ------------------------------------------------------
   Below 16px, iOS Safari zooms the whole page in when a field takes focus and
   does not zoom back out. The visitor is then left scrolling sideways through
   a form they were halfway through filling in. */
@media (max-width:767px){
  .field input,.field select,.field textarea{font-size:16px;min-height:46px}
  .field textarea{min-height:120px}
  /* 12px floor on a phone, same as the admin. `.msbundle .tag` is a more
     specific selector than a bare `.tag`, so it has to be beaten explicitly. */
  .msbundle .tag,.tag,.eyebrow,.hero .eyebrow{font-size:12px!important}
}

/* ==========================================================================
   HERO WITH THE PHOTOGRAPHS BEHIND IT   (23 Aug 2026)
   --------------------------------------------------------------------------
   The slideshow used to be a card sitting beside the headline. It is now the
   background of the whole hero: full bleed, edge to edge, with the copy on
   top of it.

   The scrim is the part that matters. A gradient sits between the photograph
   and the words, so the headline stays readable over ANY picture — including
   one an admin uploads next year that happens to be bright exactly where the
   text falls. Relying on the photograph being dark in the right place is not
   a design, it is a coincidence that will end.
   ========================================================================== */
.hero-bg{position:relative;isolation:isolate;overflow:hidden;
  padding:104px 0 92px;min-height:min(78vh,660px);display:flex;flex-direction:column;
  justify-content:center;
  /* The brand gradient is the BASE layer, always, with the photographs on top
     of it. Not decoration: the copy is white, and if a picture 404s — a file
     renamed, a bad upload, a slow connection that gives up — the text would
     otherwise be white on the page's own white. This guarantees the hero is
     readable before a single image has loaded, and if none ever does. */
  background-color:#0b5f9b;background-image:var(--grad);color:#fff}
.hero-bg .hero-inner{position:relative;z-index:2;width:100%}
.hero-bg .hero-copy{max-width:660px}

/* --- the stage the pictures cross-fade on -------------------------------- */
.hero-stage{position:absolute;inset:0;z-index:0;overflow:hidden;background:var(--primary-dark)}
.hero-slide{position:absolute;inset:0;margin:0;opacity:0;
  transition:opacity 1.1s ease, transform 7s linear;transform:scale(1.06)}
.hero-slide.is-active{opacity:1;transform:scale(1)}
.hero-slide img{width:100%;height:100%;object-fit:cover;display:block}

/* --- the scrim ------------------------------------------------------------
   Two layers on purpose: a horizontal wash that is heaviest on the left where
   the copy sits, and a vertical one so the caption and dots at the bottom
   have something to sit against too. */
.hero-scrim{position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    linear-gradient(100deg,
      rgba(8,38,62,.94) 0%,
      rgba(8,38,62,.86) 34%,
      rgba(10,60,96,.62) 58%,
      rgba(12,80,128,.42) 100%),
    linear-gradient(to top,
      rgba(6,26,44,.72) 0%,
      rgba(6,26,44,.10) 38%,
      rgba(6,26,44,0) 62%)}

/* --- caption + dots along the bottom ------------------------------------- */
.hero-foot{position:relative;z-index:2;display:flex;align-items:center;
  justify-content:space-between;gap:22px;flex-wrap:wrap;margin-top:52px}
.hero-caption{margin:0;color:rgba(255,255,255,.94);font-size:.95rem;font-weight:600;
  display:flex;align-items:center;gap:10px;min-height:1.5em;
  transition:opacity .35s ease;text-shadow:0 1px 12px rgba(0,0,0,.5)}
.hero-caption::before{content:"";width:26px;height:2px;background:var(--green);
  flex:none;border-radius:2px}
.hero-caption.is-fading{opacity:0}
.hero-bg .slide-dots{margin:0}
.hero-bg .slide-dots button{background:rgba(255,255,255,.42);background-clip:content-box}
.hero-bg .slide-dots button:hover{background:rgba(255,255,255,.7);background-clip:content-box}
.hero-bg .slide-dots button.is-active{background:#fff;background-clip:content-box}
.hero-bg .slide-dots button:focus-visible{outline:3px solid #fff;outline-offset:2px}

/* Without a slideshow the hero is the brand gradient it always was. */
.hero-bg:not(.has-slideshow){background-color:#0b5f9b;background-image:var(--grad)}
/* The stage sits over that base. It carries the same dark ground so a slide
   that has not decoded yet fades in from the brand colour, not from white. */
.hero-stage{background:var(--primary-dark)}

@media (max-width:860px){
  .hero-bg{padding:74px 0 64px;min-height:0}
  .hero-bg .hero-copy{max-width:none}
  /* On a phone the photograph is behind a much heavier wash: the text column
     is the full width, so there is no clear side of the picture to put it on. */
  .hero-scrim{background:
    linear-gradient(180deg,
      rgba(8,38,62,.90) 0%,
      rgba(8,38,62,.84) 55%,
      rgba(9,50,80,.88) 100%)}
  .hero-foot{margin-top:34px;gap:14px}
  .hero-caption{font-size:.88rem}
}

@media (prefers-reduced-motion:reduce){
  .hero-slide{transition:none;transform:none}
  .hero-slide.is-active{transform:none}
}
