/* ============================================
   PG Golf — Premium brand site
   ============================================ */

:root {
  /* PG Golf brand — sky blue + fairway green (from product packaging) */
  --forest: #0f4c8a;
  --forest-deep: #0a355f;
  --forest-mid: #1860a8;
  --forest-soft: #2a7bc8;
  --cream: #f2f6fa;
  --cream-soft: #f6f9fc;
  --ivory: #ffffff;
  --gold: #6b8f2e;
  --gold-bright: #8ab03a;
  --gold-dim: rgba(107, 143, 46, 0.18);
  --ink: #0f1a24;
  --muted: #5a6b7a;
  --line: rgba(15, 76, 138, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(10, 53, 95, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 40px);
  background: rgba(250, 247, 240, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 247, 240, 0.92);
  box-shadow: 0 8px 30px rgba(10, 53, 95, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 24px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-mid), var(--forest));
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(15, 76, 138, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(15, 76, 138, 0.36);
  background: linear-gradient(135deg, var(--forest-soft), var(--forest-mid));
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(15, 76, 138, 0.18);
}

.btn-ghost:hover {
  background: rgba(15, 76, 138, 0.04);
  border-color: rgba(15, 76, 138, 0.3);
}

.btn-nav {
  background: var(--forest);
  color: var(--ivory);
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: var(--forest-mid);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(107, 143, 46, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(24, 96, 168, 0.1), transparent 50%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(107, 143, 46, 0.25);
  top: 10%;
  right: 5%;
}

.hero-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(24, 96, 168, 0.2);
  bottom: 10%;
  left: -5%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 138, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 138, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-soft);
  background: rgba(24, 96, 168, 0.08);
  border: 1px solid rgba(24, 96, 168, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--gold-dim); }
  50% { box-shadow: 0 0 0 7px rgba(107, 143, 46, 0.08); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 4.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 22px;
}

.hero h1 em,
.section-head h2 em,
.cta h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34ch;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 520px;
  margin-inline: auto;
}

.stage-glow {
  position: absolute;
  inset: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(232, 240, 248, 0.45) 45%, transparent 70%);
  border-radius: 50%;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: 88%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: var(--white);
  object-fit: contain;
  animation: float 7s ease-in-out infinite;
}

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

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(10, 53, 95, 0.12);
}

.float-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--forest);
  font-weight: 600;
}

.float-card span:not(.stars):not(.badge-icon) {
  font-size: 0.75rem;
  color: var(--muted);
}

.float-rating {
  bottom: 12%;
  left: -4%;
}

.float-badge {
  top: 14%;
  right: -2%;
}

.float-card .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--forest-soft), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--forest);
  color: rgba(255, 253, 248, 0.88);
  padding: 22px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head.center,
.section-head:has(+ .feature-grid),
.reviews .section-head,
.how .section-head {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label.light {
  color: var(--gold-bright);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--forest);
  letter-spacing: -0.015em;
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

.reviews .section-sub,
.how .section-sub {
  margin-inline: auto;
}

/* ---------- Product ---------- */
.product {
  background: var(--ivory);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #f0f5fa, #e2eaf2);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.4s ease;
}

.gallery-main:hover img {
  transform: scale(1.04);
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #e8eef5;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border-color: var(--forest);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.15;
}

.product-variant {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

.price {
  text-align: right;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.bullets li {
  display: flex;
  gap: 14px;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--forest-mid);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullets strong {
  display: block;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 2px;
}

.bullets p {
  color: var(--muted);
  font-size: 0.92rem;
}

.size-note {
  background: rgba(107, 143, 46, 0.1);
  border: 1px solid rgba(107, 143, 46, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.size-note strong {
  color: var(--forest);
}

.amazon-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Features ---------- */
.features {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(107, 143, 46, 0.08), transparent),
    var(--cream-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 53, 95, 0.08);
  border-color: rgba(107, 143, 46, 0.35);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ---------- Story ---------- */
.story {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0;
}

.story-inner {
  max-width: 780px;
  text-align: center;
}

.story blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--ivory);
}

.story footer {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(232, 240, 248, 0.65);
  letter-spacing: 0.04em;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--ivory);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.review-card p {
  color: var(--muted);
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-card footer {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.85;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

/* ---------- How ---------- */
.how {
  background: var(--cream-soft);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
}

.step {
  text-align: center;
  padding: 12px;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(15, 76, 138, 0.2);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 28ch;
  margin-inline: auto;
}

.step-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 40px;
  width: 40px;
  justify-self: center;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.faq-layout .section-head {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

details {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
  transition: border-color 0.2s;
}

details[open] {
  border-color: rgba(107, 143, 46, 0.4);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  padding: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 60ch;
}

/* ---------- CTA ---------- */
.cta {
  padding-top: 40px;
  padding-bottom: clamp(72px, 10vw, 100px);
  background: var(--cream-soft);
}

.cta-card {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(107, 143, 46, 0.18), transparent 50%),
    linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  border-radius: 28px;
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--cream);
  box-shadow: 0 30px 80px rgba(10, 53, 95, 0.25);
}

.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 12px;
}

.cta-copy p:last-child {
  color: rgba(232, 240, 248, 0.72);
  max-width: 40ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta .btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--forest-deep);
  box-shadow: 0 12px 32px rgba(107, 143, 46, 0.3);
}

.cta .btn-primary:hover {
  background: linear-gradient(135deg, #a0c44a, var(--gold-bright));
}

.cta-fine {
  font-size: 0.8rem;
  color: rgba(232, 240, 248, 0.55);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(232, 240, 248, 0.7);
  padding: 56px 0 36px;
}

.footer-inner {
  display: grid;
  gap: 36px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-text {
  color: var(--ivory);
}

.footer-brand p {
  max-width: 36ch;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232, 240, 248, 0.75);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-legal {
  opacity: 0.65;
  max-width: 48ch;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.15s;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .float-rating {
    left: 0;
  }

  .float-badge {
    right: 0;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-line {
    display: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout .section-head {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    justify-content: center;
  }

  .trust-item {
    flex: 1 1 40%;
    justify-content: center;
  }

  .price-row {
    flex-direction: column;
  }

  .price {
    text-align: left;
  }

  .cta-actions {
    width: 100%;
  }

  .cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-product,
  .dot,
  .scroll-line {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
