:root {
  --black: #0a0a0a;
  --ink: #121212;
  --muted: #666;
  --line: #e6e6e6;
  --bg: #fff;
  --bg-soft: #f5f5f5;
  --card: #ffffff;
  --accent: #1a1a1a;
  --green: #2e7d32;
  --blue: #4aa3df;
  --font-sans: "Inter", "Nunito Sans", system-ui, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --max: 1180px;
  --radius: 14px;
  --ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.topbar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 12px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}
.header-right { justify-content: flex-end; }
.logo {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1.55rem;
  text-transform: uppercase;
}
.logo img { height: 34px; width: auto; }
.header-left a:hover, .header-right a:hover { opacity: 0.7; }
.locale-control select {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 6px 10px;
  background: #fff;
  font-size: 0.78rem;
  max-width: 140px;
}
html[dir="rtl"] .header-left { justify-content: flex-end; }
html[dir="rtl"] .header-right { justify-content: flex-start; }
html[dir="rtl"] .hero-inner { direction: rtl; }
html[dir="rtl"] .quote-card { margin-inline-start: auto; margin-inline-end: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: #111; color: #fff; }
.btn-dark:hover { background: #000; }
.btn-light { background: #fff; color: #111; border: 1px solid #ddd; }
.btn-block { width: 100%; }

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  background: #1b1714 url("../assets/hero.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 18px;
  width: 100%;
}
.quote-card {
  width: min(480px, 100%);
  max-width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  animation: rise 0.7s ease both;
  overflow: hidden;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5fc;
  color: #1f6f9c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.quote-card h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 10px;
}
.quote-card .lead { color: #444; margin-bottom: 8px; }
.quote-card .trust { color: var(--muted); font-size: 0.86rem; margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  min-width: 0;
}
.field label { font-size: 0.78rem; color: #555; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  outline: none;
  box-sizing: border-box;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #999;
}
.fineprint { font-size: 0.72rem; color: #888; margin-top: 10px; }
.rating-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: #555;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rating-item .label { font-weight: 600; color: #333; min-width: 7.5rem; }
.stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}
.stars i {
  width: 12px;
  height: 12px;
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  background: #ddd;
}
.stars.trustpilot i { background: #2a935a; border-radius: 2px; clip-path: none; }
.stars.trustpilot i.half { background: linear-gradient(90deg, #2a935a 70%, #c1c1c1 70%); }
.stars.google i { background: #f8ad3e; }
.stars.google i.half { background: linear-gradient(90deg, #f8ad3e 70%, #ddd 70%); }
.rating-score { color: #666; }

.sticky-trust {
  background: #f3f3f3;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
.sticky-trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
}
.sticky-trust span { color: var(--green); margin-right: 6px; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 18px;
}
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  text-align: center;
  margin-bottom: 28px;
}
.section .sub {
  text-align: center;
  color: #555;
  max-width: 720px;
  margin: -12px auto 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 22px;
}
.step .num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #111; color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: #555; font-size: 0.92rem; }

.media-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}
.media-card strong { display: block; margin-bottom: 6px; }
.media-card span { color: #666; font-size: 0.9rem; }

.compare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.compare-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}
.compare-card.recommended {
  border-color: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.compare-card h3 { font-size: 1rem; margin-bottom: 10px; }
.compare-card p { font-size: 0.85rem; color: #555; margin-bottom: 6px; }
.pill {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.collection-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: transform var(--ease), box-shadow var(--ease);
}
.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.collection-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #111;
}
.collection-card .body { padding: 14px 14px 16px; }
.collection-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.collection-card p { color: #666; font-size: 0.88rem; margin-bottom: 10px; }
.collection-card .cta {
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
}

.price-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}
.price-toolbar input, .price-toolbar select {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 11px 12px;
  min-width: 200px;
}
.price-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.price-table th { background: #fafafa; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; }
.price-table tr:hover td { background: #fcfcfc; }
.price-table .our { font-weight: 700; color: var(--green); }
.price-table .base { color: #999; text-decoration: line-through; font-size: 0.82rem; }
.note-banner {
  background: #f3faf4;
  border: 1px solid #cfe8d3;
  color: #245c2c;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: #555; margin-top: 8px; font-size: 0.92rem; }

.cta-band {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 56px 18px;
}
.cta-band h2 {
  font-family: var(--font-serif);
  margin-bottom: 12px;
}
.cta-band p { color: #ccc; margin-bottom: 18px; }

.site-footer {
  background: #0f0f0f;
  color: #bbb;
  padding: 42px 18px 24px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 22px;
}
.site-footer h4 { color: #fff; margin-bottom: 10px; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer a { display: block; padding: 4px 0; color: #aaa; font-size: 0.9rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  font-size: 0.78rem;
  color: #777;
}

.page-hero {
  background: #111;
  color: #fff;
  padding: 42px 18px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.page-hero p { color: #ccc; }

.quote-result {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  background: #f3faf4;
  border: 1px solid #cfe8d3;
}
.quote-result.show { display: block; }
.quote-result strong { font-size: 1.35rem; color: #1b5e20; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-left { display: none; }
  .header-right { flex-wrap: wrap; gap: 8px; }
  .locale-control select { max-width: 120px; font-size: 0.72rem; padding: 5px 8px; }
  .steps, .media-row, .compare, .collections, .footer-grid, .sticky-trust-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .steps, .media-row, .compare, .collections, .footer-grid, .sticky-trust-inner {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding: 24px 0; }
  .quote-card { width: 100%; }
}

@media (max-width: 520px) {
  .quote-card .form-row { grid-template-columns: 1fr; }
}
