/* =========================================================
   GateBro.sk — hlavný štýl
   ========================================================= */

:root{
  --ink: #0D0D0D;
  --orange: #F86A08;
  --orange-deep: #C2530A;
  --orange-soft: rgba(248,106,8,.12);
  --green: #16A34A;
  --line: #E6E4DF;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --bg: #FBFAF8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(13,13,13,.08);
  --shadow-lg: 0 20px 50px rgba(13,13,13,.16);
  --maxw: 1200px;
  --header-h: 76px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px);}
body{
  margin:0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
ul{margin:0; padding:0; list-style:none}
h1,h2,h3,h4{line-height:1.15; margin:0 0 .5em; font-weight:800}
p{margin:0 0 1em}
button{font-family:inherit; cursor:pointer}
.container{max-width:var(--maxw); margin:0 auto; padding:0 20px}
section{padding:88px 0}
.section-eyebrow{
  display:inline-block; font-weight:700; font-size:13px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--orange-deep); background:var(--orange-soft);
  padding:6px 14px; border-radius:999px; margin-bottom:16px;
}
.section-head{max-width:680px; margin-bottom:44px}
.section-head h2{font-size:clamp(28px,4vw,40px)}
.section-head p{color:var(--muted); font-size:17px; margin-bottom:0}
.center{text-align:center; margin-left:auto; margin-right:auto}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 28px; border-radius:999px; font-weight:700; font-size:15.5px;
  border:2px solid transparent; transition:.18s ease; white-space:nowrap;
}
.btn-primary{background:var(--orange); color:var(--ink); box-shadow:0 8px 22px rgba(248,106,8,.35);}
.btn-primary:hover{background:var(--orange-deep); transform:translateY(-2px); box-shadow:0 12px 28px rgba(194,83,10,.4);}
.btn-outline{background:transparent; border-color:var(--ink); color:var(--ink);}
.btn-outline:hover{background:var(--ink); color:var(--white);}
.btn-outline-light{background:transparent; border-color:rgba(255,255,255,.4); color:var(--white);}
.btn-outline-light:hover{background:rgba(255,255,255,.12); border-color:var(--white)}
.btn-block{width:100%}
.btn-sm{padding:10px 18px; font-size:14px}

/* =============== HEADER =============== */
.site-header{
  position:sticky; top:0; z-index:60; background:rgba(251,250,248,.92);
  backdrop-filter:blur(10px); border-bottom:1px solid var(--line);
  height:var(--header-h);
}
.site-header .container{
  height:100%; display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{display:flex; align-items:center; gap:10px; flex-shrink:0}
.brand img{height:38px; width:auto}
.main-nav{display:flex; gap:28px; align-items:center}
.main-nav a{font-weight:600; font-size:15px; color:var(--ink); opacity:.85}
.main-nav a:hover{opacity:1; color:var(--orange-deep)}
.header-actions{display:flex; align-items:center; gap:18px}
.phone-link{display:flex; align-items:center; gap:8px; font-weight:700; font-size:15px}
.phone-link svg{width:18px; height:18px; color:var(--orange-deep)}
.nav-toggle{display:none; background:none; border:none; padding:8px}
.nav-toggle span{display:block; width:24px; height:2.5px; background:var(--ink); margin:5px 0; border-radius:2px}

/* =============== HERO =============== */
.hero{
  position:relative; overflow:hidden;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(248,106,8,.16), transparent 60%), var(--ink);
  color:#fff; padding:100px 0 90px;
}
.hero .container{
  display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;
}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px; background:rgba(248,106,8,.14);
  border:1px solid rgba(248,106,8,.35); color:var(--orange);
  padding:7px 16px; border-radius:999px; font-size:13.5px; font-weight:700; margin-bottom:22px;
}
.hero h1{font-size:clamp(34px,5vw,56px); color:#fff}
.hero h1 .accent{color:var(--orange)}
.hero-lead{font-size:18px; color:rgba(255,255,255,.78); max-width:520px}
.hero-cta{display:flex; flex-wrap:wrap; gap:14px; margin:30px 0 26px}
.hero-trust{display:flex; flex-wrap:wrap; gap:22px; font-size:14px; color:rgba(255,255,255,.7)}
.hero-trust li{display:flex; align-items:center; gap:8px}
.hero-trust svg{width:16px; height:16px; color:var(--green); flex-shrink:0}
.hero-visual{
  position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3;
  background:linear-gradient(160deg,#1a1a1a,#0d0d0d);
  border:1px solid rgba(255,255,255,.08); box-shadow:var(--shadow-lg);
}
.hero-visual img{width:100%; height:100%; object-fit:cover; display:block}
.hero-visual::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(13,13,13,0) 45%, rgba(13,13,13,.6) 100%),
    linear-gradient(150deg, rgba(248,106,8,.16), transparent 55%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06);
}

/* =============== PREČO / PROBLÉM-RIEŠENIE =============== */
.why{background:var(--white)}
.compare-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px}
.compare-col h3{
  font-size:14px; text-transform:uppercase; letter-spacing:.06em; color:var(--muted);
  margin-bottom:18px; display:flex; align-items:center; gap:8px;
}
.compare-col.bad h3::before{content:"✕"; color:#D64545; font-weight:800}
.compare-col.good h3::before{content:"✓"; color:var(--green); font-weight:800}
.compare-card{
  background:var(--bg); border:1px solid var(--line); border-radius:var(--radius);
  padding:20px 22px; margin-bottom:14px; font-size:15px;
}
.compare-col.bad .compare-card{color:var(--muted)}
.compare-col.good .compare-card{background:var(--orange-soft); border-color:rgba(248,106,8,.3); font-weight:600}

/* =============== PRODUKTY =============== */
.products{background:var(--bg)}
.product-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px}
.product-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow); display:flex; flex-direction:column;
  transition:.2s ease;
}
.product-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
.product-media{
  aspect-ratio:4/3; background:linear-gradient(135deg,#111,#2a2a2a);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.product-media svg{width:56%; height:56%; color:var(--orange)}
.product-media.has-photo{background:none}
.product-media.has-photo img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s ease}
.product-card:hover .product-media.has-photo img{transform:scale(1.06)}
@media (prefers-reduced-motion: reduce){
  .product-media.has-photo img{transition:none}
  .product-card:hover .product-media.has-photo img{transform:none}
}
.product-body{padding:26px; display:flex; flex-direction:column; gap:10px; flex:1}
.product-body h3{font-size:21px}
.product-body p{color:var(--muted); font-size:14.5px; margin-bottom:6px; flex:1}
.product-tags{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:8px}
.product-tags span{
  font-size:12.5px; font-weight:600; background:var(--orange-soft); color:var(--orange-deep);
  padding:5px 11px; border-radius:999px;
}

/* =============== AKO PRACUJEME =============== */
.process{
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(248,106,8,.06), transparent 60%),
    repeating-linear-gradient(0deg, rgba(17,17,17,.035) 0px, rgba(17,17,17,.035) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(17,17,17,.035) 0px, rgba(17,17,17,.035) 1px, transparent 1px, transparent 40px),
    var(--white);
}
.process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step}
.process-card{position:relative; padding:30px 22px 24px; border:1px solid var(--line); border-radius:var(--radius); background:var(--bg)}
.process-num{
  width:44px; height:44px; border-radius:50%; background:var(--ink); color:var(--orange);
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px;
  margin-bottom:18px;
}
.process-card h3{font-size:17.5px; margin-bottom:8px}
.process-card p{color:var(--muted); font-size:14.5px; margin-bottom:0}

/* =============== GALÉRIA =============== */
.gallery{background:var(--bg)}
.gallery-filter{display:flex; gap:10px; margin-bottom:30px; flex-wrap:wrap}
.chip{
  padding:9px 18px; border-radius:999px; border:1.5px solid var(--line); background:var(--white);
  font-weight:600; font-size:14px; color:var(--muted); transition:.15s;
}
.chip.active,.chip:hover{border-color:var(--orange); color:var(--orange-deep); background:var(--orange-soft)}
.gallery-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px}
.gallery-item{
  aspect-ratio:4/3; border-radius:var(--radius-sm); overflow:hidden; position:relative;
  background:linear-gradient(135deg,#e9e6df,#f6f4f0); border:1px dashed var(--line);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
  color:var(--muted); font-size:13.5px; font-weight:600; text-align:center; padding:16px;
}
.gallery-item svg{width:34px; height:34px; color:var(--orange-deep); opacity:.7}
.gallery-item.has-photo{border-style:solid; border-color:var(--line); padding:0; background:none}
.gallery-item.has-photo img{width:100%; height:100%; object-fit:cover; display:block}
.gallery-item.has-photo{position:relative}
.gallery-badge{
  position:absolute; top:10px; left:10px; z-index:2;
  background:rgba(17,17,17,.72); color:#fff; font-size:11px; font-weight:700;
  letter-spacing:.02em; padding:4px 9px; border-radius:20px; backdrop-filter:blur(2px);
}

/* =============== DÔVERA / PREČO NÁM DÔVERUJÚ =============== */
.trust{background:var(--white)}
.trust-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.trust-card{padding:28px; border-radius:var(--radius); background:var(--bg); border:1px solid var(--line)}
.trust-card svg{width:30px; height:30px; color:var(--orange-deep); margin-bottom:14px}
.trust-card h3{font-size:17px; margin-bottom:6px}
.trust-card p{color:var(--muted); font-size:14.5px; margin-bottom:0}

/* =============== RECENZIE =============== */
.reviews{background:var(--bg)}
.reviews-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px}
.review-card{
  display:flex; flex-direction:column; border-radius:var(--radius);
  overflow:hidden; background:var(--white); border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.review-photo{
  aspect-ratio:16/10; background:linear-gradient(135deg,#111,#2a2a2a);
  display:flex; align-items:center; justify-content:center;
}
.review-photo svg{width:38px; height:38px; color:var(--orange); opacity:.7}
.review-photo.has-photo{background:none}
.review-photo.has-photo img{width:100%; height:100%; object-fit:cover; display:block}
.review-content{padding:22px 22px 24px; display:flex; flex-direction:column; gap:12px}
.review-stars{display:flex; align-items:center; gap:3px}
.review-stars svg{width:15px; height:15px; color:var(--line)}
.review-stars svg.filled{color:var(--orange); fill:var(--orange)}
.review-verified{
  display:inline-flex; align-items:center; gap:4px; margin-left:8px;
  color:var(--muted); font-size:11.5px; font-weight:600;
}
.review-verified svg{width:12px; height:12px; color:#22c55e}
.review-quote{color:var(--muted); font-size:14.5px; line-height:1.55; margin-bottom:0; flex-grow:1}
.review-who{display:flex; align-items:center; gap:12px}
.review-avatar{
  width:38px; height:38px; border-radius:50%; background:var(--bg); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.review-avatar svg{width:18px; height:18px; color:var(--muted)}
.review-name{font-weight:700; font-size:14px}
.review-loc{color:var(--muted); font-size:12.5px}

/* =============== KONTAKTNÝ FORMULÁR / KONFIGURÁTOR =============== */
.contact{background:var(--ink); color:#fff; position:relative; overflow:hidden}
.contact::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(900px 500px at 90% 0%, rgba(248,106,8,.12), transparent 60%);
}
.contact .container{position:relative}
.contact .section-head p{color:rgba(255,255,255,.65)}
.contact .section-head h2{color:#fff}

.form-wrap{
  max-width:720px; margin:0 auto; background:#fff; color:var(--ink);
  border-radius:20px; box-shadow:var(--shadow-lg); overflow:hidden;
}
.form-steps{display:flex; border-bottom:1px solid var(--line)}
.form-steps .fs{
  flex:1; text-align:center; padding:16px 8px; font-size:13px; font-weight:700; color:var(--muted);
  border-bottom:3px solid transparent; position:relative;
}
.form-steps .fs.active{color:var(--orange-deep); border-color:var(--orange)}
.form-steps .fs.done{color:var(--green)}
.form-body{padding:36px}
.step-panel{display:none}
.step-panel.active{display:block}
.step-title{font-size:20px; margin-bottom:6px}
.step-sub{color:var(--muted); font-size:14.5px; margin-bottom:24px}

.option-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:8px}
.option-card{
  border:2px solid var(--line); border-radius:var(--radius-sm); padding:16px 18px;
  cursor:pointer; font-weight:700; font-size:15px; transition:.15s; display:flex; align-items:center; gap:10px;
}
.option-card svg{width:22px; height:22px; color:var(--orange-deep); flex-shrink:0}
.option-card:hover{border-color:var(--orange)}
.option-card.selected{border-color:var(--orange); background:var(--orange-soft)}
.option-card input{display:none}

.form-field{margin-bottom:18px}
.form-field label{display:block; font-weight:700; font-size:14px; margin-bottom:7px}
.form-field .optional{color:var(--muted); font-weight:500}
.form-field input[type=text],
.form-field input[type=tel],
.form-field input[type=email],
.form-field textarea{
  width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  font-size:15px; font-family:inherit; background:var(--bg);
}
.form-field input:focus,.form-field textarea:focus{outline:2px solid var(--orange); outline-offset:1px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px}

.upload-box{
  display:block;
  border:2px dashed var(--line); border-radius:var(--radius-sm); padding:22px; text-align:center;
  cursor:pointer; color:var(--muted); font-size:14px; margin-bottom:14px; transition:.15s;
}
.upload-box:hover{border-color:var(--orange); color:var(--orange-deep)}
.upload-box input{display:none}
.upload-preview{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.upload-preview img{width:64px; height:64px; object-fit:cover; border-radius:8px; border:1px solid var(--line)}

.checkbox-row{display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--muted); margin-bottom:22px}
.checkbox-row input{margin-top:3px}
.checkbox-row a{color:var(--orange-deep); font-weight:600}

.form-actions{display:flex; justify-content:space-between; gap:12px; margin-top:8px}
.honeypot-field{position:absolute; left:-9999px; opacity:0; height:0; width:0}

.form-status{padding:36px; text-align:center; display:none}
.form-status.show{display:block}
.form-status svg{width:56px; height:56px; margin-bottom:16px}
.form-status.success svg{color:var(--green)}
.form-status.error svg{color:#D64545}
.form-status h3{font-size:22px}
.form-status p{color:var(--muted)}
.form-status .lead-number{
  display:inline-block; margin-top:14px; padding:8px 18px; border-radius:999px;
  background:var(--orange-soft); color:var(--orange-deep); font-size:14px;
}
.form-status .lead-number strong{color:var(--ink)}

.contact-alt{
  max-width:720px; margin:26px auto 0; display:flex; justify-content:center; gap:28px;
  flex-wrap:wrap; font-size:14.5px; color:rgba(255,255,255,.75);
}
.contact-alt a{font-weight:700; color:#fff}

/* =============== FAQ =============== */
.faq{background:var(--white)}
.faq-list{max-width:800px}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 4px;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-weight:700; font-size:16.5px; color:var(--ink);
}
.faq-q .plus{
  width:26px; height:26px; border-radius:50%; background:var(--orange-soft); color:var(--orange-deep);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:.2s; font-size:18px;
}
.faq-item.open .plus{transform:rotate(45deg)}
.faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease}
.faq-a p{padding:0 4px 20px; color:var(--muted); font-size:15px; max-width:680px}

/* =============== FOOTER =============== */
.site-footer{background:var(--ink); color:rgba(255,255,255,.7); padding:64px 0 24px}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; margin-bottom:48px}
.footer-brand img{height:36px; margin-bottom:14px}
.footer-brand p{font-size:14.5px; max-width:280px}
.footer-social{display:flex; gap:12px; margin-top:16px}
.footer-social a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; transition:.15s;
}
.footer-social a:hover{background:var(--orange); color:var(--ink)}
.footer-social svg{width:17px; height:17px}
.footer-col h4{color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px}
.footer-col li{margin-bottom:11px; font-size:14.5px}
.footer-col a:hover{color:var(--orange)}
.footer-col.contact li{display:flex; align-items:flex-start; gap:10px}
.footer-col.contact svg{width:16px; height:16px; flex-shrink:0; margin-top:3px; color:var(--orange)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding-top:22px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:13px;
}
.footer-bottom .legal-links{display:flex; gap:18px; flex-wrap:wrap}
.footer-bottom a:hover{color:var(--orange)}

/* =============== STICKY MOBILE CTA =============== */
.sticky-mobile{
  position:fixed; left:0; right:0; bottom:0; z-index:70; display:none;
  background:#fff; border-top:1px solid var(--line); box-shadow:0 -8px 24px rgba(0,0,0,.08);
  padding:10px 14px; gap:10px;
}
.sticky-mobile a{flex:1}
.sticky-call-avatar{width:45px; height:45px; border-radius:50%; object-fit:cover; flex-shrink:0}

/* Floating contact widget */
.float-contact{
  position:fixed; right:22px; bottom:22px; z-index:65;
  display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:8px 18px 8px 8px; box-shadow:var(--shadow-lg); cursor:pointer;
  transition:.2s;
}
.float-contact:hover{transform:translateY(-3px)}
.float-contact.attention{animation:fc-attention 1.4s ease-in-out 3}
@keyframes fc-attention{
  0%,100%{box-shadow:var(--shadow-lg), 0 0 0 0 rgba(248,106,8,.35)}
  50%{box-shadow:var(--shadow-lg), 0 0 0 9px rgba(248,106,8,0)}
}
@media (prefers-reduced-motion: reduce){
  .float-contact.attention{animation:none}
}
.float-avatar{
  width:48px; height:48px; border-radius:50%; object-fit:cover; flex-shrink:0;
}
.float-text{line-height:1.2}
.float-text strong{display:flex; align-items:center; gap:6px; font-size:14px}
.float-text span{font-size:12px; color:var(--muted)}
.online-dot{width:8px; height:8px; border-radius:50%; background:#22c55e; flex-shrink:0; box-shadow:0 0 0 2px rgba(34,197,94,.25)}

/* =============== COOKIE BANNER =============== */
.cookie-banner{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:90; max-width:560px; margin:0 auto;
  background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow-lg);
  padding:22px; display:none;
}
.cookie-banner.show{display:block}
.cookie-banner p{font-size:13.5px; color:var(--muted); margin-bottom:16px}
.cookie-banner .btns{display:flex; gap:10px; flex-wrap:wrap}

/* =============== UTILITY / LEGAL PAGES =============== */
.legal-page{padding:140px 0 90px; max-width:820px; margin:0 auto}
.legal-page h1{font-size:32px; margin-bottom:8px}
.legal-page .updated{color:var(--muted); font-size:14px; margin-bottom:36px}
.legal-page h2{font-size:20px; margin-top:34px}
.legal-page p,.legal-page li{color:#3a3a3a; font-size:15px}
.legal-page ul{list-style:disc; padding-left:22px; margin-bottom:16px}
.legal-page ol{list-style:decimal; padding-left:22px; margin-bottom:16px}
.legal-page ol ul{margin-top:6px}
.legal-page li{margin-bottom:6px}
.legal-page table{width:100%; border-collapse:collapse; margin:16px 0 24px; font-size:14px}
.legal-page th,.legal-page td{border:1px solid var(--line); padding:10px 12px; text-align:left; vertical-align:top; color:#3a3a3a}
.legal-page th{background:var(--bg); font-weight:700}
.legal-page .table-scroll{overflow-x:auto; margin:16px 0 24px}
.legal-page .table-scroll table{margin:0}
.back-home{display:inline-block; margin-bottom:26px; font-weight:700; color:var(--orange-deep)}

.thanks-page{
  min-height:70vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:60px 20px;
}
.thanks-box{max-width:480px}
.thanks-box svg{width:64px; height:64px; color:var(--green); margin:0 auto 20px}
.thanks-box h1{font-size:28px}
.thanks-box p{color:var(--muted)}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px){
  .main-nav{display:none}
  .nav-toggle{display:block}
  .hero .container{grid-template-columns:1fr}
  .hero-visual{max-width:420px; margin:0 auto; order:-1}
  .compare-grid{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr 1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px}
  .sticky-mobile{display:flex}
  body{padding-bottom:74px}
}
@media (max-width: 640px){
  section{padding:64px 0}
  .product-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .reviews-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .option-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column; align-items:flex-start}
  .float-contact .float-text{display:none}
  .float-contact{padding:8px}
  .form-body{padding:24px}
}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background:#fff; z-index:100; display:none;
  flex-direction:column; padding:24px;
}
.mobile-nav.open{display:flex}
.mobile-nav-top{display:flex; justify-content:space-between; align-items:center; margin-bottom:32px}
.mobile-nav a{font-size:20px; font-weight:700; padding:14px 0; border-bottom:1px solid var(--line)}
.mobile-nav .btn{margin-top:24px}
