/* ============================================
   HELIOR — style.css
   Tmavý luxusný dizajn
   ============================================ */

:root {
  --bg: #0b0a09;
  --bg-2: #12100e;
  --bg-3: #1a1714;
  --card: #161310;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2ede6;
  --muted: #a89f93;
  --accent: #e6482e;
  --accent-2: #f2a03d;
  --gold: #c9a15c;
  --glow: rgba(230, 72, 46, 0.35);
  --radius: 18px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }

h1, h2, h3 { font-weight: 300; letter-spacing: -0.02em; line-height: 1.15; }

h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }

h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; letter-spacing: 0; }

p { color: var(--muted); }

strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.lead { font-size: 1.15rem; max-width: 680px; }

.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }

/* language switcher */
.lang-switch { display: flex; align-items: center; gap: 4px; margin-right: 6px; }
.lang-switch a, .lang-switch span {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; color: var(--muted);
  padding: 4px 7px; border-radius: 6px; transition: color 0.2s, background 0.2s;
}
.lang-switch a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.lang-switch .on { color: var(--accent-2); background: rgba(242,160,61,0.1); }
.lang-switch .sep { padding: 0; color: var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent), #c73015);
  color: #fff;
  box-shadow: 0 8px 32px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 44px var(--glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); }
.btn-sm { padding: 12px 26px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(1000px 600px at 78% 30%, rgba(230, 72, 46, 0.14), transparent 65%),
    radial-gradient(700px 500px at 15% 85%, rgba(242, 160, 61, 0.07), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero .lead { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-points { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-points div { font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.hero-points i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
  flex-shrink: 0;
}
.hero-visual { position: relative; }
.hero-visual img {
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 120px rgba(230, 72, 46, 0.12);
}
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(11, 10, 9, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.85rem;
}
.hero-badge b { color: var(--accent-2); font-weight: 700; }
.hero-graphic {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 120px rgba(230, 72, 46, 0.1);
  border: 1px solid var(--line);
}
.hero-graphic svg { display: block; width: 100%; height: auto; }

/* ---------- Philosophy (one model) ---------- */
.philosophy { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.philosophy blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 300;
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto 26px;
  color: var(--text);
}
.philosophy blockquote em { font-style: normal; color: var(--accent-2); font-weight: 500; }

/* ---------- Problem / Solution ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.panel-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.panel-card.problem { border-top: 3px solid #6b6157; }
.panel-card.solution { border-top: 3px solid var(--accent); }
.panel-card .tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.problem .tag { color: #8d8378; }
.solution .tag { color: var(--accent-2); }
.panel-card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 14px; }

/* ---------- Features ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 72px;
}
.feature-row:first-of-type { margin-top: 56px; }
.feature-row img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.feature-row.rev .feature-img { order: 2; }
.feature-txt h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 16px; }
.feature-txt p + p { margin-top: 14px; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  padding: 10px 0 10px 34px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px dashed var(--line);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 17px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent-2), var(--accent));
  box-shadow: 0 0 12px var(--glow);
}
.checklist b { color: var(--text); }

/* ---------- Safety box ---------- */
.safety {
  margin-top: 26px;
  background: rgba(230, 72, 46, 0.07);
  border: 1px solid rgba(230, 72, 46, 0.3);
  border-radius: 14px;
  padding: 22px 26px;
  font-size: 0.94rem;
}
.safety b { color: var(--accent-2); }

/* ---------- Wavelengths ---------- */
.waves { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.wave {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s, border-color 0.25s;
}
.wave:hover { transform: translateY(-5px); border-color: rgba(230, 72, 46, 0.4); }
.wave .nm { font-size: 1.5rem; font-weight: 300; margin-bottom: 4px; }
.wave .nm b { font-weight: 700; }
.wave .band {
  width: 46px; height: 4px; border-radius: 4px; margin: 14px 0 16px;
}
.wave p { font-size: 0.9rem; }

/* ---------- Specs ---------- */
.specs-wrap { overflow-x: auto; margin-top: 48px; }
table.specs {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.specs th, table.specs td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
table.specs tr:last-child td { border-bottom: 0; }
table.specs th { color: var(--muted); font-weight: 600; width: 38%; }
table.specs td { color: var(--text); }

.irradiance { margin-top: 34px; }
.irradiance table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.irradiance th, .irradiance td {
  padding: 12px 16px; text-align: center;
  border: 1px solid var(--line);
}
.irradiance th { background: var(--bg-3); color: var(--muted); font-weight: 600; }
.irradiance td { color: var(--text); }
.note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* ---------- Package ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.pkg {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pkg i {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.gallery img { transition: transform 0.4s; aspect-ratio: 1; object-fit: cover; }
.gallery figure:hover img { transform: scale(1.04); }

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(230, 72, 46, 0.35); }
.review-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--bg-3); }
.review-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.review-stars { color: var(--accent-2); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-quote { color: var(--text); font-size: 1rem; line-height: 1.6; font-weight: 300; flex-grow: 1; }
.review-quote::before { content: '“'; color: var(--accent); font-size: 1.4rem; font-weight: 700; margin-right: 2px; }
.review-author { margin-top: 18px; font-size: 0.9rem; }
.review-author b { color: var(--text); font-weight: 700; }
.review-author span { color: var(--muted); }
.review-verified { display: inline-block; margin-top: 6px; font-size: 0.74rem; color: var(--gold); letter-spacing: 0.04em; }

@media (max-width: 960px) { .review-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* ---------- Order / Configurator ---------- */
.order { background: var(--bg-2); border-top: 1px solid var(--line); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; align-items: start; }

.config, .order-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.config h3, .order-form h3 { font-size: 1.15rem; margin-bottom: 22px; }

.opt-group { margin-bottom: 28px; }
.opt-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block; }

.color-opts { display: flex; gap: 12px; }
.color-opt {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg-3);
  color: var(--text);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.color-opt .swatch { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); }
.swatch.white { background: #f4f1ec; }
.swatch.black { background: #1c1a18; }
.color-opt.active { border-color: var(--accent); background: rgba(230, 72, 46, 0.08); }

.qty-row { display: flex; align-items: center; gap: 16px; }
.qty {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
}
.qty button {
  width: 44px; height: 44px;
  background: none; border: 0;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}
.qty button:hover { background: rgba(255,255,255,0.06); }
.qty input {
  width: 52px; height: 44px;
  background: none; border: 0;
  color: var(--text);
  text-align: center;
  font-size: 1rem; font-weight: 700;
  font-family: var(--font);
}
.qty input:focus { outline: none; }

.addon {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg-3);
}
.addon-head { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.addon-head label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-weight: 600; font-size: 0.98rem; }
.addon-head input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--accent); cursor: pointer; }
.addon-price { color: var(--accent-2); font-weight: 700; font-size: 0.95rem; }
.addon-body { display: none; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line); }
.addon.open .addon-body { display: block; }
.addon-note { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

.summary { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 22px; }
.sum-row { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 6px 0; color: var(--muted); }
.sum-row span:last-child { color: var(--text); font-weight: 600; }
.sum-row.total { font-size: 1.25rem; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--line); color: var(--text); }
.sum-row.total span:last-child { color: var(--accent-2); font-weight: 800; }
.sum-row.deposit span:last-child { color: var(--accent-2); }
.deposit-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(242, 160, 61, 0.06);
  border: 1px solid rgba(242, 160, 61, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
}
.deposit-note b { color: var(--accent-2); }

/* form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.97rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 84px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0; font-size: 0.85rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.consent a { color: var(--accent-2); }
.order-form .btn { width: 100%; text-align: center; }
.form-msg { margin-top: 14px; font-size: 0.9rem; color: var(--accent-2); display: none; }
.cap-field label { color: var(--accent-2); }
.eml-link { color: var(--accent-2); text-decoration: none; }
.eml-link:hover { text-decoration: underline; }
.eml { color: var(--muted); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 52px auto 0; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-2);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 26px 24px; color: var(--muted); font-size: 0.96rem; }
.faq-item.open .faq-a { display: block; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: var(--bg-2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
footer h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
footer p, footer a { color: var(--muted); font-size: 0.92rem; text-decoration: none; }
footer a:hover { color: var(--text); }
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: var(--muted);
}

/* ---------- Blog listing ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.blog-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(230, 72, 46, 0.4); }
.blog-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}
.blog-card h3 { color: var(--text); font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.blog-card p { font-size: 0.94rem; flex-grow: 1; }
.blog-more { color: var(--accent-2); font-weight: 700; font-size: 0.9rem; margin-top: 18px; }

/* ---------- Article ---------- */
.article { padding: 150px 0 80px; }
.article-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }
.article-head .blog-cat { display: inline-block; }
.article-head h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 300; line-height: 1.15; margin-bottom: 20px; }
.article-head .art-meta { color: var(--muted); font-size: 0.88rem; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.06rem; line-height: 1.8; margin-bottom: 22px; color: #cfc7bb; }
.article-body h2 { font-size: 1.7rem; font-weight: 400; margin: 48px 0 18px; color: var(--text); }
.article-body h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; }
.article-body ul { margin: 0 0 24px; padding-left: 4px; list-style: none; }
.article-body ul li { position: relative; padding: 8px 0 8px 30px; color: #cfc7bb; line-height: 1.7; }
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--accent-2), var(--accent));
}
.article-body strong { color: var(--text); }
.article-body .lead { font-size: 1.2rem; color: var(--text); line-height: 1.65; margin-bottom: 32px; }
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 26px;
  margin: 36px 0;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}
.art-note {
  margin-top: 44px;
  background: rgba(242, 160, 61, 0.06);
  border: 1px solid rgba(242, 160, 61, 0.22);
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--muted);
}
.art-cta {
  margin-top: 56px;
  text-align: center;
  padding: 48px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.art-cta h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 14px; }
.art-cta p { margin-bottom: 24px; }
.related { max-width: 760px; margin: 64px auto 0; }
.related h4 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.related-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.related-links a {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px; text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 0.96rem; transition: border-color 0.2s;
}
.related-links a:hover { border-color: rgba(230, 72, 46, 0.4); }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */
.legal { padding: 160px 0 90px; max-width: 860px; margin: 0 auto; }
.legal h1 { font-size: 2.4rem; margin-bottom: 36px; font-weight: 300; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 14px; font-weight: 600; }
.legal p, .legal li { color: var(--muted); font-size: 0.98rem; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }

/* ---------- Thank you ---------- */
.thanks {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(800px 500px at 50% 20%, rgba(230, 72, 46, 0.12), transparent 65%),
    var(--bg);
  padding: 40px 24px;
}
.thanks h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 300; margin-bottom: 20px; }
.thanks p { max-width: 560px; margin: 0 auto 14px; }
.thanks .btn { margin-top: 28px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 72px 0; }
  .hero-grid, .order-grid, .feature-row, .split { grid-template-columns: 1fr; }
  .feature-row.rev .feature-img { order: 0; }
  .waves { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11, 10, 9, 0.97);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .waves, .pkg-grid, .gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .config, .order-form { padding: 26px 20px; }
}
