/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Ensure consistent navbar background even if inline styles were set before */
.navbar { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; backdrop-filter: none !important; }

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

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-logo .slogan {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left align text in nav brand */
    text-align: left;
    gap: 0.05rem;
}

.logo-text > span:first-child { font-size: 1.1rem; line-height: 1; }

.slogan {
    font-size: 0.55rem;
    font-weight: 500;
    opacity: 0.8;
    font-style: normal;
}

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

.nav-logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-slogan {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-style: italic;
    color: #f0f9ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero tabs */
.hero-tabs {
    display: inline-flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-tab {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.hero-tab.active {
    background: white;
    color: #667eea;
    border-color: transparent;
}

.hero-text-panel { display: none; }
.hero-text-panel.active { display: block; }
.hero-text-panel { text-align: left; }
.hero-content { text-align: left; }

.hero-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}

.hero-title-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; text-align: left; }
.hero-title-text h2 { margin: 0; }
.hero-title-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-title-text .hero-subtitle { margin: -3px 0 0 0; opacity: 0.9; font-size: 0.95rem; }
.hero h2, .hero .hero-subtitle { text-align: left !important; }
.hero-content { justify-self: start; }
.hero-title-row { width: fit-content; }

.hero-device-panel { display: none; }
.hero-device-panel.active { display: block; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-preview i {
    font-size: 4rem;
    opacity: 0.8;
}

/* Laptop Slider */
.laptop-frame {
    width: min(535px, 43vw); /* same height as a 600px-wide 16:10 screen */
    max-width: 90%;
}

.laptop-screen {
    background: #0b1220;
    border-radius: 14px 14px 0 0;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
    overflow: hidden;
    aspect-ratio: 1280 / 898; /* matches the hero recording, so it fills the screen */
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show the whole screenshot without cropping */
    object-position: center;
    background: #0b1220; /* fill any letterbox with screen color */
}

/* Laptop rotator */
.laptop-rotator { position: relative; width: 100%; height: 100%; }
.laptop-rotator .rotator-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; z-index: 0; display: block; }
.laptop-rotator .rotator-slide.active { opacity: 1; z-index: 1; }

.laptop-base {
    height: 12px;
    background: linear-gradient(180deg, #b8c1d6, #9aa6bf);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
}

.hero-slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-control:hover { background: rgba(255,255,255,0.25); }
.slider-control.prev { left: 8px; }
.slider-control.next { right: 8px; }

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
}

.slider-dots button.active { background: white; }

@media (max-width: 768px) {
    .laptop-frame { width: 88vw; }
}

/* Phone frame for iPhone slide */
.phone-frame {
    width: 260px;
    height: 520px;
    margin: 0 auto;
    border-radius: 36px;
    background: linear-gradient(180deg, #0f172a, #111827);
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 0 6px rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen {
    width: 232px;
    height: 496px;
    overflow: hidden;
    border-radius: 28px;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* show entire screenshot without zoom/crop */
    background: #0b1220;
}

/* Reuse rotator inside phone */
.phone-screen .laptop-rotator { position: relative; width: 100%; height: 100%; }
.phone-screen .rotator-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; display: block; }
.phone-screen .rotator-slide.active { opacity: 1; }
/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.learn-link {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.learn-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #5a67d8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f8fafc;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
    text-align: center;
}

.about-slogan {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    font-style: italic;
    color: #667eea;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.about-panel { display: none; }
.about-panel.active { display: block; }

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.cta-platforms {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    justify-content: center; /* center align under CTA heading */
    align-items: center;
    flex-wrap: wrap;
}

/* CTA Badges: aligned, consistent sizing, accessible */

.cta-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.cta-col { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cta-col-title { color: #fff; opacity: 0.9; font-weight: 600; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.cta-spacer { width: 160px; min-height: 1px; display: flex; align-items: center; justify-content: center; }
.qr-badge { width: 160px; height: 160px; object-fit: contain; background: #fff; padding: 12px; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* Mobile-only QR container (independent from desktop spacer) */
.qr-mobile { display: none; }
.qr-mobile-img { width: 160px; height: 160px; object-fit: contain; background: #fff; padding: 12px; border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, opacity 0.2s ease;
}

.cta-badge:hover { transform: translateY(-1px); }

.cta-badge.disabled {
    pointer-events: none;
    opacity: 0.55; /* visually indicate coming soon */
}

.app-badge {
    width: 176px;
    height: 58px;
    object-fit: contain;
}

/* Pill styling tweaks */
.cta-pill {
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 6px 18px rgba(0,0,0,0.09);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.12s ease;
}
.cta-pill.active { background: rgba(255,255,255,0.18); }
.cta-pill:hover { transform: translateY(-1px); }

/* Responsive badge sizing */
@media (max-width: 768px) {
    .cta-badges { gap: 12px; flex-direction: column; }
    .cta-spacer { display: none; width: 0; }
    .app-badge { width: 160px; height: 54px; }
    .qr-mobile { display: flex; justify-content: center; margin-top: 8px; }
}

@media (max-width: 480px) {
    .app-badge { width: 148px; height: 50px; }
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.25);
}

.cta-pill.active {
    background: rgba(255,255,255,0.15);
    color: white;
}

.cta-pill.inactive {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-slogan {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-style: italic;
    color: #f0f9ff;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Sections */
.content {
    padding: 80px 0;
}

.privacy-content,
.help-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2,
.help-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #2d3748;
}

.privacy-content h3,
.help-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #374151;
}

.privacy-content p,
.help-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul,
.help-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #64748b;
}

.privacy-content li,
.help-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a,
.help-content a {
    color: #667eea;
    text-decoration: none;
}

.privacy-content a:hover,
.help-content a:hover {
    text-decoration: underline;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: block;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.product-tagline {
    color: #64748b;
    margin-bottom: 0.75rem;
}

.product-features {
    margin: 0 0 1rem 1.25rem;
    color: #64748b;
}

.product-features li {
    margin-bottom: 0.35rem;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.product-detail {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.product-detail h3 {
    color: #2d3748;
    margin: 1.5rem 0 0.75rem;
}

.product-description {
    color: #475569;
}

/* Tabs */
.tabs {
    background: transparent;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.tab-button {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #374151;
    cursor: pointer;
    font-weight: 600;
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.tab-panels {
    background: transparent;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.privacy-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-badge i {
    color: #667eea;
}

.privacy-badge a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.privacy-badge a:hover {
    text-decoration: underline;
}

/* Help Specific Styles */
.help-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.help-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.help-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.help-section h2 i {
    color: #667eea;
}

.faq-item,
.guide-item,
.troubleshoot-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child,
.guide-item:last-child,
.troubleshoot-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #667eea;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.contact-method p {
    margin: 0;
    color: #64748b;
}

.support-tips {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin-top: 1.5rem;
}

.support-tips h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.support-tips ul {
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

/* Footer product links look like text until hover */
.footer-section p a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-section p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-content { text-align: left; }
    .hero-text-panel { text-align: left; }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features h2,
    .about-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 48px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .help-section {
        padding: 1.5rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8fafc;
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #64748b;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* FAQ Styles */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.faq-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-category h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-category {
        padding: 1.5rem;
    }
}

/* Blog Styles */
.blog-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.featured-posts {
    margin-bottom: 4rem;
}

.featured-posts h2,
.all-posts h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card,
.featured-post {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
}

.featured-post {
    border-left: 4px solid #667eea;
}

.post-card:hover,
.featured-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.8rem;
}

.post-date {
    color: #64748b;
}

.post-author {
    color: #64748b;
}

.post-card h3,
.featured-post h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.featured-post h3 {
    font-size: 1.5rem;
}

.post-card h3 a,
.featured-post h3 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-card h3 a:hover,
.featured-post h3 a:hover {
    color: #667eea;
}

.post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #5a67d8;
}

.blog-categories {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.blog-categories h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.category-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Blog Post Styles */
.blog-post {
    padding: 4rem 0;
    background: white;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-header h1 {
    color: #1e293b;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 1rem 0;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: #374151;
}

.post-content h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
}

.post-content h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content strong {
    color: #1e293b;
    font-weight: 600;
}

.post-faq {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.post-faq h2 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.post-share h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    color: white;
}

.share-btn.copy:hover {
    background: #667eea;
    color: white;
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: #f8fafc;
}

.related-posts h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-post h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-post h3 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-post h3 a:hover {
    color: #667eea;
}

/* Blog CTA */
.blog-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.blog-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Breadcrumb Navigation - SEO Only (Hidden from Users) */
.breadcrumb-nav {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    margin: 0;
    padding: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #64748b;
    font-weight: 600;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #4c51bf;
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Hero videos */
.laptop-screen video,
.phone-screen video {
    display: block;
    width: 100%;
    height: 100%;
    background: #0b1220;
}
.laptop-screen video { object-fit: cover; }
.phone-screen video { object-fit: cover; }

.hero-price {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
}
.hero-price strong { font-weight: 600; }
.hero-buttons .btn i { margin-right: 6px; }

/* Shared section headings */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}
.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: #4a5568;
    line-height: 1.6;
}

/* See it in action */
.demo-section {
    padding: 80px 0;
    background: #f8fafc;
}
.demo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.demo-card {
    flex: 0 1 calc((100% - 3rem) / 3);
    min-width: 280px;
    margin: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.demo-media {
    aspect-ratio: 960 / 674;
    background: #0b1220;
}
.demo-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.demo-card figcaption { padding: 1rem 1.25rem 1.25rem; }
.demo-card h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.35rem;
}
.demo-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* System Monitor band */
.monitor-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.monitor-band-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.monitor-band .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}
.monitor-band h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.monitor-band p {
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.monitor-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.monitor-link:hover { border-bottom-color: white; }
.monitor-band-media {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 960 / 674;
    background: #0b1220;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Pricing (inside the site-wide CTA) + trust */
.cta-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto 0;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    background: white;
    color: #2d3748;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.pricing-platform {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.75rem;
}
.pricing-platform i { margin-right: 6px; }
.pricing-amount {
    font-size: 2.6rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.1;
}
.pricing-amount span {
    font-size: 1rem;
    font-weight: 500;
    color: #718096;
    margin-left: 6px;
}
.pricing-alt {
    color: #718096;
    margin: 0.25rem 0 1.25rem;
}
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.pricing-list li {
    display: flex;
    gap: 10px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.pricing-list i { color: #48bb78; margin-top: 4px; }
.pricing-card .cta-badge { align-self: center; }

.trust-section { padding: 80px 0; }

@media (max-width: 900px) {
    .monitor-band-inner,
    .cta-pricing { grid-template-columns: 1fr; }
    .cta-spacer { display: none; }
    .qr-mobile { display: flex; justify-content: center; margin-top: 1.5rem; }
    .demo-card { flex-basis: 100%; min-width: 0; }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .demo-card { flex-basis: calc((100% - 1.5rem) / 2); }
}

/* Product page demo video */
.product-video {
    margin: 1.5rem auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1220;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.product-video video { display: block; width: 100%; height: auto; }
.product-video-mac { max-width: 820px; }
.product-video-ios { max-width: 300px; border-radius: 28px; }

/* Demo page: iPhone section */
.demo-section + .demo-section { padding-top: 0; }
.section-title i { color: #667eea; margin-right: 6px; font-size: 0.85em; }
.ios-demo {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
}
.ios-demo .section-title { text-align: left; }
.ios-demo-text p { color: #4a5568; line-height: 1.7; margin-bottom: 1.25rem; }
.ios-demo-media {
    width: 280px;
    aspect-ratio: 464 / 1006;
    border-radius: 36px;
    overflow: hidden;
    background: #0b1220;
    border: 8px solid #111827;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
@media (max-width: 900px) {
    .ios-demo { grid-template-columns: 1fr; justify-items: center; }
    .ios-demo .section-title { text-align: center; }
    .ios-demo-media { width: 240px; }
}

/* Click-to-enlarge demo clips */
.demo-media,
.monitor-band-media,
.ios-demo-media { position: relative; }
.demo-video[data-full] { cursor: zoom-in; }
.demo-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    color: white;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.demo-card:hover .demo-expand,
.monitor-band-media:hover .demo-expand,
.ios-demo-media:hover .demo-expand { opacity: 1; transform: scale(1.08); }

.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 12, 28, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.video-lightbox.open { opacity: 1; visibility: visible; }
.video-lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(1400px, 100%);
}
.video-lightbox video {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    border-radius: 14px;
    background: #0b1220;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.video-lightbox-caption {
    color: white;
    font-weight: 600;
    margin-top: 14px;
    text-align: center;
}
.video-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}
.video-lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
body.lightbox-open { overflow: hidden; }

.trust-check {
    margin-top: 0.75rem;
    font-size: 0.85rem !important;
    color: #718096 !important;
}
.trust-check code {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #edf2f7;
    color: #2d3748;
    font-size: 0.78rem;
    word-break: break-all;
}
.trust-check a { color: #667eea; font-weight: 600; }
