/* Aureonlink — Modern Landing Page */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f6f3;
  --bg-card: rgba(0, 0, 0, 0.025);
  --bg-card-hover: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(232, 33, 23, 0.35);
  --gold: #e82117;
  --gold-light: #f04438;
  --gold-dark: #b91c1c;
  --text-primary: #1a1a1f;
  --text-secondary: rgba(26, 26, 31, 0.68);
  --text-muted: rgba(26, 26, 31, 0.45);
  --accent-red: #dc2626;
  --accent-blue: #2563eb;
  --accent-purple: #7c3aed;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', var(--font);
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo img {
  height: 40px;
  width: auto;
  max-width: min(210px, 52vw);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav__links a:hover { color: var(--text-primary); background: var(--bg-card); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--ghost {
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-gold);
  background: var(--bg-card);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(232, 33, 23, 0.3);
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232, 33, 23, 0.45);
}

.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }

.btn--outline-gold {
  color: var(--gold-dark);
  border: 1px solid var(--border-gold);
  background: rgba(232, 33, 23, 0.08);
}

.btn--outline-gold:hover {
  background: rgba(232, 33, 23, 0.15);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-spacex.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.5) 62%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

.hero--image .hero__orb {
  display: none;
}

.hero--image .hero__grid {
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 70% 60% at 75% 50%, black 10%, transparent 70%);
}

.hero--image .hero__title {
  color: #ffffff;
}

.hero--image .hero__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.hero--image .hero__badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero--image .hero__stat-value {
  color: #ffffff;
}

.hero--image .hero__stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.hero--image .btn--outline-gold {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.hero--image .btn--outline-gold:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 33, 23, 0.25) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 33, 39, 0.15) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -4s;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -2s;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 33, 23, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ─── Ticker ─── */
.ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.ticker iframe { display: block; width: 100%; border: none; }

/* ─── Products Section ─── */
.products {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.product-card--spacex .product-card__image {
  background: #0a1628;
}

.product-card--spacex .product-card__image img {
  object-fit: contain;
  padding: 12px 16px;
}

.product-card--mining .product-card__image {
  background: #141414;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-card--mining .product-card__image img {
  object-fit: contain;
  padding: 12px 16px;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 36px;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card:hover::before { opacity: 1; }

.product-card--spacex { --card-accent: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.product-card--exchange { --card-accent: linear-gradient(90deg, #e82127, #ff6b6b); }
.product-card--mining { --card-accent: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.product-card--spacex::before { background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.product-card--exchange::before { background: linear-gradient(90deg, #e82127, #ff6b6b); }
.product-card--mining::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

.product-card__icon .icon {
  width: 28px;
  height: 28px;
}

.product-card--spacex .product-card__icon { background: rgba(59, 130, 246, 0.15); color: #2563eb; }
.product-card--exchange .product-card__icon { background: rgba(232, 33, 39, 0.15); color: #e82117; }
.product-card--mining .product-card__icon { background: rgba(232, 33, 23, 0.15); color: var(--gold-dark); }

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  width: fit-content;
}

.product-card--spacex .product-card__tag { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }
.product-card--exchange .product-card__tag { background: rgba(220, 38, 38, 0.1); color: #b91c1c; }
.product-card--mining .product-card__tag { background: rgba(232, 33, 23, 0.12); color: var(--gold-dark); }

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card__desc {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}

.product-card__features {
  list-style: none;
  margin-bottom: 28px;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 6px 0;
}

.product-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}

.product-card__link:hover { gap: 10px; }

/* ─── Feature Sections ─── */
.feature {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.feature--alt { background: var(--bg-secondary); }

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature__grid--reverse .feature__visual { order: 2; }
.feature__grid--reverse .feature__text { order: 1; }

.feature__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.feature--spacex .feature__visual {
  background: #0a1628;
}

.feature--spacex .feature__visual img {
  object-fit: contain;
  padding: 24px;
}

.feature--spacex .feature__visual::after {
  opacity: 0;
}

.feature--mining .feature__visual {
  background: transparent;
  aspect-ratio: auto;
  overflow: visible;
}

.feature__visual--stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature__visual-frame--graphic {
  background: #141414;
  aspect-ratio: 16 / 10;
}

.feature__visual-frame--graphic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  display: block;
}

.feature__visual-frame--facility {
  aspect-ratio: 16 / 9;
}

.feature__visual-frame--facility img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature--mining .feature__visual::after {
  opacity: 0;
}

.feature--exchange .feature__visual::after {
  background: linear-gradient(135deg, rgba(232, 33, 23, 0.18) 0%, transparent 60%);
}

.feature__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 33, 23, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.feature__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.feature--spacex .feature__label { color: #1d4ed8; }
.feature--exchange .feature__label { color: #b91c1c; }
.feature--mining .feature__label { color: var(--gold-dark); }

.feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.feature__text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

.feature__list {
  list-style: none;
  margin: 24px 0 32px;
}

.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─── Stats Bar ─── */
.stats-bar {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-bar__item {
  padding: 20px;
}

.stats-bar__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.stats-bar__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Trust / Awards ─── */
.trust {
  padding: 80px 0;
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0.75;
  filter: grayscale(0.4);
  transition: all var(--transition);
}

.trust__logos:hover { opacity: 1; filter: grayscale(0); }

.trust__logos img { height: 32px; width: auto; object-fit: contain; }

.awards {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.awards img { height: 80px; width: auto; opacity: 0.85; }

/* ─── Testimonials ─── */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonials__rating {
  text-align: right;
}

.testimonials__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.testimonials__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-top: 8px; }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--border-gold); }

.testimonial-card__text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
}

.cta-banner__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(232, 33, 23, 0.1) 0%, rgba(185, 28, 28, 0.06) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 33, 23, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__desc {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ─── Price Widget ─── */
.price-widget {
  padding: 0 0 80px;
}

.price-widget__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--text-primary); }

.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
  background: var(--bg-card);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 0.8rem;
}

.footer__links a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold-light); }

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Mobile Nav ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
  transition: all var(--transition);
}

.mobile-menu a:hover { background: var(--bg-card); color: var(--text-primary); }

.mobile-menu__cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .feature__grid { grid-template-columns: 1fr; gap: 40px; }
  .feature__grid--reverse .feature__visual { order: 0; }
  .feature__grid--reverse .feature__text { order: 0; }
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding-bottom: 60px; min-height: auto; }
  .hero__layout {
    grid-template-columns: 1fr !important;
    min-height: auto;
    gap: 32px;
  }

  .hero__layout--single {
    margin-left: 0;
    max-width: 100%;
  }

  .hero__stats { gap: 24px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__header { flex-direction: column; align-items: flex-start; }
  .testimonials__rating { text-align: left; }
  .cta-banner__inner { padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .awards { flex-direction: column; align-items: center; }
  .steps__grid { grid-template-columns: 1fr !important; }
  .platform__grid { grid-template-columns: 1fr !important; }
  .security__grid { grid-template-columns: 1fr !important; }
  .faq-preview__grid { grid-template-columns: 1fr !important; }
}

/* ─── Hero Two-Column ─── */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-height) - 140px);
}

.hero__layout--single {
  grid-template-columns: 1fr;
  max-width: 580px;
  margin-left: auto;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero__portrait-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(232, 33, 23, 0.08);
  background: #fff;
}

.hero__portrait-wrap::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid rgba(232, 33, 23, 0.25);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
  display: block;
}

.hero__dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero__dashboard-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__dashboard-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #4ade80;
}

.hero__dashboard-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.hero__dashboard-row:last-child { border-bottom: none; }

.hero__dashboard-asset {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__dashboard-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero__dashboard-icon--spacex { background: rgba(59, 130, 246, 0.2); }
.hero__dashboard-icon--tesla { background: rgba(232, 33, 39, 0.2); }
.hero__dashboard-icon--btc { background: rgba(232, 33, 23, 0.2); }

.hero__dashboard-name { font-weight: 600; font-size: 0.9rem; }
.hero__dashboard-type { font-size: 0.75rem; color: var(--text-muted); }

.hero__dashboard-value { text-align: right; }
.hero__dashboard-price { font-weight: 600; font-size: 0.9rem; }
.hero__dashboard-change { font-size: 0.75rem; }
.hero__dashboard-change--up { color: #4ade80; }
.hero__dashboard-change--down { color: #f87171; }

.hero__dashboard-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-card__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── Platform Features ─── */
.platform {
  padding: 100px 0;
}

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

.platform-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.platform-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.testimonials__stars {
  display: inline-flex;
  gap: 4px;
  margin-top: 8px;
}

.platform-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(232, 33, 23, 0.08);
  color: var(--gold);
}

.platform-card__icon .icon {
  width: 24px;
  height: 24px;
}

.platform-card__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.platform-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Security ─── */
.security {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

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

.security-card {
  text-align: center;
  padding: 28px 20px;
}

.security-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(232, 33, 23, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.security-card__icon .icon {
  width: 26px;
  height: 26px;
}

.icon {
  display: block;
  flex-shrink: 0;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-stars__star {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.rating-stars--lg .rating-stars__star {
  width: 18px;
  height: 18px;
}

.testimonial-card__stars {
  margin-bottom: 16px;
}

.security-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.security-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Logo Marquee ─── */
.marquee {
  padding: 40px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__track img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition);
}

.marquee__track img:hover {
  opacity: 1;
  filter: grayscale(0);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FAQ Preview ─── */
.faq-preview {
  padding: 100px 0;
}

.faq-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-item__q:hover { background: var(--bg-card-hover); }

.faq-item__q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform var(--transition);
}

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

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-item__a {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-preview__more { text-align: center; }

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232, 33, 23, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.page-hero__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-body {
  padding: 60px 0 80px;
}

.cta-banner--compact { padding: 40px 0 80px; }
.cta-banner--compact .cta-banner__inner { padding: 48px 32px; }

/* ─── Legacy Content (migrated inner pages) ─── */
.legacy-content { color: var(--text-secondary); }

.legacy-content section {
  width: 100%;
  float: none;
  position: static;
  padding: 40px 0;
  background: transparent !important;
}

.legacy-content .mc {
  width: 100%;
  max-width: 100%;
  float: none;
  position: static;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legacy-content .c-50,
.legacy-content .c-33,
.legacy-content .c-25,
.legacy-content .c-100,
.legacy-content .c-68,
.legacy-content .c-32 {
  float: none;
  position: static;
  width: 100%;
}

@media (min-width: 768px) {
  .legacy-content .c-50 { width: calc(50% - 10px); flex: 1 1 calc(50% - 10px); }
  .legacy-content .c-33 { width: calc(33.333% - 14px); flex: 1 1 calc(33.333% - 14px); }
  .legacy-content .c-25 { width: calc(25% - 15px); flex: 1 1 calc(25% - 15px); }
}

.legacy-content h2,
.legacy-content h3,
.legacy-content h4 {
  color: var(--text-primary);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.legacy-content h2 { font-size: 1.5rem; }
.legacy-content h3 { font-size: 1.25rem; }
.legacy-content h4 { font-size: 1.1rem; color: var(--gold-light); }

.legacy-content p,
.legacy-content li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  float: none;
}

.legacy-content ul { float: none; list-style: none; padding: 0; }
.legacy-content li { display: block; padding: 6px 0; position: static; }
.legacy-content li::before {
  content: '→';
  color: var(--gold);
  margin-right: 8px;
  border: none;
  transform: none;
  position: static;
  width: auto;
  height: auto;
}

.legacy-content .txt-big,
.legacy-content .txt-biger { color: var(--text-primary) !important; }
.legacy-content .txt-orange { color: var(--gold-light) !important; }

.legacy-content .bubble {
  border-radius: var(--radius-lg);
  max-width: 100%;
  margin: 0 auto;
}

.legacy-content .a-c { text-align: center; }

.legacy-content .g-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: none;
  box-shadow: 0 4px 20px rgba(232, 33, 23, 0.25);
  transition: all var(--transition);
}

.legacy-content .g-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232, 33, 23, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.legacy-content .hs-20,
.legacy-content .hs-30,
.legacy-content .hs-40,
.legacy-content .hs-100 { width: 100%; height: 20px; float: none; }
.legacy-content .hs-30 { height: 30px; }
.legacy-content .hs-40 { height: 40px; }
.legacy-content .hs-100 { height: 60px; }
.legacy-content .hs-l {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
  float: none;
}

.legacy-content .hi,
.legacy-content input.hi { display: none; }

.legacy-content .faqs-c {
  width: 100%;
  float: none;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.legacy-content .faqs-c .question {
  display: block;
  padding: 16px 20px 16px 36px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}

.legacy-content .faqs-c .question:hover { background: var(--bg-card-hover); }

.legacy-content .faqs-c .question::before {
  content: '+';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.1rem;
  border: none;
  width: auto;
  height: auto;
}

.legacy-content .faqs-c .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
  float: none;
  width: 100%;
}

.legacy-content .faqs-c input:checked ~ .answer {
  max-height: 600px;
  padding: 0 20px 16px;
}

.legacy-content .faqs-c input:checked + .question::before { content: '−'; }

.legacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.85rem;
}

.legacy-content th,
.legacy-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--text-secondary);
}

.legacy-content th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
}

.legacy-content input,
.legacy-content textarea,
.legacy-content select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.legacy-content input:focus,
.legacy-content textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 33, 23, 0.15);
}

.legacy-content input + .lbl,
.legacy-content textarea + .lbl {
  position: absolute;
  left: 16px;
  top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 1;
}

.legacy-content .c-100 { position: relative; }

.legacy-content input:focus + .lbl,
.legacy-content input:not(:placeholder-shown) + .lbl,
.legacy-content textarea:focus + .lbl,
.legacy-content textarea:not(:placeholder-shown) + .lbl {
  top: -8px;
  left: 12px;
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--bg-primary);
  padding: 0 6px;
}

.legacy-content textarea {
  min-height: 140px;
  resize: vertical;
}

.legacy-content button.g-btn { border: none; cursor: pointer; }

.legacy-content .sec-blur {
  background: var(--bg-card) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 20px 0;
  padding: 40px !important;
}

.legacy-content .line01,
.legacy-content .line02 { display: none; }

.legacy-content picture { display: block; }
.legacy-content img.lazyload,
.legacy-content img { border-radius: var(--radius); }

.legacy-content .pic { border-radius: var(--radius-lg); }
.legacy-content .notice { color: var(--gold-light); }
.legacy-content .hidden { display: none; }
.legacy-content b, .legacy-content strong { color: var(--text-primary); }

/* ─── Mobile & tablet (must be last to override grids above) ─── */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  min-width: 0;
}

img, video, iframe, svg {
  max-width: 100%;
}

.ticker iframe,
.price-widget__frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 36px;
}

.price-widget__frame {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.price-widget__frame iframe {
  min-height: 280px;
}

/* Tablet */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .feature__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature__grid--reverse .feature__visual,
  .feature__grid--reverse .feature__text { order: 0; }

  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .platform__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-preview__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products,
  .how-it-works,
  .platform,
  .security,
  .trust,
  .testimonials,
  .faq-preview,
  .feature {
    padding: 72px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 16px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__logo img {
    height: 32px;
    max-width: min(180px, 48vw);
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }

  .hero.hero--image {
    display: block;
    min-height: auto;
    padding: 0;
    padding-top: var(--nav-height);
    background: #0a0a0a;
  }

  .hero.hero--image .hero__bg {
    position: relative;
    inset: auto;
    height: 40vh;
    min-height: 250px;
    max-height: 340px;
  }

  .hero.hero--image .hero__backdrop {
    background-position: 24% 88%;
    background-size: cover;
  }

  .hero.hero--image .hero__backdrop::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(10, 10, 10, 0.85) 88%, #0a0a0a 100%);
  }

  .hero.hero--image .hero__grid {
    display: none;
  }

  .hero.hero--image > .container {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #0a0a0a;
    padding: 20px 16px 32px;
  }

  .hero.hero--image .hero__layout,
  .hero.hero--image .hero__layout--single {
    min-height: auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero.hero--image .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero.hero--image .hero__subtitle {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero.hero--image .hero__actions {
    margin-bottom: 28px;
  }

  .hero.hero--image .hero__stats {
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .hero__stat-value {
    font-size: 1.5rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .products,
  .how-it-works,
  .platform,
  .security,
  .trust,
  .testimonials,
  .faq-preview,
  .feature,
  .cta-banner {
    padding: 56px 0;
  }

  .product-card {
    padding: 28px 22px;
  }

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

  .security__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-bar {
    padding: 40px 0;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-bar__value {
    font-size: 1.5rem;
  }

  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonials__rating {
    text-align: left;
  }

  .testimonials__score {
    font-size: 2.25rem;
  }

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

  .trust__logos {
    gap: 24px 32px;
    justify-content: center;
  }

  .trust__logos img {
    height: 24px;
  }

  .marquee {
    padding: 28px 0;
  }

  .marquee__track {
    gap: 40px;
  }

  .marquee__track img {
    height: 22px;
  }

  .cta-banner__inner {
    padding: 36px 20px;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer {
    padding: 48px 0 28px;
  }

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

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer__disclaimer {
    font-size: 0.7rem;
    padding: 0 4px;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 36px) 0 40px;
  }

  .page-hero__title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .page-hero__desc {
    font-size: 0.95rem;
  }

  .page-body {
    padding: 40px 0 56px;
  }

  .faq-item__q {
    padding: 16px 40px 16px 16px;
    font-size: 0.9rem;
    line-height: 1.45;
    gap: 12px;
  }

  .faq-item__q::after {
    flex-shrink: 0;
  }

  .feature__visual {
    aspect-ratio: 16 / 10;
  }

  .feature__title {
    font-size: 1.35rem;
  }

  .legacy-content section {
    padding: 28px 0;
  }

  .legacy-content .c-50,
  .legacy-content .c-33,
  .legacy-content .c-25,
  .legacy-content .c-68,
  .legacy-content .c-32 {
    width: 100%;
    flex: 1 1 100%;
  }

  .legacy-content .mc {
    flex-direction: column;
    gap: 24px;
  }

  .legacy-content .go-r {
    order: -1;
  }

  .legacy-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    font-size: 0.8rem;
  }

  .legacy-content .faqs-c .question {
    padding: 14px 16px 14px 32px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .legacy-content .sec-blur {
    padding: 24px 16px !important;
  }

  .mobile-menu.open {
    display: flex;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero__badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .btn--lg {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .product-card__title {
    font-size: 1.2rem;
  }
}

/* Prevent horizontal scroll from animations */
@media (max-width: 768px) {
  .hero__orb--1 {
    width: 320px;
    height: 320px;
    right: -120px;
  }

  .hero__orb--2 {
    width: 280px;
    height: 280px;
    left: -80px;
  }
}
