/* 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:not(:disabled) {
    background: #F0522E;
    color: white;
    border-color: #F0522E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 82, 46, 0.3);
}

.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;
    transition: color 0.3s ease;
}

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

.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;
}

/* ================================================
   Snap&Keep — Voice Activity Design System
   ================================================ */

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

:root {
  /* Voice Activity brand palette */
  --orange-primary: #F0522E;
  --orange-dark: #C45F20;
  --orange-light: #F5A66A;
  --orange-glow: #FDEEE4;
  --charcoal: #1E1E1E;

  /* Extended palette */
  --bg: #FFFFFF;
  --bg-warm: #FFF9F5;
  --bg-section: #FAFAFA;
  --text: #1E1E1E;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #E8E8E8;
  --border-light: #F0F0F0;
  --green: #2D9F5D;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --max-w: 1100px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* -- Scroll reveal -- */
.feature-card,
.step,
.price-card,
.use-case-card,
.screenshot-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.feature-card.visible,
.step.visible,
.price-card.visible,
.use-case-card.visible,
.screenshot-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(2), .screenshot-item:nth-child(2) { transition-delay: 0.06s; }
.feature-card:nth-child(3), .screenshot-item:nth-child(3) { transition-delay: 0.12s; }
.feature-card:nth-child(4), .screenshot-item:nth-child(4) { transition-delay: 0.18s; }
.feature-card:nth-child(5), .screenshot-item:nth-child(5) { transition-delay: 0.24s; }
.feature-card:nth-child(6), .screenshot-item:nth-child(6) { transition-delay: 0.30s; }
.feature-card:nth-child(7) { transition-delay: 0.36s; }
.feature-card:nth-child(8) { transition-delay: 0.42s; }
.feature-card:nth-child(9) { transition-delay: 0.48s; }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-right: 28px;
  margin-bottom: 4px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--orange-primary); }
.btn-nav {
  background: var(--orange-primary);
  color: #FFF !important;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.84rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open {
  max-height: 300px;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:last-child { border: none; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ================================================
   SHARED SECTION STYLES
   ================================================ */
.section-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-primary);
  margin-bottom: 8px;
}
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-desc {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  padding: 140px 28px 80px;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(240,82,46,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-header {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}
.hero-header-icon {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 20px;
  margin-top: 25px;
}
.hero-header-content {
  text-align: left;
  flex: 1;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange-primary);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* App identity card */
.hero-app-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px 10px 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.hero-app-card img { border-radius: 9px; }
.hero-app-info { text-align: left; }
.hero-app-info strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero-app-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Floating pills */
.hero-examples {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-pill:hover {
  border-color: var(--orange-light);
  box-shadow: 0 2px 12px rgba(240,82,46,0.08);
}
.hero-pill strong { color: var(--text); }

/* Phone showcase — 3 fanned screens */
.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 52px;
  position: relative;
  height: 420px;
}
.hero-phones .phone-frame {
  position: absolute;
  width: 200px;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--charcoal);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  background: #000;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-phones .phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.phone-center {
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  width: 220px !important;
  bottom: 0;
}
.phone-left {
  z-index: 2;
  left: 50%;
  transform: translateX(calc(-50% - 170px)) rotate(-6deg);
  bottom: 10px;
  opacity: 0.92;
}
.phone-right {
  z-index: 2;
  left: 50%;
  transform: translateX(calc(-50% + 170px)) rotate(6deg);
  bottom: 10px;
  opacity: 0.92;
}
.hero-phones:hover .phone-left {
  transform: translateX(calc(-50% - 190px)) rotate(-8deg);
}
.hero-phones:hover .phone-right {
  transform: translateX(calc(-50% + 190px)) rotate(8deg);
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-primary);
  color: #FFF;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,82,46,0.2);
}
.btn-primary.btn-lg {
  padding: 16px 32px;
  font-size: 0.96rem;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover {
  background: var(--bg-section);
  border-color: #D0D0D0;
}
.btn-outline {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: #F0522E;
  color: white;
  border-color: #F0522E;
  box-shadow: 0 8px 25px rgba(240, 82, 46, 0.3);
  transform: translateY(-2px);
}

/* Phone Frame (shared) */
.phone-frame {
  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  background: #000;
}
.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works {
  padding: 100px 28px;
  background: var(--bg);
}
.steps {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-primary);
  color: #FFF;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   FEATURES
   ================================================ */
.features {
  padding: 100px 28px;
  background: var(--bg-section);
}
.feature-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.feature-emoji {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   SCREENSHOTS
   ================================================ */
.screenshots {
  padding: 100px 0;
  background: var(--bg);
  overflow: hidden;
}
.screenshots .section-eyebrow,
.screenshots .section-title,
.screenshots .section-desc {
  padding: 0 28px;
}
.screenshots-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(28px, calc((100vw - 1100px) / 2)) 20px;
  scrollbar-width: none;
  cursor: grab;
}
.screenshots-track:active { cursor: grabbing; }
.screenshots-track::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
  width: 180px;
}
.screenshot-item .phone-frame {
  width: 180px;
  border-radius: 24px;
  border-width: 3px;
  margin: 0 auto 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.04);
}
.screenshot-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ================================================
   USE CASES
   ================================================ */
.use-cases {
  padding: 100px 28px;
  background: var(--bg-warm);
}
.use-case-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.use-case-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.use-case-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.use-case-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.use-case-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
  padding: 100px 28px;
  background: var(--bg);
}
.pricing-cards {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.price-card.featured {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 1px var(--orange-primary), 0 8px 30px rgba(240,82,46,0.08);
}
.price-tier {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-primary);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.price-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  padding: 5px 0;
}
.check {
  font-weight: 700;
  color: var(--green);
  font-size: 0.92rem;
}
.check.accent {
  color: var(--orange-primary);
}

/* ================================================
   LANGUAGES
   ================================================ */
.languages {
  padding: 80px 28px;
  background: var(--bg-section);
}
.lang-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.lang-pills span {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition);
}
.lang-pills span:hover {
  border-color: var(--orange-light);
  color: var(--text);
}

/* ================================================
   CTA
   ================================================ */
.cta {
  padding: 80px 28px;
  background: var(--bg-warm);
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.cta p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================================
   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);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero { padding: 120px 20px 60px; }
  .hero-header { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .hero-header-icon { width: 100px; height: 100px; }
  .hero-header-content { text-align: center; }
  .hero-phones { height: 320px; }
  .hero-phones .phone-frame { width: 155px; }
  .phone-center { width: 175px !important; }
  .phone-left { transform: translateX(calc(-50% - 120px)) rotate(-6deg); }
  .phone-right { transform: translateX(calc(-50% + 120px)) rotate(6deg); }
  .hero-phones:hover .phone-left { transform: translateX(calc(-50% - 130px)) rotate(-8deg); }
  .hero-phones:hover .phone-right { transform: translateX(calc(-50% + 130px)) rotate(8deg); }
  .hero-stats { gap: 24px; }
  .hero-examples { gap: 6px; }
  .hero-pill { font-size: 0.76rem; padding: 6px 14px; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 420px) {
  .hero-phones { height: 260px; }
  .hero-phones .phone-frame { width: 130px; }
  .phone-center { width: 150px !important; }
  .phone-left { transform: translateX(calc(-50% - 95px)) rotate(-6deg); }
  .phone-right { transform: translateX(calc(-50% + 95px)) rotate(6deg); }
}