/* Vello — premium wrist monitor landing (ZA) */
:root {
  --white: #fafbfc;
  --matte-white: #f5f6f8;
  --ice: #e8eaef;
  --silver: #c4c8d0;
  --graphite: #3d424c;
  --black: #0a0b0d;
  --blue-accent: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 24px 80px rgba(10, 11, 13, 0.08);
  --shadow-card: 0 8px 32px rgba(10, 11, 13, 0.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  animation: pageIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
  .device-float,
  .device-standalone,
  .product-glow,
  .showcase-tilt {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

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

a:hover {
  color: var(--blue-accent);
}

/* Top ad strip */
.ad-strip {
  background: linear-gradient(90deg, var(--graphite) 0%, #2a2e36 100%);
  color: var(--ice);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  position: relative;
  z-index: 1001;
}

.ad-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-ad {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ice);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(10, 11, 13, 0.06);
}

.header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--ice) 0%, var(--silver) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--graphite);
  opacity: 0.85;
  transition: opacity var(--transition);
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow var(--transition);
  text-decoration: none;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10, 11, 13, 0.2);
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-links--checkout {
  display: flex;
}

@media (max-width: 900px) {
  .nav-links--checkout {
    display: none;
  }
  .nav-links--checkout.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--ice);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .nav-links:not(.nav-links--checkout) {
    display: none;
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--ice);
    gap: 16px;
  }
  .mobile-menu-btn {
    display: block;
  }
  .header-inner {
    flex-wrap: wrap;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--black);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(10, 11, 13, 0.18);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--ice);
}

.btn--outline:hover {
  border-color: var(--graphite);
  color: var(--black);
}

.hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, #0e0f12 0%, #1a1d24 35%, #f0f2f5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--blue-glow), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
  }
  .hero-copy .btn-group {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 20px;
}

.hero-copy .sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  margin: 0 0 28px;
}

@media (max-width: 960px) {
  .hero-copy .sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge-sale {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge-ad-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 420px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .hero-disclaimer {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Product visual cluster */
.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  perspective: 1200px;
}

.product-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.device-float {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatY 8s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotateX(8deg) rotateY(-12deg);
  }
  50% {
    transform: translateY(-12px) rotateX(4deg) rotateY(-8deg);
  }
}

.wrist-mock {
  position: absolute;
  width: 72%;
  left: 8%;
  bottom: 8%;
  z-index: 1;
}

.device-standalone {
  position: absolute;
  width: 42%;
  right: 6%;
  top: 18%;
  z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.35));
  animation: floatY2 7s ease-in-out infinite 0.5s;
}

@keyframes floatY2 {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-8px) rotate(-4deg);
  }
}

.reflect-line {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.5;
}

/* Section shell */
.section {
  padding: 100px 24px;
}

.section--tight {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  margin: 0 0 12px;
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--graphite);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

/* Highlights grid */
.highlights {
  background: var(--matte-white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--ice);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.highlight-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--ice), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--graphite);
}

.highlight-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--black);
}

.highlight-card p {
  margin: 0;
  font-size: 14px;
  color: var(--graphite);
  opacity: 0.8;
  line-height: 1.55;
}

/* Showcase */
.showcase {
  background: var(--black);
  color: var(--ice);
  position: relative;
  overflow: hidden;
}

.showcase .section-title {
  color: #fff;
}

.showcase .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.showcase-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1f2329 0%, #121418 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 280px;
  position: relative;
}

.showcase-cell--wide {
  grid-column: span 7;
}

.showcase-cell--tall {
  grid-column: span 5;
  min-height: 420px;
}

.showcase-cell--half {
  grid-column: span 6;
  min-height: 300px;
}

@media (max-width: 900px) {
  .showcase-cell--wide,
  .showcase-cell--tall,
  .showcase-cell--half {
    grid-column: span 12;
    min-height: 260px;
  }
}

.showcase-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.showcase-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.parallax-el {
  will-change: transform;
  transition: transform 0.1s linear;
}

.showcase-tilt {
  animation: showcaseTilt 16s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes showcaseTilt {
  0%,
  100% {
    transform: perspective(900px) rotateY(-10deg) rotateX(4deg);
  }
  50% {
    transform: perspective(900px) rotateY(10deg) rotateX(-2deg);
  }
}

/* Product photography (external assets) */
.hero-photo-cluster {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  min-height: 380px;
}

.hero-photo-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-photo-float {
  position: absolute;
  width: 42%;
  max-width: 220px;
  right: -4%;
  bottom: -6%;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
  aspect-ratio: 1;
}

@media (max-width: 960px) {
  .hero-photo-float {
    right: 0;
    bottom: -8%;
    width: 38%;
  }
}

.showcase-photo {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  padding: 16px;
  display: block;
}

.showcase-cell--wide .showcase-photo {
  min-height: 260px;
  object-fit: cover;
  padding: 0;
  border-radius: var(--radius-lg);
}

.showcase-cell--tall .showcase-photo {
  min-height: 400px;
  object-fit: cover;
  padding: 0;
  border-radius: var(--radius-lg);
}

.showcase-cell--half .showcase-photo {
  min-height: 260px;
  object-fit: cover;
  padding: 0;
  border-radius: var(--radius-lg);
}

.showcase-tilt.showcase-photo {
  animation: showcaseTilt 16s ease-in-out infinite;
}

.checkout-product-img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Routine */
.routine {
  background: #fff;
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.routine-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ice);
  background: var(--matte-white);
}

.routine-step .time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 8px;
}

.routine-step h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--black);
}

.routine-step p {
  margin: 0;
  font-size: 14px;
  color: var(--graphite);
  opacity: 0.85;
}

/* How to use */
.how-use {
  background: linear-gradient(180deg, var(--matte-white) 0%, #fff 100%);
}

.steps-list {
  max-width: 640px;
  margin: 0 auto;
  counter-reset: step;
}

.steps-list li {
  list-style: none;
  position: relative;
  padding-left: 56px;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--graphite);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why format */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-item {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--ice);
  background: #fff;
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.why-item p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

/* SA section */
.sa-section {
  background: var(--matte-white);
}

.sa-price-note {
  text-align: center;
  font-size: 15px;
  margin-bottom: 32px;
}

.sa-price-note strong {
  color: var(--black);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.delivery-card {
  background: #fff;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.delivery-card:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-card);
}

.sa-notes {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px;
  color: var(--graphite);
  opacity: 0.9;
}

/* Reviews */
.reviews {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--matte-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--ice);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--silver));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--graphite);
}

.review-meta strong {
  display: block;
  font-size: 15px;
  color: var(--black);
}

.review-meta span {
  font-size: 12px;
  color: var(--graphite);
  opacity: 0.65;
}

.review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
}

.stars {
  color: #eab308;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Offer band */
.offer-band {
  background: linear-gradient(165deg, #0a0b0d 0%, #1e2228 50%, #0f1114 100%);
  color: #fff;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.offer-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, var(--blue-glow), transparent 50%);
  pointer-events: none;
}

.offer-band .section-inner {
  position: relative;
  z-index: 1;
}

.offer-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.offer-band .offer-sub {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 32px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  min-width: 80px;
}

.countdown-unit span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.countdown-unit small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.offer-legal {
  font-size: 12px;
  opacity: 0.55;
  max-width: 520px;
  margin: 28px auto 0;
  line-height: 1.6;
}

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

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--ice);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-a {
  max-height: 480px;
}

.faq-a-inner {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--graphite);
  opacity: 0.9;
  line-height: 1.65;
}

.faq-a a {
  color: var(--blue-accent);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 24px 32px;
  font-size: 13px;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-contact {
  margin: 0;
  max-width: 340px;
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.65;
  font-size: 13px;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact__tagline {
  font-size: 12px;
  opacity: 0.78;
  margin-bottom: 14px !important;
}

.footer-contact__hours {
  font-size: 12px;
  opacity: 0.62;
  margin-top: 2px !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal / inner pages */
.page-hero {
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, var(--matte-white) 0%, #fff 100%);
  border-bottom: 1px solid var(--ice);
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}

.page-hero p {
  max-width: 800px;
  margin: 12px auto 0;
  font-size: 14px;
  color: var(--graphite);
  opacity: 0.8;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h2 {
  font-size: 1.125rem;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--black);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite);
}

.legal-content ul {
  padding-left: 20px;
}

/* Contact form */
.contact-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-box {
  font-size: 14px;
  line-height: 1.8;
}

.contact-info-box strong {
  display: block;
  margin-top: 20px;
  color: var(--black);
}

.contact-info-box strong:first-child {
  margin-top: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--graphite);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--graphite);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkout */
.checkout-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.checkout-card {
  background: #fff;
  border: 1px solid var(--ice);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}

.checkout-card h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--graphite);
}

.checkout-product {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.checkout-product-visual {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--ice), var(--matte-white));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-summary-sticky {
  position: sticky;
  top: 100px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.price-row--total {
  font-size: 18px;
  font-weight: 700;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--ice);
}

.price-was {
  text-decoration: line-through;
  opacity: 0.55;
}

.price-now {
  color: var(--blue-accent);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.qty-row input[type="number"] {
  width: 72px;
  padding: 10px;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.shipping-options label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
}

.shipping-options input {
  margin-top: 3px;
}

.payment-placeholder {
  border: 2px dashed var(--ice);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--graphite);
  opacity: 0.85;
  background: var(--matte-white);
}

.checkbox-legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  margin: 20px 0;
}

.checkbox-legal input {
  margin-top: 3px;
}

.order-confirmation {
  display: none;
  text-align: center;
  padding: 60px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.order-confirmation.is-visible {
  display: block;
}

.order-confirmation h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.checkout-form-hidden {
  display: block;
}

.checkout-form-hidden.is-hidden {
  display: none;
}

.legal-inline {
  font-size: 12px;
  line-height: 1.6;
  color: var(--graphite);
  opacity: 0.85;
  margin-bottom: 16px;
}
