:root{
  --bg:#faf7f2;
  --paper:#ffffff;
  --ink:#1b1d21;
  --muted:#5b5f6a;
  --line:#e8e1d6;
  --accent:#c23b22;
  --accent2:#2b6cb0;
  --accent3:#0f766e;
  --shadow: 0 18px 40px rgba(20,20,20,.08);
  --radius:22px;
  --radius2:14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:
    radial-gradient(900px 520px at 12% 6%, rgba(194,59,34,.10), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(43,108,176,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), #ffffff);
}

a{color:inherit}
.container{max-width:1160px; margin:0 auto; padding:0 18px;}
.notice{
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
}
.noticeRow{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0;
  color:var(--muted);
  font-size:13px;
}
.noticeRow b{color:var(--ink)}
.noticePills{display:flex; gap:8px; flex-wrap:wrap}
.noticePills span{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
}

.header{
  position:sticky; top:0; z-index:30;
  background: rgba(250,247,242,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.emblem{
  width:40px; height:40px; border-radius:16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(194,59,34,.95), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(43,108,176,.95), transparent 55%),
    #fff;
  border:1px solid var(--line);
  box-shadow: 0 12px 24px rgba(194,59,34,.10);
}
.brand strong{letter-spacing:.2px; display:block;}
.brand small{display:block; color:var(--muted); margin-top:2px}

.navlinks{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.navlinks a{
  text-decoration:none;
  color:var(--muted);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.2s ease;
}
.navlinks a:hover{
  border-color:var(--line);
  background:#fff;
  color:var(--ink);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  cursor:pointer;
  transition:.2s ease;
  box-shadow: 0 12px 24px rgba(20,20,20,.06);
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #e05a33);
  color:#fff;
  box-shadow: 0 14px 28px rgba(194,59,34,.18);
}
.btn.secondary{
  border-color: rgba(43,108,176,.25);
  background: rgba(43,108,176,.08);
  color: var(--accent2);
  box-shadow:none;
}

.hero{padding:34px 0 18px;}
.heroGrid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){ .heroGrid{grid-template-columns:1fr} }

.card{
  background: var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroCopy{padding:22px; position:relative; overflow:hidden}
.heroCopy:after{
  content:"";
  position:absolute; inset:auto -120px -140px auto;
  width:380px; height:380px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(15,118,110,.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(43,108,176,.18), transparent 60%);
  transform: rotate(-18deg);
}
.kicker{
  position:relative;
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  color:var(--muted);
  width:fit-content;
}
.spark{
  width:10px; height:10px; border-radius:999px; background: var(--accent3);
  box-shadow: 0 0 0 7px rgba(15,118,110,.12);
}
.h1{
  position:relative;
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.8px;
}
@media (max-width:520px){ .h1{font-size:34px} }
.lead{
  position:relative;
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.7;
  font-size:15.5px;
}
.heroActions{position:relative; display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.metrics{
  margin-top:16px;
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
}
@media (max-width:680px){ .metrics{grid-template-columns:1fr} }
.metric{
  border:1px solid var(--line);
  border-radius: 18px;
  padding:12px;
  background: rgba(250,247,242,.6);
}
.metric b{display:block; font-size:14px}
.metric span{display:block; color:var(--muted); font-size:12.5px; line-height:1.5; margin-top:4px}

.heroSide{padding:18px}
.heroSide h3{margin:0 0 8px; font-size:16px}
.heroSide p{margin:0 0 12px; color:var(--muted); line-height:1.6; font-size:13.5px}
.disclaimer{
  border:1px dashed rgba(194,59,34,.35);
  background: rgba(194,59,34,.06);
  padding:12px;
  border-radius:18px;
  color:var(--muted);
  line-height:1.55;
  font-size:13px;
}
.contactTiles{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:520px){ .contactTiles{grid-template-columns:1fr} }
.tile{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background:#fff;
}
.tile small{display:block; color:var(--muted); margin-bottom:6px}
.tile div{font-weight:800}

.section{padding:26px 0;}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-bottom:12px;
}
.sectionHead h2{margin:0; font-size:22px; letter-spacing:-.2px}
.sectionHead p{margin:0; color:var(--muted); line-height:1.6; max-width:660px}

.products{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.prod{
  grid-column: span 4;
  padding:16px;
  border-radius: var(--radius);
}
@media (max-width: 980px){ .prod{grid-column: span 6;} }
@media (max-width: 640px){ .prod{grid-column: span 12;} }

.prodTop{
  display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
}
.label{
  font-size:12px;
  font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(15,118,110,.08);
  color: var(--accent3);
}
.size{
  color:var(--muted);
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
}
.prod h3{margin:12px 0 6px; font-size:16px}
.prod p{margin:0; color:var(--muted); line-height:1.6; font-size:13.5px}
.prodBottom{
  margin-top:14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.price{
  font-weight:900;
  font-size:18px;
  letter-spacing:.2px;
}
.pick{
  display:inline-flex; align-items:center; gap:8px;
}
.pick button{
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
}
.pick button:hover{background: rgba(27,29,33,.03)}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 980px){ .steps{grid-template-columns:1fr} }
.step{padding:16px}
.stepNum{
  width:32px; height:32px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(43,108,176,.10);
  border:1px solid rgba(43,108,176,.22);
  color: var(--accent2);
  font-weight:900;
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color:var(--muted); line-height:1.65; font-size:13.5px}

.faq{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 980px){ .faq{grid-template-columns:1fr} }
details{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.65}

.orderGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:stretch;
}
@media (max-width: 980px){ .orderGrid{grid-template-columns:1fr} }
.formCard{padding:18px}
.formCard h3{margin:0 0 6px}
.formCard p{margin:0 0 14px; color:var(--muted); line-height:1.6}
form{display:grid; gap:10px}
.field{display:grid; gap:6px}
label{font-size:12px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
  color:var(--ink);
}
textarea{min-height:92px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(194,59,34,.35);
  box-shadow: 0 0 0 4px rgba(194,59,34,.10);
}
.row2{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
@media (max-width:520px){ .row2{grid-template-columns:1fr} }
.note{font-size:12px; color:var(--muted); line-height:1.55;}

.companyCard{padding:18px}
.companyCard h3{margin:0 0 10px}
.kv{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  background: rgba(250,247,242,.7);
}
.k{color:var(--muted); font-size:12px}
.v{font-weight:900; margin-top:4px}
.sep{height:1px; background:var(--line); margin:10px 0}

.footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footerGrid{
  padding:18px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
@media (max-width:980px){ .footerGrid{grid-template-columns:1fr} }
.footer small{color:var(--muted); line-height:1.6}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--ink)}
.flinks{display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
@media (max-width:980px){ .flinks{justify-content:flex-start} }

.page{padding:34px 0}
.page h1{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
.page p,.page li{color:var(--muted); line-height:1.75}
.page .card{padding:18px}
