/* ============================================================
   HSN Design — Premium Stylesheet v2
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #fffaf3;
  --bg-deep: #1a0f08;
  --ink: #1a0f08;
  --ink-soft: #6b5a4d;
  --ink-mute: #9a8a7d;
  --brand: #F58220;
  --brand-accent: #F58220;
  --brand-light: #ffb472;
  --brand-deep: #c25e10;
  --brand-2: #ff6b00;
  --brand-glow: rgba(245, 130, 32, 0.30);
  --border: #f1e6d8;
  --border-soft: #faf1e4;
  --shadow-sm: 0 2px 8px rgba(26, 15, 8, 0.04);
  --shadow: 0 8px 28px rgba(245, 130, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(245, 130, 32, 0.18);
  --shadow-xl: 0 30px 80px rgba(245, 130, 32, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: var(--brand-accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* ---------- Decorative background ---------- */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.blob-1 { top: -150px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, #ffb472, transparent 70%); }
.blob-2 { top: 30%; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, #ff6b00, transparent 70%); opacity: 0.25; }
.blob-3 { bottom: -200px; left: 30%; width: 700px; height: 700px; background: radial-gradient(circle, #F58220, transparent 70%); opacity: 0.20; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.025em; line-height: 1.15; margin: 0; }

.grad-text {
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 42px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.brand-design {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: #0b2545;
  letter-spacing: -0.025em;
  line-height: 1;
  position: relative;
  top: 1px;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-wrap .brand-logo {
  height: 38px;
  margin-bottom: 0;
}
.footer-design {
  color: #ffffff;
  font-size: 1.3rem;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}
.lang-btn:hover { border-color: var(--brand-accent); color: var(--brand-accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: var(--font);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 22px rgba(245, 130, 32, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(245, 130, 32, 0.50); filter: brightness(1.05); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--brand-accent); color: var(--brand-accent); }

.btn-white {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.btn-white:hover { box-shadow: 0 18px 44px rgba(0,0,0,0.25); }

.btn-buy {
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  width: 100%;
  margin-top: 14px;
  padding: 13px 20px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(245, 130, 32, 0.30);
}
.btn-buy:hover { box-shadow: 0 14px 32px rgba(245, 130, 32, 0.50); filter: brightness(1.05); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.035em;
}
.hero h1 span { display: block; }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 130, 32, 0.10);
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 130, 32, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 480px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-accent);
}
.stat p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 4px 0 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 480px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-soft);
  animation: floaty 6s ease-in-out infinite;
}
.float-card.card-a { top: 20px; left: 0; width: 240px; }
.float-card.card-b { top: 200px; right: 0; width: 220px; animation-delay: -2s; }
.float-card.card-c { bottom: 30px; left: 50px; width: 240px; animation-delay: -4s; }

.float-thumb {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd9b3, #ff9a4d);
  flex-shrink: 0;
}
.float-thumb.thumb-b { background: linear-gradient(135deg, #ffb472, #ff6b00); }
.float-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-meta strong { display: block; font-size: 0.92rem; color: var(--ink); margin-bottom: 2px; font-family: var(--font-display); }
.float-meta small { color: var(--ink-soft); font-size: 0.82rem; }

.float-orb {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-2));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(0px);
  opacity: 0.20;
  z-index: -1;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.trust-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin: 0 auto 60px; max-width: 660px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0 0 14px;
  font-weight: 800;
}
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }

.eyebrow-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.12), rgba(255, 107, 0, 0.08));
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 130, 32, 0.2);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.step-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--brand-light);
  opacity: 0.5;
  letter-spacing: -0.05em;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.12), rgba(255, 107, 0, 0.06));
  color: var(--brand-accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.25rem; margin: 0 0 10px; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-light);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
}

.product-thumb {
  aspect-ratio: 4/3;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff0e0, #ffb472);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  text-shadow: 0 4px 14px rgba(194, 94, 16, 0.4);
  position: relative;
  overflow: hidden;
}
.product-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), transparent 60%);
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: rgba(245, 130, 32, 0.10);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.product-card h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 700; }
.product-card .product-desc { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 14px; flex-grow: 1; line-height: 1.55; }

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.9rem; }
.rating-count { color: var(--ink-mute); font-size: 0.82rem; }

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.price-tag { color: var(--ink); font-weight: 800; font-size: 1.3rem; font-family: var(--font-display); }
.price-old { color: var(--ink-mute); text-decoration: line-through; font-size: 0.95rem; font-weight: 500; margin-left: 8px; }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-accent), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-light); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.3);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.why-card p { color: var(--ink-soft); margin: 0; font-size: 0.92rem; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.review-quote { color: var(--ink); margin: 0 0 22px; font-size: 0.98rem; line-height: 1.65; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
}
.review-meta strong { display: block; font-size: 0.92rem; color: var(--ink); }
.review-meta span { color: var(--ink-mute); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq details[open] { box-shadow: var(--shadow); border-color: var(--brand-light); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brand-accent);
  transition: transform 0.25s ease;
  font-weight: 300;
  width: 24px; height: 24px; line-height: 1;
  display: grid; place-items: center;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--ink-soft); margin: 14px 0 0; font-size: 0.95rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(255,255,255,0.18), transparent 70%),
    radial-gradient(600px 300px at 10% 30%, rgba(255,255,255,0.10), transparent 70%);
}
.cta-inner {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 12px;
  color: #fff;
}
.cta-inner p { font-size: 1.1rem; margin: 0 0 28px; opacity: 0.92; }

/* ---------- Contact ---------- */
.contact-wrap { max-width: 720px; margin: 0 auto; }
.contact-form {
  display: grid;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.15);
}
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.form-status { font-size: 0.9rem; color: var(--ink-soft); min-height: 1.2em; margin: 4px 0 0; text-align: center; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-logo {
  height: 38px;
}
.footer-brand p { font-size: 0.92rem; max-width: 280px; margin: 0 0 22px; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: grid; place-items: center;
  transition: all 0.2s ease;
}
.socials a:hover { background: var(--brand-accent); transform: translateY(-2px); }

.site-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.site-footer ul a:hover { color: var(--brand-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom p { margin: 0; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 400px; max-width: 460px; margin: 0 auto; }
  .hero-stats { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 30px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat strong { font-size: 1.6rem; }
  .stat span { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .brand-logo { height: 34px; }
  .hero h1 span.grad-text { display: inline; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
