/* Rich Forever Trading — styles */

:root {
  --bg: #08080c;
  --bg-elevated: #0f0f15;
  --bg-card: #12121a;
  --bg-card-hover: #16161f;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(201, 168, 76, 0.35);
  --text: #e8e6e1;
  --text-muted: #8a8794;
  --text-dim: #5c5966;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --green: #3dd68c;
  --green-dim: rgba(61, 214, 140, 0.12);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px) + 0.75rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.2);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  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(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.logo-sub {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #a8863a 100%);
  color: #0a0a0f;
}

@media (hover: hover) {
  .btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
  }
}

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

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

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

.btn-outline:hover {
  background: var(--gold-dim);
}

.modal-actions-btns .btn-outline {
  color: var(--text);
  border-color: var(--border);
}

.modal-actions-btns .btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(61, 214, 140, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pulse {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-value {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Trust bar */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg-elevated);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.trust-inner .dot { opacity: 0.4; }

/* Sections */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

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

/* Products */
.products {
  background: var(--bg-elevated);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

@media (hover: hover) {
  .product-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
  }
}

.product-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 40%);
}

.product-card.premium {
  grid-column: 1 / -1;
  gap: 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, var(--bg-card) 50%);
  border-color: var(--border-gold);
}

.premium-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.premium-title-block .product-tier {
  margin-bottom: 0.35rem;
}

.premium-header .product-badge {
  position: static;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.premium-body {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 200px);
  gap: 1.5rem;
  align-items: start;
}

.premium-main .product-desc {
  margin-bottom: 1rem;
}

.premium-main .product-desc-secondary {
  margin-bottom: 1rem;
}

.premium-main .product-features {
  margin-bottom: 0;
}

.premium-aside {
  display: flex;
  align-items: flex-start;
}

.product-card.premium .product-return {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0;
  padding: 1rem 1.15rem;
}

.product-card.premium .product-return .return-range {
  font-size: 1.75rem;
  line-height: 1;
}

.product-card.premium .product-footer {
  margin-top: 1.5rem;
}

.section-header-spaced {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

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

.product-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-inline: auto;
}

.product-card.premium {
  margin-bottom: 0;
}

.product-card.coming-soon {
  opacity: 0.72;
}

.product-card.coming-soon:hover {
  transform: none;
  border-color: var(--border);
  background: var(--bg-card);
}

.product-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.25rem 0.65rem;
  background: var(--gold);
  color: #0a0a0f;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.product-badge.soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.price-amount.muted {
  font-size: 1.5rem;
  color: var(--text-dim);
}

.product-tier {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.product-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.product-desc-secondary {
  margin-top: -0.5rem;
  padding: 1rem 1.15rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
}

.product-desc-secondary strong {
  color: var(--gold);
  font-weight: 600;
}

.product-features {
  list-style: none;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

.product-return {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--green-dim);
  border: 1px solid rgba(61, 214, 140, 0.2);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.product-return.highlight {
  background: var(--gold-dim);
  border-color: var(--border-gold);
}

.return-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.return-range {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
}

.product-return.highlight .return-range {
  color: var(--gold);
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.price-amount {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Performance */
.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.perf-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.perf-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.perf-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.perf-metric {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.perf-detail {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.perf-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-it-works {
  background: var(--bg-elevated);
}

/* Request form */
.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.request-info h2 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.request-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.request-contact {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.request-contact a {
  color: var(--gold);
}

.request-contact a:hover {
  text-decoration: underline;
}

.request-contact p + p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.request-approved {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.request-form {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.optional {
  font-weight: 400;
  color: var(--text-dim);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

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

.form-row input.error,
.form-row select.error {
  border-color: #e05555;
}

button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

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

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

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

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

.faq-item p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq {
  background: var(--bg-elevated);
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  overscroll-behavior: contain;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100dvh - 2rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform var(--transition);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content-wide {
  width: min(480px, 100%);
  text-align: left;
}

.modal-content-wide .modal-icon,
.modal-content-wide h3 {
  text-align: center;
}

.modal-lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-steps {
  padding: 1.15rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.modal-steps h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal-steps ol {
  margin: 0;
  padding-left: 1.25rem;
}

.modal-steps li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.modal-actions {
  margin-bottom: 1rem;
}

.modal-actions-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
  text-align: center;
}

.modal-actions-btns {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.modal-content-wide .modal-dismiss {
  width: 100%;
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  touch-action: manipulation;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  background: var(--green-dim);
  border: 1px solid rgba(61, 214, 140, 0.3);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--green);
}

.modal-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.modal-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .product-grid,
  .product-grid-three { grid-template-columns: 1fr; }
  .product-grid-soon { grid-template-columns: 1fr; }
  .product-grid-two { max-width: none; }
  .premium-body { grid-template-columns: 1fr; }
  .product-card.premium .product-return {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .request-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }

  section {
    padding: 3.5rem 0;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    overscroll-behavior: contain;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    min-height: 44px;
  }
  .nav-links .btn { width: 100%; margin-top: 0.5rem; }

  .hero {
    padding: calc(6.5rem + env(safe-area-inset-top, 0px)) 0 3rem;
    min-height: auto;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
  }

  .stat-divider { width: 40px; height: 1px; }

  .trust-inner {
    font-size: 0.75rem;
    gap: 0.35rem 0.65rem;
    line-height: 1.5;
    text-align: center;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header-spaced {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-card.premium {
    padding: 1.25rem 1.5rem;
  }

  .premium-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .premium-title-block {
    flex: 1 1 auto;
    min-width: 0;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .price-amount {
    font-size: 1.65rem;
  }

  .product-footer .btn {
    width: 100%;
  }

  .perf-grid { grid-template-columns: 1fr; }
  .product-footer { flex-direction: column; align-items: stretch; }

  .request-info h2 {
    font-size: 1.85rem;
  }

  .request-form {
    padding: 1.25rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
    padding: 0.85rem 1rem;
    min-height: 44px;
  }

  .form-row textarea {
    min-height: 96px;
  }

  .faq-item summary {
    min-height: 44px;
    padding: 1rem 0;
    font-size: 0.9rem;
    gap: 1rem;
  }

  .modal-content {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius);
  }

  .modal-actions-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-actions-btns .btn {
    width: 100%;
  }

  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner { grid-template-columns: 1fr; }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a {
    display: block;
    min-height: 44px;
    line-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.85rem;
  }

  .premium-header .product-badge {
    width: 100%;
    text-align: center;
  }
}
