/* ===== Omnifix Appliance Care — stylesheet ===== */

:root{
  --navy:#0A2472;
  --navy-deep:#061848;
  --blue:#1454D4;
  --blue-dark:#0F42AA;
  --blue-soft:#EDF3FE;
  --ink:#14181F;
  --muted:#5B6676;
  --line:#E3E8EF;
  --surface:#F6F8FB;
  --white:#fff;
  --ok:#0E7A4A;
  --radius:10px;
  --wrap:1140px;
  --shadow:0 1px 2px rgba(16,24,40,.05), 0 8px 24px rgba(16,24,40,.06);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:3px solid var(--blue);outline-offset:2px;border-radius:4px}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 20px}
.section{padding:64px 0}
.section--tint{background:var(--surface)}
.section--navy{background:var(--navy);color:#fff}

h1,h2,h3,h4{margin:0 0 .5em;line-height:1.2;letter-spacing:-.02em;font-weight:700}
h1{font-size:2.35rem}
h2{font-size:1.75rem}
h3{font-size:1.15rem}
p{margin:0 0 1em}
.lead{font-size:1.1rem;color:var(--muted);max-width:60ch}
.section-head{max-width:64ch;margin-bottom:36px}
.section--navy .lead,.section--navy p{color:#C9D6F5}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 24px;border-radius:var(--radius);font-weight:600;font-size:1rem;
  border:1px solid transparent;cursor:pointer;transition:background .15s ease,border-color .15s ease;
  text-decoration:none;
}
.btn:hover{text-decoration:none}
.btn--primary{background:var(--blue);color:#fff}
.btn--primary:hover{background:var(--blue-dark)}
.btn--ghost{background:#fff;color:var(--navy);border-color:var(--line)}
.btn--ghost:hover{border-color:var(--navy)}
.btn--white{background:#fff;color:var(--navy)}
.btn--block{width:100%}

/* ---------- Top strip ---------- */
.topbar{background:var(--navy-deep);color:#C9D6F5;font-size:.82rem}
.topbar .wrap{display:flex;justify-content:space-between;align-items:center;gap:16px;min-height:38px;flex-wrap:wrap}
.topbar span{white-space:nowrap}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--line)}
.site-header .wrap{display:flex;align-items:center;gap:20px;min-height:76px}
.logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo:hover{text-decoration:none}
.logo img{height:40px;width:auto}
.nav{margin-left:auto;display:flex;align-items:center;gap:26px}
.nav a{color:var(--ink);font-size:.95rem;font-weight:500;text-decoration:none}
.nav a:hover,.nav a[aria-current="page"]{color:var(--blue)}
.nav .btn{margin-left:4px}
.hamburger{display:none;margin-left:auto;background:none;border:1px solid var(--line);border-radius:8px;padding:9px 11px;cursor:pointer}
.hamburger span{display:block;width:20px;height:2px;background:var(--ink);margin:4px 0;border-radius:2px}

/* ---------- Hero ---------- */
.hero{background:linear-gradient(180deg,#F4F8FF 0%,#fff 100%);border-bottom:1px solid var(--line)}
.hero .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;padding-top:56px;padding-bottom:56px;align-items:start}
.hero h1{font-size:2.6rem;max-width:16ch}
.hero .lead{margin-bottom:26px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.hero-points{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.hero-points li{display:flex;gap:10px;align-items:flex-start;font-size:.95rem;color:var(--ink)}
.tick{flex:none;width:20px;height:20px;border-radius:50%;background:var(--blue-soft);color:var(--blue);
  display:grid;place-items:center;font-size:12px;font-weight:700;margin-top:2px}

/* ---------- Form card ---------- */
.formcard{background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);padding:26px}
.formcard h2{font-size:1.3rem;margin-bottom:4px}
.formcard .hint{font-size:.9rem;color:var(--muted);margin-bottom:18px}
.field{margin-bottom:14px}
.field label{display:block;font-size:.88rem;font-weight:600;margin-bottom:6px}
.field input,.field select,.field textarea{
  width:100%;padding:11px 13px;border:1px solid var(--line);border-radius:8px;
  font:inherit;font-size:.95rem;color:var(--ink);background:#fff;
}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--blue);outline:none;box-shadow:0 0 0 3px rgba(20,84,212,.12)}
.field textarea{min-height:82px;resize:vertical}
.field .req{color:#C02626}
.hp{position:absolute;left:-9999px}
.form-note{font-size:.8rem;color:var(--muted);margin:12px 0 0}
.alert{padding:12px 14px;border-radius:8px;font-size:.92rem;margin-bottom:16px}
.alert--ok{background:#E7F6EE;color:var(--ok);border:1px solid #BFE6D2}
.alert--err{background:#FDECEC;color:#B02525;border:1px solid #F5C9C9}

/* ---------- Cards / grids ---------- */
.grid{display:grid;gap:20px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px}
.card h3{margin-bottom:8px}
.card p{color:var(--muted);font-size:.95rem;margin-bottom:12px}
.card a.more{font-weight:600;font-size:.92rem}
.icon{width:44px;height:44px;border-radius:10px;background:var(--blue-soft);display:grid;place-items:center;margin-bottom:14px}
.icon svg{width:24px;height:24px;stroke:var(--navy);fill:none;stroke-width:1.6}

/* ---------- Steps ---------- */
.steps{counter-reset:s;display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.step{position:relative;padding-top:42px}
.step::before{counter-increment:s;content:counter(s);position:absolute;top:0;left:0;
  width:32px;height:32px;border-radius:50%;background:var(--navy);color:#fff;
  display:grid;place-items:center;font-size:.9rem;font-weight:700}
.step h3{font-size:1.02rem}
.step p{color:var(--muted);font-size:.93rem;margin:0}

/* ---------- Lists ---------- */
.checklist{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.checklist li{display:flex;gap:10px;align-items:flex-start;font-size:.97rem}
.pills{display:flex;flex-wrap:wrap;gap:8px;padding:0;margin:0;list-style:none}
.pills li{background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 15px;font-size:.88rem;color:var(--ink)}
.section--navy .pills li{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2);color:#fff}

/* ---------- Content pages ---------- */
.page-head{background:var(--surface);border-bottom:1px solid var(--line);padding:46px 0}
.page-head h1{margin-bottom:6px;font-size:2.1rem}
.page-head p{color:var(--muted);margin:0}
.prose{max-width:74ch}
.prose h2{margin-top:36px;font-size:1.4rem}
.prose h3{margin-top:26px;font-size:1.08rem}
.prose ul,.prose ol{padding-left:20px;margin:0 0 1em}
.prose li{margin-bottom:8px}
.prose table{width:100%;border-collapse:collapse;margin:0 0 1.5em;font-size:.95rem}
.prose th,.prose td{border:1px solid var(--line);padding:11px 14px;text-align:left;vertical-align:top}
.prose th{background:var(--surface);font-weight:600}

/* ---------- Notice box ---------- */
.notice{background:#FFF8E8;border:1px solid #F0DCA8;border-left:4px solid #D99A0B;
  border-radius:8px;padding:18px 20px;font-size:.93rem;color:#5B4708}
.notice strong{color:#3F3105}
.notice p:last-child{margin-bottom:0}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{cursor:pointer;padding:18px 40px 18px 0;font-weight:600;list-style:none;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:8px;top:16px;font-size:1.35rem;color:var(--blue);font-weight:400}
.faq details[open] summary::after{content:"\2013"}
.faq details p{color:var(--muted);margin:0 0 18px;max-width:72ch}

/* ---------- CTA band ---------- */
.band{background:var(--navy);color:#fff;border-radius:14px;padding:38px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.band h2{margin:0;font-size:1.5rem;max-width:26ch}
.band p{margin:6px 0 0;color:#C9D6F5;font-size:.95rem}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy-deep);color:#B9C7E8;font-size:.92rem;padding:54px 0 0;margin-top:0}
.site-footer a{color:#DCE6FB}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:36px;padding-bottom:36px}
.site-footer h4{color:#fff;font-size:.95rem;margin-bottom:14px;font-weight:600}
.site-footer ul{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.footer-phone{display:block;font-size:1.5rem;font-weight:700;color:#fff;letter-spacing:-.01em;margin-bottom:4px}
.footer-phone:hover{color:#fff}
.footer-legal{border-top:1px solid rgba(255,255,255,.12);padding:22px 0 26px;font-size:.84rem;line-height:1.6}
.footer-legal p{margin:0 0 8px}
.footer-bottom{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;font-size:.82rem;color:#8FA2CC}

/* ---------- Sticky call bar ---------- */
.callbar{display:none;position:fixed;left:0;right:0;bottom:0;z-index:60;
  background:var(--navy);border-top:1px solid rgba(255,255,255,.14);padding:10px 14px}
.callbar a{display:flex;align-items:center;justify-content:center;gap:10px;
  background:var(--blue);color:#fff;font-weight:700;font-size:1.02rem;
  padding:13px;border-radius:10px;text-decoration:none}
.callbar a:hover{text-decoration:none}

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero .wrap{grid-template-columns:1fr;gap:36px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:840px){
  .nav{position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);
    flex-direction:column;align-items:stretch;gap:0;padding:8px 20px 18px;display:none;box-shadow:var(--shadow)}
  .nav.open{display:flex}
  .nav a{padding:12px 0;border-bottom:1px solid var(--line)}
  .nav .btn{margin:14px 0 0}
  .hamburger{display:block}
  .site-header .wrap{position:relative;min-height:66px}
  h1,.hero h1{font-size:1.95rem}
  h2{font-size:1.45rem}
  .section{padding:44px 0}
  .band{padding:28px 24px}
  body{padding-bottom:74px}
  .callbar{display:block}
}
@media (max-width:560px){
  .grid-2,.grid-3,.grid-4,.steps,.footer-grid{grid-template-columns:1fr}
  .topbar .wrap{justify-content:center;min-height:34px;font-size:.78rem}
  .hero-cta .btn{width:100%}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none!important;animation:none!important;scroll-behavior:auto!important}
}
