/* ============================================
   FEATURE PAGE - SHARED STYLES
   Scaled Growth Agency
   Matches homepage design language exactly
   ============================================ */

/* ============================================
   CSS VARIABLES (same as homepage)
   ============================================ */
:root {
    --color-black: #1a1a1a;
    --color-dark: #2d2d2d;
    --color-gray-900: #3d3d3d;
    --color-gray-700: #5a5a5a;
    --color-gray-500: #8a8a8a;
    --color-gray-400: #a0a0a0;
    --color-gray-300: #c7c7c7;
    --color-gray-200: #e5e5e5;
    --color-gray-100: #f5f5f5;
    --color-white: #ffffff;
    --color-primary: #006aff;
    --color-primary-hover: #0052cc;
    --color-success: #00a67e;
    --color-warning: #f5a623;
    --color-error: #e53935;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: hidden; }
body {
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--color-black);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============================================
   NAVIGATION (matches homepage exactly)
   ============================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}
.site-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-gray-200);
    z-index: 1;
}
.site-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}
.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}
.nav-logo-img {
    height: clamp(60px, 8vw, 85px);
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    position: relative;
    z-index: 10;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--color-black); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    transition: all 0.3s ease;
}
.nav-phone:hover { color: var(--color-primary); }
.nav-phone i {
    color: var(--color-primary);
    margin-right: 6px;
    display: inline-block;
    animation: phoneRing 4s ease-in-out infinite;
}
@keyframes phoneRing {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(15deg); }
    94% { transform: rotate(-15deg); }
    96% { transform: rotate(10deg); }
    98% { transform: rotate(-10deg); }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, #0078d4 0%, #0091ff 50%, #0078d4 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
    animation: primaryBtnGlow 4s ease-in-out infinite;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: primaryShine 5s ease-in-out infinite;
}
@keyframes primaryBtnGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes primaryShine {
    0%, 100% { left: -100%; }
    40%, 50% { left: 150%; }
}
.btn-primary:hover {
    background: linear-gradient(135deg, #106ebe 0%, #0078d4 50%, #106ebe 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}
.mobile-menu-btn {
    display: none;
    font-size: 22px;
    color: var(--color-black);
    padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.fp-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.fp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 106, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.fp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f0fe, #dbe4ff);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 106, 255, 0.15);
}
.fp-hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}
.fp-hero h1 span {
    background: linear-gradient(135deg, var(--color-primary), #0091ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fp-hero-desc {
    font-size: 18px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.fp-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-200);
}
.fp-hero-stat {
    text-align: left;
}
.fp-hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.2;
}
.fp-hero-stat-label {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-top: 4px;
}
.fp-hero-visual {
    position: relative;
}

/* Browser Frame (for screenshots) */
.fp-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.fp-browser-chrome {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    gap: 10px;
}
.fp-browser-dots { display: flex; gap: 5px; }
.fp-browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.fp-browser-dots span:nth-child(1) { background: #ef4444; }
.fp-browser-dots span:nth-child(2) { background: #f59e0b; }
.fp-browser-dots span:nth-child(3) { background: #22c55e; }
.fp-browser-url {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gray-500);
    background: white;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.fp-browser img {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   FEATURE PAGE BUTTONS
   ============================================ */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.fp-btn-primary {
    background: linear-gradient(135deg, #0078d4 0%, #0091ff 50%, #0078d4 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    position: relative;
    overflow: hidden;
    animation: primaryBtnGlow 4s ease-in-out infinite;
}
.fp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: primaryShine 5s ease-in-out infinite;
}
.fp-btn-primary:hover {
    background: linear-gradient(135deg, #106ebe 0%, #0078d4 50%, #106ebe 100%);
    box-shadow: 0 6px 24px rgba(0, 120, 212, 0.4);
    transform: translateY(-1px);
}
.fp-btn-outline {
    background: white;
    color: var(--color-black);
    border: 1.5px solid var(--color-gray-200);
}
.fp-btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.fp-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}
.fp-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.fp-section {
    padding: 100px 0;
}
.fp-section-alt {
    padding: 100px 0;
    background: var(--color-gray-100);
}
.fp-section-dark {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}
.fp-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.fp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 6px 16px;
    background: #e8f0fe;
    border-radius: 100px;
    margin-bottom: 16px;
}
.fp-section-dark .fp-section-badge {
    background: rgba(0, 106, 255, 0.15);
}
.fp-section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.fp-section-dark .fp-section-title { color: white; }
.fp-section-subtitle {
    font-size: 18px;
    color: var(--color-gray-700);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.fp-section-dark .fp-section-subtitle { color: #94a3b8; }

/* ============================================
   FEATURE GRID (icon + text cards)
   ============================================ */
.fp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fp-feature-card {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    padding: 32px;
    transition: all 0.3s;
}
.fp-feature-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 106, 255, 0.08);
    transform: translateY(-2px);
}
.fp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.fp-feature-icon.blue { background: #e8f0fe; color: var(--color-primary); }
.fp-feature-icon.green { background: #e6f7f0; color: var(--color-success); }
.fp-feature-icon.purple { background: #f3e8ff; color: #7c3aed; }
.fp-feature-icon.orange { background: #fff3e0; color: #f57c00; }
.fp-feature-icon.red { background: #fce4ec; color: var(--color-error); }
.fp-feature-icon.teal { background: #e0f2f1; color: #009688; }
.fp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}
.fp-feature-card p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.fp-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 0;
}
.fp-stat-item {
    text-align: center;
}
.fp-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}
.fp-section-dark .fp-stat-number { color: #60a5fa; }
.fp-stat-desc {
    font-size: 14px;
    color: var(--color-gray-700);
    margin-top: 6px;
}
.fp-section-dark .fp-stat-desc { color: #94a3b8; }
.fp-stat-source {
    font-size: 11px;
    color: var(--color-gray-400);
    margin-top: 4px;
    font-style: italic;
}
.fp-section-dark .fp-stat-source { color: #64748b; }

/* ============================================
   SPLIT SECTION (image + text, alternating)
   ============================================ */
.fp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.fp-split:last-child { margin-bottom: 0; }
.fp-split.reverse { direction: rtl; }
.fp-split.reverse > * { direction: ltr; }
.fp-split-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 16px;
}
.fp-split-text p {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}
.fp-split-list {
    list-style: none;
    margin-top: 20px;
}
.fp-split-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--color-dark);
}
.fp-split-list li i {
    color: var(--color-success);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   CASE STUDY CARDS
   ============================================ */
.fp-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.fp-case-card {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.fp-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #0091ff);
}
.fp-case-brand {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.fp-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}
.fp-case-card p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}
.fp-case-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--color-gray-100);
}
.fp-case-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-black);
}
.fp-case-stat span {
    font-size: 12px;
    color: var(--color-gray-400);
}
.fp-case-source {
    font-size: 11px;
    color: var(--color-gray-400);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.fp-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-gray-200);
}
.fp-compare-table th {
    background: var(--color-gray-100);
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-gray-200);
}
.fp-compare-table th.highlight {
    background: #e8f0fe;
    color: var(--color-primary);
}
.fp-compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-gray-100);
}
.fp-compare-table tr:last-child td { border-bottom: none; }
.fp-compare-table td.highlight {
    background: #f5f8ff;
    font-weight: 600;
    color: var(--color-black);
}
.fp-check { color: var(--color-success); }
.fp-x { color: var(--color-error); }

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.fp-faq-list { max-width: 800px; margin: 0 auto; }
.fp-faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}
.fp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    text-align: left;
    font-family: inherit;
}
.fp-faq-question i {
    color: var(--color-gray-400);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.fp-faq-item.open .fp-faq-question i {
    transform: rotate(180deg);
}
.fp-faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.7;
}
.fp-faq-item.open .fp-faq-answer { display: block; }

/* ============================================
   TESTIMONIAL / QUOTE
   ============================================ */
.fp-quote {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.fp-quote::before {
    content: '\201C';
    font-size: 60px;
    color: var(--color-gray-200);
    position: absolute;
    top: 10px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}
.fp-quote p {
    font-size: 18px;
    color: var(--color-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.fp-quote-source {
    font-size: 14px;
    color: var(--color-gray-700);
    font-weight: 600;
}

/* ============================================
   FINAL CTA
   ============================================ */
.fp-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
    color: white;
}
.fp-final-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}
.fp-final-cta p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
}
.fp-final-cta .fp-btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.2);
}
.fp-final-cta .fp-btn-outline:hover {
    border-color: white;
    color: white;
}
.fp-final-cta .fp-cta-row {
    justify-content: center;
}

/* ============================================
   RELATED FEATURES
   ============================================ */
.fp-related {
    padding: 80px 0;
    background: var(--color-gray-100);
}
.fp-related h3 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-black);
}
.fp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fp-related-card {
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}
.fp-related-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 106, 255, 0.08);
    transform: translateY(-3px);
}
.fp-related-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f0fe;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}
.fp-related-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}
.fp-related-card p {
    font-size: 13px;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin-bottom: 12px;
}
.fp-related-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.fp-footer {
    padding: 60px 0 30px;
    background: #0f172a;
    color: #94a3b8;
}
.fp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.fp-footer-brand p {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}
.fp-footer-logo {
    display: inline-block;
}
.fp-footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.fp-footer-links a {
    display: block;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.fp-footer-links a:hover { color: white; }
.fp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
}

/* ============================================
   ANIMATION
   ============================================ */
.fp-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fp-animate.fp-visible {
    opacity: 1;
    transform: translateY(0);
}
.fp-animate.delay-1 { transition-delay: 0.1s; }
.fp-animate.delay-2 { transition-delay: 0.2s; }
.fp-animate.delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .fp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .fp-hero-visual { max-width: 600px; }
    .fp-split { grid-template-columns: 1fr; gap: 40px; }
    .fp-split.reverse { direction: ltr; }
    .fp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-case-grid { grid-template-columns: 1fr; }
    .fp-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .fp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 95px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid var(--color-gray-200);
        gap: 16px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-cta {
        display: none;
        position: fixed;
        top: calc(95px + 100px);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0 24px 20px;
        border-bottom: 1px solid var(--color-gray-200);
        gap: 12px;
        z-index: 999;
    }
    .nav-cta.open { display: flex; }
    .mobile-menu-btn { display: block; }
    .nav-inner { height: 70px; }
    .nav-logo-img { height: 48px; }
    .fp-hero { padding: 120px 0 60px; }
    .fp-hero h1 { font-size: 28px; }
    .fp-hero-stats { flex-direction: column; gap: 16px; }
    .fp-section, .fp-section-alt, .fp-section-dark { padding: 60px 0; }
    .fp-feature-grid { grid-template-columns: 1fr; }
    .fp-related-grid { grid-template-columns: 1fr; }
    .fp-stats-bar { grid-template-columns: 1fr; gap: 24px; }
    .fp-cta-row { flex-direction: column; }
    .fp-btn-lg { width: 100%; justify-content: center; }
    .fp-compare-table { font-size: 13px; }
    .fp-compare-table th, .fp-compare-table td { padding: 10px 12px; }
}

/* Scroll state for nav */
@media (min-width: 769px) {
    .site-nav.scrolled .nav-inner { height: 75px; }
    .site-nav.scrolled .nav-logo-img { height: 60px; }
}

/* Print */
@media print {
    .site-nav, .fp-final-cta, .fp-related, .fp-footer { display: none; }
    .fp-hero { padding-top: 20px; }
}
