/* ============================================================
   FLEXVOD — Design DNA Stylesheet
   Cloned from strong4k.fr
   Palette: dark navy #0e0e1c + warm gold #f0c670 accents
   Fonts: Exo 2 + Rubik
   ============================================================ */

/* -- CSS Variables -- */
:root {
  --bg-body: #0e0e1c;
  --bg-nav: rgba(14, 14, 28, 0.95);
  --bg-card: rgba(0, 0, 0, 0.24);
  --bg-card-alt: #12121f;
  --bg-section-alt: #0a0a16;
  --bg-footer: #080812;
  --accent: #f0c670;
  --accent-hover: #ffcc99;
  --accent-warm: #ffbc7d;
  --accent-light: #fed990;
  --green-highlight: #d7ee42;
  --text-primary: #ffffff;
  --text-muted: #7d7d7d;
  --text-body: #c5c5d0;
  --border-color: rgba(240, 198, 112, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --font-heading: 'Exo 2', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --transition: 0.3s ease;
}

/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

/* -- Container -- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
  transition: var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0e0e1c !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); color: #0e0e1c !important; transform: translateY(-1px); }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1rem; padding: 8px 0; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section-alt); }
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}
.accent-text { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(240, 198, 112, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(240, 198, 112, 0.12);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .gold { color: var(--accent); }
.hero-text {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent);
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-img { text-align: center; }
.hero-img img {
  max-height: 500px;
  width: auto;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto 28px; }
  .hero-stats { justify-content: center; }
  .hero-img { order: -1; }
  .hero-img img { max-height: 320px; margin: 0 auto; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: #0e0e1c;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #0e0e1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 198, 112, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #0e0e1c;
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: rgba(240, 198, 112, 0.05);
}
.pricing-card.popular::before {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0e0e1c;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.pricing-duration {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  margin: 8px 0 4px;
}
.pricing-price small {
  font-size: 0.5em;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-screen {
  font-size: 0.85rem;
  color: var(--accent-warm);
  font-weight: 600;
  margin-bottom: 16px;
}
.pricing-features {
  text-align: left;
  margin-bottom: 24px;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--green-highlight);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-color);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  counter-increment: step;
  position: relative;
}
.step-card::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240, 198, 112, 0.12);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  border: 2px solid var(--accent);
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testimonial-stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.testimonial-text {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.testimonial-city {
  color: var(--text-muted);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DEVICES
   ============================================================ */
.devices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
}
.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.device-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.device-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-question::after { content: '-'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 198, 112, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; appearance: auto; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 12px;
}
.form-message--success { background: rgba(215, 238, 66, 0.1); color: var(--green-highlight); border: 1px solid rgba(215, 238, 66, 0.2); }
.form-message--error { background: rgba(220, 53, 69, 0.1); color: #ff6b6b; border: 1px solid rgba(220, 53, 69, 0.2); }
.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 8px;
}
.trust-signal svg { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }
.footer h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-address {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: normal;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(240, 198, 112, 0.08), rgba(14, 14, 28, 0.95));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-checkmarks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.cta-checkmarks li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-body);
  font-size: 0.9rem;
}
.cta-checkmarks li::before {
  content: '\2713';
  color: var(--green-highlight);
  font-weight: 700;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  padding: 120px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(240, 198, 112, 0.04) 0%, transparent 100%);
}
.page-header h1 { margin-bottom: 12px; }
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.page-header .breadcrumb a { color: var(--accent); }

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.content-section {
  padding: 48px 0 80px;
}
.content-section h2 {
  margin: 32px 0 12px;
  font-size: 1.4rem;
}
.content-section h3 {
  margin: 24px 0 8px;
  font-size: 1.15rem;
}
.content-section p {
  margin-bottom: 16px;
  color: var(--text-body);
}
.content-section ul, .content-section ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.content-section li {
  margin-bottom: 8px;
  color: var(--text-body);
  list-style: disc;
}
.content-section ol li { list-style: decimal; }
.content-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.content-section th, .content-section td {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  text-align: left;
  font-size: 0.9rem;
}
.content-section th {
  background: rgba(240, 198, 112, 0.08);
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.content-section a { color: var(--accent); text-decoration: underline; }
.content-section a:hover { color: var(--accent-hover); }
.content-section strong { color: var(--text-primary); }

/* ============================================================
   CHANNEL CATEGORIES
   ============================================================ */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.channel-card .emoji { font-size: 1.6rem; }
.channel-card h3 { font-size: 1rem; margin-bottom: 2px; }
.channel-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ============================================================
   CONTACT/FORMS LAYOUT
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-info h2 { margin-bottom: 12px; }
.form-info p { color: var(--text-muted); margin-bottom: 24px; }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.info-card .icon { font-size: 1.4rem; }
.info-card h4 { font-size: 0.9rem; margin-bottom: 2px; }
.info-card p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) {
  .form-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   TRIAL FORM (inline on index)
   ============================================================ */
.trial-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
}
.trial-form-wrapper h3 { margin-bottom: 4px; }
.trial-form-wrapper .subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
}
.stat-item {
  text-align: center;
}
.stat-item .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-item .label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   STRENGTHS / ICON LIST
   ============================================================ */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.strength-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.strength-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 198, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.strength-item h3 { font-size: 1rem; margin-bottom: 4px; }
.strength-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
@media (max-width: 600px) {
  .strength-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   APP GRID
   ============================================================ */
.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.app-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}
.app-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   SETUP GUIDE
   ============================================================ */
.guide-step {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.guide-step h3 { color: var(--accent); margin-bottom: 8px; }
.guide-step img { border-radius: var(--radius-sm); margin: 16px 0; }

/* ============================================================
   RESELLER
   ============================================================ */
.reseller-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.reseller-benefit {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.reseller-benefit .icon { font-size: 2rem; margin-bottom: 12px; }
.reseller-benefit h3 { margin-bottom: 8px; font-size: 1.05rem; }
.reseller-benefit p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) {
  .reseller-benefits { grid-template-columns: 1fr; }
}

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}
.order-summary h3 { margin-bottom: 16px; }
.order-summary ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-summary ul li::before {
  content: '\2713';
  color: var(--green-highlight);
  font-weight: 700;
}
@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
}
