/* Voice Activity - Matching main website design */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-logo-ball {
    height: 20px;
    width: 20px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.brand-logo-ball:hover {
    transform: scale(1.1) rotate(10deg);
}

.brand-text {
    color: #2c3e50;
}

.brand-accent {
    color: #F0522E;
}


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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F0522E;
}

.nav-phone {
    background: #F0522E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #d63912;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-accent {
    color: #F0522E;
    display: block;
}

.hero-features {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 82, 46, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #F0522E;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #d63912;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 82, 46, 0.3);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-secondary {
    background: transparent;
    color: #F0522E;
    border: 2px solid #F0522E;
}

.btn-secondary:hover {
    background: #F0522E;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Products Section */
.products {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(240, 82, 46, 0.1);
}

/* Single product card - wider layout */
.product-grid:has(.product-card:only-child) .product-card {
    max-width: 700px;
}

.product-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-badge {
    background: linear-gradient(45deg, #F0522E, #ff6b47);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.product-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.skill-links {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(240, 82, 46, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(240, 82, 46, 0.1);
}

.skill-links h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.amazon-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.amazon-links li {
    padding: 0;
}

.amazon-links a {
    display: block;
    padding: 0.5rem;
    color: #F0522E;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.amazon-links a:hover {
    background: rgba(240, 82, 46, 0.1);
    color: #d63912;
}

.important-note {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    border-left: 4px solid #F0522E;
}

.note-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #856404;
}

.warning-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.important-note p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.product-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #2c3e50;
    font-weight: 500;
}

.product-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #F0522E, #ff6b47);
    border-radius: 15px;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
}

.product-actions {
    text-align: center;
}

.payment-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-note::before {
    content: "🔒";
    font-size: 0.9rem;
}

.refund-policy {
    margin: 0 0 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e4e8;
}

.refund-policy h4 {
    color: #2c3e50;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.refund-policy p {
    color: #666;
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 0;
}

.terms-checkbox {
    margin-bottom: 1.25rem;
    text-align: center;
    padding: 1rem;
    background: rgba(240, 82, 46, 0.03);
    border-radius: 8px;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #F0522E;
    flex-shrink: 0;
}

.terms-checkbox span {
    color: #2c3e50;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Support Section */
.support {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(240, 82, 46, 0.05);
}

.support h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.support p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--charcoal-soft);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #F0522E;
    text-decoration: none;
    font-weight: 500;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.soc-item {
    display: inline-block;
}

.soc-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.soc-item a:hover {
    background: rgba(240, 82, 46, 0.1);
    transform: translateY(-2px);
}

.soc-item svg {
    transition: all 0.3s ease;
}

.soc-item a:hover svg {
    fill: #ff6b47;
}

.footer-copyright {
    color: #F0522E;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        margin: 0 1rem;
    }

    .amazon-links {
        grid-template-columns: 1fr;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states and animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================================
   Sound Stream Landing Page — styles.css
   Orange theme matching voiceactivity.com
   =================================================== */

/* ===== VARIABLES ===== */
:root {
  --orange-primary: #F0522E;
  --orange-dark: #C45F20;
  --orange-light: #F5A66A;
  --orange-glow: #FDEEE4;
  --charcoal: #1E1E1E;
  --charcoal-soft: #2D2D2D;
  --slate: #4A4A4A;
  --gray-text: #6B6B6B;
  --gray-light: #9A9A9A;
  --off-white: #FAFAF8;
  --cream: #FFF8F3;
  --white: #FFFFFF;
  --border: #E8E4DF;
}


/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}


/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  margin-right: 20px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  /* background: var(--orange-primary); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange-primary) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
}


/* ===== HERO ===== */
.hero {
  padding: 140px 24px 80px;
  background: linear-gradient(170deg, var(--white) 0%, var(--cream) 40%, var(--orange-glow) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 114, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #3ECF71;
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 .accent {
  color: var(--orange-primary);
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 114, 42, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--orange-primary);
  background: var(--orange-primary);
  color: var(--white);
}

.btn-white {
  background: white;
  color: var(--orange-primary);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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


/* ===== HERO VISUAL (right side card) ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 440px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  /* background: linear-gradient(135deg, var(--orange-primary), var(--orange-light)); */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero-card-title {
  font-weight: 700;
  font-size: 18px;
}

.hero-card-sub {
  font-size: 13px;
  color: var(--gray-light);
}

.voice-cmd {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.voice-cmd-icon {
  width: 28px;
  height: 28px;
  background: var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice-cmd-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--orange-primary);
}

.voice-cmd strong {
  color: var(--orange-primary);
}


/* ===== STATS BAR ===== */
.stats {
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 4px;
}


/* ===== SHARED SECTION STYLES ===== */
.section {
  padding: 80px 24px;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.7;
}


/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--off-white);
}

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

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--orange-primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.step code {
  font-size: 12px;
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--slate);
}


/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--orange-light);
  box-shadow: 0 4px 20px rgba(232, 114, 42, 0.08);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}


/* ===== SUPPORTED FORMATS ===== */
.formats-section {
  margin-top: 48px;
}

.formats-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.formats-desc {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.formats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.format-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}

.format-badge.supported {
  border-color: var(--orange-light);
  background: var(--orange-glow);
  color: var(--orange-dark);
}

.format-badge.unsupported {
  text-decoration: line-through;
  opacity: 0.5;
}


/* ===== USE CASES ===== */
.use-cases {
  background: var(--charcoal);
  color: var(--white);
}

.use-cases .section-tag {
  color: var(--orange-light);
}

.use-cases .section-desc {
  color: var(--gray-light);
}

.use-cases-title {
  color: white;
}

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

.case-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
}

.case-card-emoji {
  font-size: 28px;
  margin-bottom: 14px;
}

.case-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-card p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.6;
}

.case-card .voice-example {
  margin-top: 12px;
  font-size: 13px;
  color: var(--orange-light);
  font-style: italic;
}


/* ===== ACCESSIBILITY ===== */
.accessibility {
  background: var(--cream);
  border-top: 3px solid var(--orange-primary);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.access-features {
  list-style: none;
}

.access-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.access-features li:last-child {
  border-bottom: none;
}

.access-check {
  width: 24px;
  height: 24px;
  background: var(--orange-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.access-check svg {
  width: 12px;
  height: 12px;
  fill: white;
}

.access-features h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.access-features p {
  font-size: 14px;
  color: var(--gray-text);
}

.access-quote {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--orange-primary);
}

.access-quote blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--slate);
  font-style: italic;
}

.access-quote .quote-source {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-light);
  font-style: normal;
}

.access-quote .quote-stars {
  color: var(--orange-primary);
  font-style: normal;
  margin-bottom: 12px;
  font-size: 18px;
}

.access-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}


/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.review-stars {
  color: var(--orange-primary);
  font-size: 16px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-meta {
  font-size: 12px;
  color: var(--gray-light);
}


/* ===== PRICING ===== */
.pricing {
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.price-card.featured {
  border-color: var(--orange-primary);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--orange-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-period {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
}

.price-features li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
}

.price-features li::before {
  content: '✓';
  color: var(--orange-primary);
  font-weight: 700;
}


/* ===== VOICE COMMANDS TABLE ===== */
.commands-table {
  margin-top: 40px;
  width: 100%;
  border-collapse: collapse;
}

.commands-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}

.commands-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.commands-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
}

.commands-table td:last-child {
  color: var(--gray-text);
}

.commands-table code {
  background: var(--orange-glow);
  color: var(--orange-dark);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 13px;
}


/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 19px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-stores {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.75;
}

.cta-stores a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ===== FAQ ===== */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 700px;
  margin-top: 40px;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--charcoal);
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--orange-primary);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-question.active::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
}


/* ================================================
   FOOTER  — charcoal background
   ================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 40px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFF;
}
.footer-brand img { border-radius: 6px; }
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #F0522E; }
.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeUp 0.6s ease forwards;
}


/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 100%;
  }

  .steps-grid,
  .features-grid,
  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access-content {
    grid-template-columns: 1fr;
  }

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


/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 600px) {
  .hero {
    padding: 110px 16px 60px;
  }

  .section {
    padding: 60px 16px;
  }

  .steps-grid,
  .features-grid,
  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }
}