/* ============================================
   Lightstuff — Premium Body Health Tools
   Design system: warm off-white, deep ink navy,
   brand cyan accent, Fraunces display + Inter body
   ============================================ */

:root {
  --ink: #16212e;
  --ink-soft: #3d4a5c;
  --muted: #6b7787;
  --paper: #faf9f6;
  --paper-warm: #f3f0ea;
  --white: #ffffff;
  --cyan: #1799bd;
  --cyan-deep: #0f7c9c;
  --cyan-tint: #e3f3f8;
  --gold: #c9a227;
  --line: #e6e2d9;
  --shadow-sm: 0 1px 3px rgba(22, 33, 46, 0.07), 0 1px 2px rgba(22, 33, 46, 0.05);
  --shadow-md: 0 6px 24px rgba(22, 33, 46, 0.09);
  --shadow-lg: 0 16px 48px rgba(22, 33, 46, 0.14);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cyan-deep); text-decoration: none; }
a:hover { color: var(--cyan); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 780px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 14px;
}

.lead { font-size: 1.17rem; color: var(--ink-soft); }

.section { padding: 88px 0; }
.section--tint { background: var(--paper-warm); }
.section--dark { background: var(--ink); color: #dfe5ec; }
.section--dark h2, .section--dark h3 { color: var(--white); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: #24384e; color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn--amazon {
  background: var(--cyan-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--amazon:hover { background: var(--cyan); color: var(--white); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--paper-warm); color: var(--ink); }

.btn svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.announce {
  background: var(--ink);
  color: #cfe8f1;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
}
.announce strong { color: var(--white); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 10px 15px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--paper-warm); }

.nav-links .nav-cta a {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 22px;
  margin-left: 8px;
}
.nav-links .nav-cta a:hover { background: var(--cyan-deep); }

/* dropdown */
.has-drop > a::after { content: " ▾"; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(2px);
}
.dropdown a { padding: 10px 14px; border-radius: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0 96px;
}
.hero h1 { color: var(--white); margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: #7fd4ec; }
.hero .lead { color: #b8c4d2; max-width: 480px; }
.hero .kicker { color: #7fd4ec; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
  object-fit: cover;
  width: 100%;
}
.hero-card {
  position: absolute;
  bottom: -22px;
  left: -26px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-card .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cyan-tint);
  display: grid;
  place-items: center;
  color: var(--cyan-deep);
  font-size: 1.15rem;
}
.hero-card small { display: block; font-weight: 500; color: var(--muted); }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 26px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  justify-content: center;
}
.trust-item svg { color: var(--cyan-deep); flex-shrink: 0; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.product-card .pc-media {
  background: var(--white);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  position: relative;
}
.product-card .pc-media img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.badge--gold { background: var(--gold); }

.pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pc-body h3 { font-size: 1.16rem; margin-bottom: 6px; }
.pc-body h3 a { color: var(--ink); }
.pc-body h3 a:hover { color: var(--cyan-deep); }
.pc-tag { font-size: 0.87rem; color: var(--muted); margin-bottom: 14px; flex: 1; }
.pc-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pc-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.pc-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pc-link::after { content: "→"; transition: transform 0.15s; }
.pc-link:hover::after { transform: translateX(3px); }

/* ---------- Feature / why section ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.section--dark .why-card { background: #1e2c3d; border-color: #2c3d52; }
.section--dark .why-card p { color: #a9b6c6; }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cyan-tint);
  color: var(--cyan-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.section--dark .why-icon { background: rgba(127, 212, 236, 0.12); color: #7fd4ec; }
.why-card h3 { font-size: 1.13rem; margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media img { border-radius: 20px; box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split h2 { margin-bottom: 18px; }
.split p + p { margin-top: 14px; }
.split .checklist { margin-top: 24px; }

.checklist { list-style: none; }
.checklist li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 13px;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--cyan-tint);
  color: var(--cyan-deep);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- Guarantee strip ---------- */
.guarantee {
  background: linear-gradient(120deg, var(--cyan-deep), var(--cyan));
  color: var(--white);
  border-radius: 22px;
  padding: 54px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.guarantee h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.guarantee p { color: #d9f2f9; max-width: 560px; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card-body { padding: 24px 26px 28px; }
.blog-meta { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--cyan-deep); }
.blog-card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-top: 14px; }
.page-hero .kicker { color: #7fd4ec; margin-bottom: 0; }
.page-hero p { color: #b8c4d2; max-width: 620px; margin: 18px auto 0; font-size: 1.08rem; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan-deep); }

/* ---------- Product detail ---------- */
.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0 40px;
}

.pd-gallery-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  margin-bottom: 16px;
  overflow: hidden;
}
.pd-gallery-main img { max-height: 100%; object-fit: contain; cursor: zoom-in; transition: transform 0.25s; }
.pd-gallery-main img:hover { transform: scale(1.04); }

.pd-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.pd-thumbs button {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  aspect-ratio: 1;
  padding: 6px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s;
}
.pd-thumbs button.active, .pd-thumbs button:hover { border-color: var(--cyan-deep); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-info .kicker { margin-bottom: 8px; }
.pd-info h1 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.pd-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.pd-price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
.pd-price-note { font-size: 0.85rem; color: var(--muted); }
.pd-info .checklist { margin: 26px 0 30px; }
.pd-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.pd-ctas .btn { justify-content: center; }
.pd-smallprint { margin-top: 18px; font-size: 0.85rem; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }
.pd-smallprint span { display: inline-flex; align-items: center; gap: 6px; }

.pd-section { padding: 52px 0; border-top: 1px solid var(--line); }
.pd-section h2 { font-size: 1.7rem; margin-bottom: 22px; }
.pd-section p + p { margin-top: 14px; }
.pd-section .container--narrow > p { color: var(--ink-soft); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; margin-top: 34px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cyan);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 26px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cyan-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.97rem; }
.faq-item .faq-a a { font-weight: 600; }

/* ---------- Instructions hub ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.guide-card h3 { font-size: 1.08rem; }
.guide-card p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.guide-card .pc-link { margin-top: 10px; }
.guide-card.legacy { background: var(--paper-warm); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; padding: 64px 0 88px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--ink-soft); }
.contact-list { list-style: none; margin-top: 30px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-list .why-icon { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 0.95rem; }
.contact-list span, .contact-list a { font-size: 0.92rem; color: var(--muted); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
}
.contact-form .btn { width: 100%; justify-content: center; }

/* ---------- Article ---------- */
.article { padding: 60px 0 80px; }
.article-body h2 { font-size: 1.6rem; margin: 42px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 30px 0 12px; }
.article-body p { margin-bottom: 16px; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: var(--ink-soft); }
.article-body li { margin-bottom: 8px; }
.article-hero-img { border-radius: 18px; box-shadow: var(--shadow-md); margin: 34px 0; width: 100%; object-fit: cover; max-height: 440px; }
.article-cta {
  background: var(--cyan-tint);
  border-radius: 14px;
  padding: 28px 30px;
  margin: 34px 0;
}
.article-cta h3 { margin: 0 0 8px !important; }
.article-cta p { margin-bottom: 14px !important; }

/* ---------- Workout moves ---------- */
.move-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.move-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.move-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.move-num {
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 1.05rem;
}
.move-target { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 14px; }
.move-card ol { margin-left: 20px; color: var(--ink-soft); font-size: 0.95rem; }
.move-card ol li { margin-bottom: 7px; }
.move-tip { margin-top: 14px; font-size: 0.88rem; background: var(--paper-warm); border-radius: 10px; padding: 12px 16px; color: var(--ink-soft); }
.move-tip strong { color: var(--cyan-deep); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--white); text-align: center; padding: 84px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: #b8c4d2; max-width: 540px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.site-footer { background: #101822; color: #93a1b3; font-size: 0.92rem; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 64px 0 48px;
}
.footer-main h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-main ul { list-style: none; }
.footer-main li { margin-bottom: 10px; }
.footer-main a { color: #93a1b3; }
.footer-main a:hover { color: var(--white); }
.footer-brand p { margin-top: 14px; max-width: 300px; }
.footer-brand .brand { color: var(--white); font-size: 1.3rem; }
.footer-bottom {
  border-top: 1px solid #223044;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #1c2a3c;
  display: grid;
  place-items: center;
  color: #b8c4d2;
  transition: background 0.15s;
}
.social-row a:hover { background: var(--cyan-deep); color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .split, .pd-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { padding: 60px 0 72px; gap: 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-item { justify-content: flex-start; }
  .move-grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; padding: 40px 34px; }
  .split-media { order: -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; font-size: 1rem; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    padding-left: 18px;
  }
  .nav-links .nav-cta a { margin: 10px 0 0; text-align: center; }
  .section { padding: 60px 0; }
  .hero-card { left: 12px; bottom: -18px; padding: 12px 16px; }
  .pd-thumbs { grid-template-columns: repeat(5, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}
