/* 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 {
  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(--orange-dark);
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,82,46,0.2);
}

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

/* ==============================================
   PetAI — styles.css
   Voice Activity brand palette
   ============================================== */

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

  --white: #FFFFFF;
  --off-white: #FFFAF7;
  --gray-50: #FAF8F6;
  --gray-100: #F0EDEA;
  --gray-200: #E0DBD6;
  --gray-400: #A09890;
  --gray-600: #6B6560;
  --gray-800: #3A3632;
  --bg-section: #FAFAFA;
  --border: #E8E8E8;
  --border-light: #F0F0F0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
  --pad: clamp(20px, 5vw, 40px);
  --section-py: clamp(64px, 10vw, 112px);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}


/* ==============================================
   NAVBAR — matches SnapKeep pattern
   ============================================== */
.navbar {
  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);
}

.navbar--scrolled {
  box-shadow: 0 1px 0 var(--gray-100);
}

.nav-inner {
  max-width: var(--container);
  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-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--charcoal);
  z-index: 10;
}

.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
}
.nav-links a:hover { color: var(--orange-primary); }

.nav-cta {
  background: var(--orange-primary) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  font-size: 0.84rem !important;
  transition: background var(--transition), transform var(--transition) !important;
  text-align: center;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  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(--charcoal);
  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 slide-down menu */
.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: 350px;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu a:hover { color: var(--orange-primary); }

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


/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--off-white);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(240,82,46,0.10) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-primary);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-appstore {
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-appstore img { height: 50px; }
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,30,30,0.12); }
.btn-appstore--large img { height: 56px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  background: var(--orange-glow);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-bullets span {
  font-size: 0.88rem;
  color: var(--gray-600);
}
.hero-bullets strong {
  color: var(--charcoal);
}

/* Phone stack */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 480px;
}

.hero-phone {
  position: absolute;
  width: 210px;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(30,30,30,0.14);
}

.hero-phone--center {
  z-index: 3;
  bottom: 0;
}

.hero-phone--left {
  z-index: 2;
  bottom: 24px;
  transform: translateX(-120px) rotate(-6deg);
}

.hero-phone--right {
  z-index: 1;
  bottom: 24px;
  transform: translateX(120px) rotate(6deg);
}


/* ==============================================
   STATS BAR
   ============================================== */
.stats-bar {
  background: var(--charcoal);
  padding: 36px 0;
}

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

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange-primary);
}

.stat span {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Scroll reveal */
.stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat.visible { opacity: 1; transform: translateY(0); }


/* ==============================================
   SECTIONS (shared)
   ============================================== */
.section {
  padding: var(--section-py) 0;
}
.section--alt {
  background: var(--gray-50);
}
.section--dark {
  background: var(--charcoal);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 10px;
}
.section-label--light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-subtitle--light { color: var(--gray-400); }


/* ==============================================
   HOW IT WORKS — Steps
   ============================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);

  /* reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:hover { box-shadow: 0 8px 32px rgba(30,30,30,0.06); }

.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--orange-glow);
  color: var(--orange-primary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}


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

.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);

  /* reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow var(--transition), border-color var(--transition);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(30,30,30,0.06);
  border-color: var(--orange-glow);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}


/* ==============================================
   SCREENSHOTS — Horizontal scroll
   ============================================== */
.screenshots-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-600) var(--charcoal);
}

.screenshots-scroll::-webkit-scrollbar {
  height: 6px;
}
.screenshots-scroll::-webkit-scrollbar-track {
  background: var(--gray-800);
  border-radius: 4px;
}
.screenshots-scroll::-webkit-scrollbar-thumb {
  background: var(--gray-600);
  border-radius: 4px;
}

.screenshots-track {
  display: flex;
  gap: 20px;
  padding: 0 max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  width: max-content;
}

.screenshot-card {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;

  /* reveal */
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.screenshot-card.visible { opacity: 1; transform: translateY(0) scale(1); }

.screenshot-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  margin-bottom: 12px;
}

.screenshot-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}


/* ==============================================
   GUIDES
   ============================================== */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.guide-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 30px;

  /* reveal */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}
.guide-card.visible { opacity: 1; transform: translateY(0); }
.guide-card:hover { box-shadow: 0 8px 32px rgba(30,30,30,0.06); }

.guide-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.guide-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.guide-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--orange-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-accent:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}


/* ==============================================
   FINAL CTA
   ============================================== */
.final-cta {
  background: var(--off-white);
  padding: var(--section-py) 0;
  text-align: center;
  border-top: 1px solid var(--gray-100);
}

.final-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.final-cta-inner p {
  font-size: 1.02rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}


/* ==============================================
   FOOTER — matches SnapKeep style
   ============================================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 28px;
  text-align: center;
}

.footer-copy {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-copy a:hover {
  color: var(--orange-primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--orange-primary);
}


/* ==============================================
   RESPONSIVE
   ============================================== */

/* Tablet */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-bullets { justify-content: center; }

  .hero-phones {
    height: 360px;
    margin-top: 20px;
  }
  .hero-phone { width: 170px; }
  .hero-phone--left { transform: translateX(-100px) rotate(-6deg); }
  .hero-phone--right { transform: translateX(100px) rotate(6deg); }

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

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

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

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

/* Mobile */
@media (max-width: 600px) {
  .hero { padding-top: 120px; padding-bottom: 48px; }
  .hero h1 { font-size: 2rem; }

  .hero-phones { height: 280px; }
  .hero-phone { width: 140px; border-radius: 14px; }
  .hero-phone--left { transform: translateX(-75px) rotate(-6deg); }
  .hero-phone--right { transform: translateX(75px) rotate(6deg); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat strong { font-size: 1.4rem; }

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

  .screenshot-card { width: 180px; }
  .screenshot-card img { border-radius: 12px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-phones { height: 240px; }
  .hero-phone { width: 120px; border-radius: 12px; }
  .hero-phone--left { transform: translateX(-60px) rotate(-5deg); }
  .hero-phone--right { transform: translateX(60px) rotate(5deg); }
}


/* ==============================================
   STAGGERED REVEAL DELAYS
   ============================================== */
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }

.feature-card:nth-child(2) { transition-delay: 0.06s; }
.feature-card:nth-child(3) { transition-delay: 0.12s; }
.feature-card:nth-child(4) { transition-delay: 0.05s; }
.feature-card:nth-child(5) { transition-delay: 0.1s; }
.feature-card:nth-child(6) { transition-delay: 0.15s; }
.feature-card:nth-child(7) { transition-delay: 0.05s; }
.feature-card:nth-child(8) { transition-delay: 0.1s; }
.feature-card:nth-child(9) { transition-delay: 0.15s; }
.feature-card:nth-child(10) { transition-delay: 0.05s; }
.feature-card:nth-child(11) { transition-delay: 0.1s; }
.feature-card:nth-child(12) { transition-delay: 0.15s; }

.stat:nth-child(2) { transition-delay: 0.08s; }
.stat:nth-child(3) { transition-delay: 0.16s; }
.stat:nth-child(4) { transition-delay: 0.24s; }

.guide-card:nth-child(2) { transition-delay: 0.1s; }

.screenshot-card:nth-child(2) { transition-delay: 0.04s; }
.screenshot-card:nth-child(3) { transition-delay: 0.08s; }
.screenshot-card:nth-child(4) { transition-delay: 0.12s; }
.screenshot-card:nth-child(5) { transition-delay: 0.16s; }