:root {
  --bg: #f6f7f9;
  --tile: #ffffff;
  --ink: #0b1220;
  --blue: #2454ff;
  --blue-soft: #e7ecff;
  --line: #d9dde4;
  --muted: #5b6472;
  --good: #0f9d58;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: "Archivo", "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 12px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--ink); font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; margin-bottom: 14px;
}
.tag-blue { border-color: var(--blue); color: var(--blue); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--ink); background: var(--ink); color: #fff;
  padding: 15px 26px; font-size: 13.5px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--blue); border-color: var(--blue); }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* Nav */
.nav { border-bottom: 2px solid var(--ink); background: var(--bg); position: sticky; top: 0; z-index: 50; }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-family: "Archivo", sans-serif; font-weight: 900; font-size: 20px; text-decoration: none; color: var(--ink); text-transform: uppercase; }
.brand span { color: var(--blue); }
.nlinks { display: flex; gap: 24px; }
.nlinks a { text-decoration: none; color: var(--ink); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.nlinks a:hover { color: var(--blue); }
@media (max-width: 820px) { .nlinks { display: none; } }

/* Bento hero */
.bento-hero { padding: 26px 0; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(70px, auto);
  gap: 14px;
}
.tile {
  background: var(--tile); border: 2px solid var(--ink); padding: 22px;
  display: flex; flex-direction: column; justify-content: center;
}
.tile-headline { grid-column: span 4; grid-row: span 3; justify-content: flex-end; }
.tile-headline h1 { font-size: clamp(26px, 3.4vw, 40px); }
.tile-headline p { color: var(--muted); font-size: 14.5px; margin: 0; max-width: 460px; }

.tile-photo { grid-column: span 2; grid-row: span 3; padding: 0; align-items: center; background: var(--blue-soft); overflow: hidden; position: relative; }
.tile-photo img { width: 66%; margin: 0 auto; }

.tile-rating { grid-column: span 2; grid-row: span 1; }
.tile-rating .stars { color: var(--blue); letter-spacing: 1px; font-size: 15px; }
.tile-rating b { font-family: "Archivo", sans-serif; font-size: 16px; }
.tile-rating span { color: var(--muted); font-size: 12px; display: block; }

.tile-price { grid-column: span 2; grid-row: span 1; background: var(--ink); color: #fff; }
.tile-price s { color: #9aa3b5; font-size: 13px; margin-right: 8px; }
.tile-price b { font-family: "Archivo", sans-serif; font-size: 22px; }
.tile-price span { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #9aa3b5; margin-top: 4px; }

.tile-cta { grid-column: span 2; grid-row: span 1; padding: 0; }
.tile-cta a { width: 100%; height: 100%; }

@media (max-width: 860px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-headline, .tile-photo, .tile-rating, .tile-price, .tile-cta { grid-column: span 2; }
}

/* Section header */
.shead { padding: 60px 0 0; }
.shead h2 { font-size: clamp(24px, 3vw, 32px); }
.shead p { color: var(--muted); max-width: 560px; font-size: 14.5px; }

/* Grid sections */
.grid-section { padding: 26px 0 60px; }
.tiles-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tiles-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 760px) { .tiles-3, .tiles-2 { grid-template-columns: 1fr; } }

.info-tile { background: var(--tile); border: 2px solid var(--ink); padding: 24px; }
.info-tile .num { font-family: "Archivo", sans-serif; font-size: 13px; color: var(--blue); margin-bottom: 10px; display: block; }
.info-tile h3 { font-size: 16px; text-transform: none; margin-bottom: 6px; }
.info-tile p { font-size: 14px; color: var(--muted); margin: 0; }

/* Quote tile */
.quote-tile { background: var(--blue-soft); border: 2px solid var(--ink); padding: 26px; }
.quote-tile .who { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.quote-tile img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); }
.quote-tile .who b { font-size: 13.5px; display: block; }
.quote-tile .who span { font-size: 11.5px; color: var(--muted); }
.quote-tile p.txt { font-size: 14.5px; margin: 0; }

/* Order */
.order-tile { background: var(--ink); color: #fff; border: 2px solid var(--ink); padding: 40px; max-width: 620px; margin: 0 auto; }
.order-tile .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.2); }
.order-tile .price-row s { color: #9aa3b5; font-size: 15px; }
.order-tile .price-row b { font-family: "Archivo", sans-serif; font-size: 28px; }
.order-tile .price-row span { background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 9px; text-transform: uppercase; }

.f-row { margin-bottom: 15px; }
.f-row label { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 6px; color: #cdd3de; }
.f-row input {
  width: 100%; padding: 13px 14px; border: 2px solid #3a4152; background: #171d2b;
  color: #fff; font-size: 15px; font-family: inherit;
}
.f-row input:focus { outline: none; border-color: var(--blue); }
.f-row .err { color: #ff8a80; font-size: 12px; margin-top: 5px; display: none; }
.f-row.bad input { border-color: #ff8a80; }
.f-row.bad .err { display: block; }
.f-consent { display: flex; gap: 9px; align-items: flex-start; margin: 16px 0 20px; font-size: 12px; color: #9aa3b5; }
.f-consent a { color: #fff; text-decoration: underline; }
.f-consent.bad { color: #ff8a80; }
.f-consent input { margin-top: 3px; }

.order-done { display: none; text-align: center; }
.order-done.show { display: block; }
.order-done .ok { font-size: 30px; color: var(--blue); margin-bottom: 10px; }
.order-form.hide { display: none; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-line { border-top: 2px solid var(--ink); }
.faq-line:last-child { border-bottom: 2px solid var(--ink); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.faq-q .sym { color: var(--blue); font-size: 20px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; }
.faq-line.open .faq-a { max-height: 200px; }
.faq-a p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }

/* Footer */
.foot { border-top: 2px solid var(--ink); padding: 40px 0 24px; font-size: 13px; }
.foot-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 26px; margin-bottom: 26px; }
.foot-cols h4 { font-size: 12.5px; margin: 0 0 10px; }
.foot-cols ul { list-style: none; padding: 0; margin: 0; }
.foot-cols li { margin-bottom: 7px; color: var(--muted); }
.foot-cols a { text-decoration: none; color: var(--muted); }
.foot-cols a:hover { color: var(--blue); }
.foot-legal { border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.foot-bottom { margin-top: 12px; color: var(--muted); font-size: 12px; }
@media (max-width: 820px) { .foot-cols { grid-template-columns: 1fr; } }

/* Legal */
.legal-wrap { padding: 50px 0 80px; max-width: 720px; margin: 0 auto; }
.legal-wrap h1 { font-size: 30px; margin-bottom: 22px; }
.legal-wrap h2 { font-size: 15px; margin: 26px 0 8px; text-transform: uppercase; }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 14.5px; text-transform: none; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--blue); }
