/* ============================================
   InspectDesk Design System
   ============================================ */

:root {
    --color-primary: #4A6FA5;
    --color-primary-hover: #3D5F8F;
    --color-primary-light: rgba(74, 111, 165, 0.06);
    --color-primary-medium: rgba(74, 111, 165, 0.12);

    --color-status-green: #5E7F3E;
    --color-status-red: #C74032;
    --color-status-orange: #E67E22;

    --color-page-bg: #F7F4ED;
    --color-card-bg: #FFFDFB;
    --color-subtle-bg: #FFFDFF;

    --color-card-border: #E8E4DB;
    --color-divider: #E5E0D6;

    --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.07);

    --color-text-primary: #1a1a1a;
    --color-text-secondary: #6b6560;
    --color-text-tertiary: #9a948e;

    --radius-card: 12px;
    --radius-lg: 14px;
    --radius-sm: 10px;
    --radius-pill: 100px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-page-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h2 { font-size: 40px; margin-bottom: 12px; letter-spacing: -0.3px; }
h3 { font-size: 18px; margin-bottom: 8px; }

p {
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--color-primary); }

/* ============================================
   Header
   ============================================ */

header {
    border-bottom: 1px solid var(--color-card-border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 253, 251, 0.88);
}

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

.logo a {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text-primary);
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 4px;
    border: 1px solid #E8E4DB;
}

.nav-desktop {
    display: flex;
    gap: 28px;
}

.nav-desktop a {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--color-primary);
    color: white !important;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-primary-hover);
    color: white !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile dropdown */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 24px 20px;
    border-bottom: 1px solid var(--color-card-border);
    background: var(--color-card-bg);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-divider);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu-cta {
    margin-top: 14px;
    padding: 12px 20px !important;
    background: var(--color-primary);
    color: white !important;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    border-bottom: none !important;
}

/* ============================================
   Product Hero
   ============================================ */

.product-hero {
    padding: 64px 0 72px;
}

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

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-medium);
    border-radius: var(--radius-pill);
    color: var(--color-primary);
}

.badge-green {
    background: rgba(94, 127, 62, 0.08);
    border-color: rgba(94, 127, 62, 0.2);
    color: var(--color-status-green);
}

.product-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.12;
    max-width: 520px;
}

.product-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
}

.product-cta { display: flex; gap: 12px; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    color: white;
    box-shadow: 0 2px 8px rgba(74, 111, 165, 0.25);
}

/* ============================================
   Phone Demo
   ============================================ */

.product-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-demo {
    position: relative;
    width: 280px;
    /* Aspect ratio matches 726:1448 */
    aspect-ratio: 726 / 1448;
    overflow: hidden;
    border-radius: 4px;
}

.phone-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.phone-screen.active {
    opacity: 1;
    pointer-events: auto;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

@keyframes screenIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(6px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hotspot */
.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hotspot-ping {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(74, 111, 165, 0.25);
    animation: hotspotPulse 2s ease-in-out infinite;
}

.hotspot-ping::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(74, 111, 165, 0.4);
}

@keyframes hotspotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.4;
    }
}

/* Replay overlay */
.replay-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
    border-radius: 4px;
}

.replay-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.replay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.replay-btn:hover {
    background: white;
}

/* Demo tab bar */
.demo-tabs {
    display: flex;
    gap: 4px;
    margin-top: 16px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 4px;
    box-shadow: var(--shadow-card);
}

.demo-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 18px;
    background: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-text-tertiary);
    transition: all 0.2s ease;
    font-size: 0;
}

.demo-tab span {
    font-size: 10px;
    font-weight: 600;
}

.demo-tab:hover {
    color: var(--color-text-secondary);
    background: var(--color-primary-light);
}

.demo-tab.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
}

/* ============================================
   Section Header (shared)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============================================
   Features
   ============================================ */

.features {
    padding: 80px 0;
    background: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

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

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

.feature-card:hover {
    border-color: rgba(74, 111, 165, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-medium);
}

.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: 13px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }

/* ============================================
   How It Works
   ============================================ */

.how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 48px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-connector {
    width: 48px;
    height: 1px;
    background: var(--color-divider);
    margin-top: 24px;
    flex-shrink: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(74, 111, 165, 0.2);
}

.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 13px; line-height: 1.6; color: var(--color-text-secondary); max-width: 240px; margin: 0 auto; }

/* ============================================
   Pricing
   ============================================ */

.pricing {
    padding: 80px 0;
    background: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.pricing-card {
    padding: 28px;
    background: var(--color-subtle-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow-card);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background: rgba(94, 127, 62, 0.1);
    border: 1px solid rgba(94, 127, 62, 0.2);
    border-radius: var(--radius-pill);
    color: var(--color-status-green);
    margin-bottom: 20px;
}

.pricing-details { flex: 1; }
.pricing-details h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-subtitle { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 20px; }

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-divider);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { color: var(--color-status-green); flex-shrink: 0; }
.pricing-card .btn-primary { width: 100%; justify-content: center; margin-top: auto; }

/* Lifetime card — gradient hero */
.pricing-card-lifetime {
    background: linear-gradient(140deg, var(--color-primary) 0%, #2E4160 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(74, 111, 165, 0.18);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.pricing-lifetime-deco,
.pricing-lifetime-deco-sm {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.pricing-lifetime-deco {
    width: 120px; height: 120px;
    top: -40px; right: -40px;
}
.pricing-lifetime-deco-sm {
    width: 70px; height: 70px;
    bottom: -20px; right: 50px;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-lifetime-inner {
    position: relative;
    z-index: 1;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-badge-lifetime {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-lifetime .pricing-details h3 { color: #fff; }
.pricing-card-lifetime .pricing-subtitle { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }

.pricing-price {
    cursor: pointer;
    user-select: none;
    text-align: center;
    margin: 12px 0 8px;
}

.pricing-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    transition: opacity 0.15s ease;
}

.pricing-currency {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    transition: opacity 0.15s ease;
}

.pricing-features-lifetime li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.pricing-features-lifetime li:last-child { border-bottom: none; }
.pricing-features-lifetime li svg { color: rgba(255, 255, 255, 0.7); }

.pricing-lifetime-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: auto 0 0;
    text-align: center;
}
.pricing-lifetime-note strong { color: rgba(255, 255, 255, 0.65); }

/* ============================================
   Support
   ============================================ */

.support {
    padding: 80px 0;
}

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

.support-card {
    background: var(--color-subtle-bg);
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    border-color: rgba(74, 111, 165, 0.25);
    box-shadow: var(--shadow-card-hover);
}

.support-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    background: var(--color-primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-medium);
}

.support-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.support-card p { font-size: 13px; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 14px; }

.support-link {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.support-link:hover { color: var(--color-primary-hover); }
.support-link .arrow { transition: transform 0.2s ease; display: inline-block; }
.support-link:hover .arrow { transform: translateX(3px); }

/* ============================================
   Closing
   ============================================ */

.closing {
    padding: 80px 0;
    background: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.closing-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.closing-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.closing-tagline {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.closing .btn-primary {
    display: inline-flex;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--color-card-bg);
    border-top: 1px solid var(--color-divider);
    padding: 48px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 36px;
}

.footer-section h5 {
    color: var(--color-text-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.footer-section p { color: var(--color-text-secondary); font-size: 13px; }
.footer-section p a { color: var(--color-primary); font-weight: 500; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul li a { color: var(--color-text-secondary); font-size: 13px; }
.footer-section ul li a:hover { color: var(--color-primary); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-divider);
}

.footer-bottom p {
    color: var(--color-text-tertiary);
    font-size: 12px;
    text-align: center;
    margin: 0;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-content { padding: 80px 0; min-height: 70vh; }

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-divider);
}

.legal-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--color-text-secondary); }
.legal-body { max-width: 720px; }
.legal-body h2 { font-size: 22px; font-weight: 600; margin-top: 48px; margin-bottom: 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; font-weight: 600; margin-top: 24px; margin-bottom: 10px; }
.legal-body p { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 14px; }
.legal-body ul { margin-bottom: 14px; padding-left: 24px; }
.legal-body ul li { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 6px; }
.legal-body a { color: var(--color-primary); text-decoration: underline; }
.legal-body a:hover { color: var(--color-primary-hover); }

/* ============================================
   Docs / FAQ Page
   ============================================ */

.docs-content { padding: 80px 0; min-height: 70vh; }

.docs-header {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-divider);
}

.docs-header h1 { font-size: 36px; font-weight: 700; margin-bottom: 8px; }
.docs-header p { font-size: 15px; color: var(--color-text-secondary); margin: 0; }

.faq-section { max-width: 720px; }

.faq-section h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.faq-item {
    border: 1px solid var(--color-card-border);
    border-radius: var(--radius-card);
    background: var(--color-subtle-bg);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--color-primary); }

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--color-text-tertiary);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.faq-answer-inner p { margin-bottom: 10px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a { color: var(--color-primary); text-decoration: underline; }
.faq-answer-inner a:hover { color: var(--color-primary-hover); }

.faq-answer-inner ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.faq-answer-inner ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.docs-contact {
    margin-top: 48px;
    padding: 24px;
    background: var(--color-primary-light);
    border: 1px solid var(--color-primary-medium);
    border-radius: var(--radius-card);
    max-width: 720px;
}

.docs-contact p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
}

.docs-contact a {
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 968px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .product-hero h1 { max-width: 100%; }
    .product-description { max-width: 100%; margin-left: auto; margin-right: auto; }
    .product-badges { justify-content: center; }
    .product-cta { justify-content: center; }

    .product-hero-image { order: -1; }

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

/* ============================================
   Responsive — Mobile
   ============================================ */

@media (max-width: 768px) {
    h2 { font-size: 28px; }

    .nav-desktop, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .product-hero { padding: 40px 0 48px; }
    .product-hero h1 { font-size: 30px; }
    .product-description { font-size: 15px; }

    .phone-demo { width: 240px; }

    .features, .how-it-works, .pricing, .support, .closing { padding: 56px 0; }

    .closing-text { font-size: 16px; }
    .closing-tagline { font-size: 20px; }

    .features-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .step { max-width: 100%; }

    .step-connector {
        width: 1px;
        height: 28px;
        margin: 0;
    }

    .btn-primary { width: 100%; justify-content: center; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card { padding: 24px; }
    .pricing-card-lifetime { padding: 0; }
    .pricing-lifetime-inner { padding: 24px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

    .section-header { margin-bottom: 36px; }
    .section-header p { font-size: 14px; }

    .demo-tab { padding: 8px 14px; }
}

/* ============================================
   Responsive — Small Mobile
   ============================================ */

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .product-hero h1 { font-size: 26px; }
    .product-hero-content { gap: 32px; }
    .support-card, .feature-card { padding: 20px; }

    .phone-demo { width: 220px; }
    .demo-tab { padding: 6px 10px; }
    .demo-tab span { font-size: 9px; }
}
