/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.nav-logo .logo-image {
    margin-right: 0.5rem;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.35rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6366f1;
}

.nav-login {
    background: #6366f1;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-login:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 860px);
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.12;
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

a.btn-primary,
a.btn-secondary,
a.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* App Showcase Carousel */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-video-wrap {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
    background: #0f172a;
    line-height: 0;
}

.product-video,
.product-video-wrap img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.product-video {
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.product-video-wrap img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}



.app-showcase {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: white;
    transform: scale(1.05);
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) rotateY(15deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    overflow: hidden;
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.showcase-slide.prev {
    transform: scale(0.8) rotateY(-15deg) translateX(-100%);
}

.showcase-slide.next {
    transform: scale(0.8) rotateY(15deg) translateX(100%);
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.showcase-slide.active .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.showcase-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation Dots */
.showcase-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Navigation Arrows */
.showcase-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6366f1;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.showcase-nav.prev {
    left: 1rem;
}

.showcase-nav.next {
    right: 1rem;
}

/* Loading animation for images */
.showcase-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: -1;
}

.showcase-slide.loaded::before {
    display: none;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Override for privacy policy page */
.privacy-policy .section-header p {
    color: white;
    opacity: 0.9;
}

/* Override for about page */
.about-section .section-header p {
    color: white;
    opacity: 0.9;
}

/* Override for contact section on gradient background */
.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact .section-header p {
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Screenshot hover effect */
.feature-card .screenshot-preview {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: brightness(1.05);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover .screenshot-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(2);
    pointer-events: auto;
}

/* Screenshot loading animation */
.feature-card .screenshot-preview.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Specific positioning for different cards */
.feature-card:nth-child(odd) .screenshot-preview {
    left: 60%;
}

.feature-card:nth-child(even) .screenshot-preview {
    left: 40%;
}

.feature-card:nth-child(3n) .screenshot-preview {
    left: 50%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing.pricing-page {
    padding: 140px 0 100px;
    min-height: 100vh;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: #6366f1;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.18);
    transform: scale(1.03);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.22);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-header h2,
.pricing-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.3;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.amount-contact {
    font-size: 2rem;
    color: #6366f1;
}

.period {
    font-size: 0.95rem;
    color: #6b7280;
}

.pricing-subtitle {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6366f1;
}

.pricing-desc {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #6b7280;
}

a.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.pricing-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.pricing-includes {
    margin-top: 3.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.pricing-includes h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem;
}

.pricing-includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 2rem;
}

.pricing-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.45;
}

.pricing-includes-list i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-note {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6366f1;
}

.testimonial-content p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-method a:hover {
    text-decoration: underline;
}

.trial-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border-left: 4px solid #10b981;
    font-size: 0.95rem;
}



/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    margin-right: 0.5rem;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 4px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Disclaimer */
.disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

.disclaimer p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-includes-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }
    
    /* Mobile product videos */
    .product-video-wrap {
        max-width: 100%;
    }
    
    .hero-visual::before,
    .hero-visual::after {
        display: none;
    }
    
    .showcase-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .showcase-nav.prev {
        left: 0.5rem;
    }
    
    .showcase-nav.next {
        right: 0.5rem;
    }
    
    .showcase-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .showcase-overlay h3 {
        font-size: 1rem;
    }
    
    .showcase-overlay p {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile screenshot hover adjustments */
    .feature-card .screenshot-preview {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 90vw;
        max-height: 60vh;
        z-index: 9999;
    }

    .feature-card:hover .screenshot-preview {
        transform: translate(-50%, -50%) scale(2);
    }

    /* Override specific positioning on mobile */
    .feature-card:nth-child(odd) .screenshot-preview,
    .feature-card:nth-child(even) .screenshot-preview,
    .feature-card:nth-child(3n) .screenshot-preview {
        left: 50%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-includes {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }

    .pricing-includes-list {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
         /* Contact section mobile adjustments */
     .contact-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     
     .contact-info h2 {
         font-size: 2rem;
     }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.testimonial-card,
.use-case-item,
.audience-card,
.capability-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for chart bars */
.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

/* Privacy Policy Page Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.privacy-text {
    margin-bottom: 3rem;
}

.privacy-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.privacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.privacy-download {
    text-align: center;
    padding: 1rem 0;
}

.privacy-download .btn-primary {
    background: #10b981;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.privacy-download .btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }
    
    .privacy-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .privacy-text p {
        font-size: 1rem;
    }
    
    .privacy-download {
        padding: 1.5rem;
    }
    
    .privacy-download h3 {
        font-size: 1.3rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    max-width: 1680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
    padding: 0.5rem 0;
}

.about-features i {
    color: #6366f1;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.about-founder {
    display: flex;
    justify-content: center;
}

.founder-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    max-width: 300px;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.founder-title {
    font-size: 1rem;
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.founder-card .btn-secondary {
    background: #6366f1;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.founder-card .btn-secondary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Mobile responsiveness for about page */
@media (max-width: 768px) {
    .about-section {
        padding: 100px 0 60px;
    }
    
    .about-content {
        margin: 0 1rem;
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-features li {
        font-size: 1rem;
    }
    
    .founder-card {
        max-width: 100%;
    }
}

/* Downloads Page */
.downloads-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.downloads-section .section-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.downloads-section .section-header p {
    color: #fff;
    opacity: 0.9;
}

.downloads-content {
    max-width: 1024px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.downloads-block {
    margin-bottom: 0;
}

.downloads-block-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem;
    letter-spacing: 0.01em;
}

.downloads-previous {
    margin-top: 2rem;
    margin-left: -3rem;
    margin-right: -3rem;
    padding: 1.25rem 3rem;
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
}

.downloads-previous-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    list-style: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    padding: 0.25rem 0;
    user-select: none;
    transition: color 0.2s ease;
}

.downloads-previous-summary::-webkit-details-marker {
    display: none;
}

.downloads-previous-summary::marker {
    content: '';
}

.downloads-previous-summary:hover {
    color: #6366f1;
}

.downloads-previous-chevron {
    color: #6b7280;
    font-size: 0.875rem;
    transition: transform 0.25s ease, color 0.2s ease;
}

.downloads-previous[open] .downloads-previous-chevron {
    transform: rotate(180deg);
    color: #6366f1;
}

.downloads-previous-panel {
    margin-top: 1rem;
    margin-left: -3rem;
    margin-right: -3rem;
    padding: 1rem 3rem 1.25rem;
    background: #e5e7eb;
    border-radius: 0;
}

.downloads-previous-note {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
}

.downloads-previous-panel .download-name {
    color: #4b5563;
}

.downloads-previous-panel .download-name i {
    color: #9ca3af;
}

.downloads-previous-panel .download-date {
    color: #9ca3af;
}

.downloads-previous-panel .download-row {
    border-bottom-color: #d1d5db;
}

.downloads-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.download-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.download-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.download-row:first-child {
    padding-top: 0;
}

.download-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
    flex: 1;
    min-width: 0;
}

@media (min-width: 769px) {
    .download-name {
        white-space: nowrap;
    }
}

.download-name i {
    color: #6366f1;
    flex-shrink: 0;
}

.download-date {
    color: #6b7280;
    font-weight: 400;
}

.download-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

a.download-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.download-actions a i {
    font-size: 0.95em;
}

a.download-notes-btn {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
    border: 2px solid #6366f1;
    background: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

a.download-notes-btn:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 100px 0 60px;
    }

    .downloads-section .section-header h1 {
        font-size: 2rem;
    }

    .downloads-content {
        margin: 0 1rem;
        padding: 1.5rem 1.5rem;
    }

    .downloads-previous {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .downloads-previous-panel {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .download-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .download-actions {
        flex-direction: column;
        width: 100%;
    }

    a.download-btn,
    a.download-notes-btn {
        width: 100%;
    }
}

.hero-content p.hero-supporting-line {
    margin-top: 0;
    margin-bottom: 1.75rem;
    color: #e5e7eb;
    font-size: 1.05rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.6;
}

.content-block {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 110px;
}

.content-block h2 {
    margin-bottom: 0.75rem;
}

.content-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: #374151;
    line-height: 1.8;
}

.content-list li {
    margin-bottom: 0.35rem;
}

.content-block a {
    color: #6366f1;
    font-weight: 500;
}

.compatibility-section {
    padding: 3rem 0 5rem;
    background: #f8fafc;
}

.about-section.contact-page {
    align-items: flex-start;
    padding-top: 140px;
}

.contact-form-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-form label {
    font-weight: 600;
    color: #111827;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-status {
    min-height: 1.25rem;
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-form-status.is-success {
    color: #059669;
}

.contact-form-status.is-error {
    color: #dc2626;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-closing-line {
    margin-top: 1.5rem;
    color: #374151;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content-block {
        padding: 1.25rem;
    }

    .contact-form-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .btn-primary {
        width: 100%;
        text-align: center;
        align-self: stretch;
    }
}

/* Homepage benefit-led layout */
section[id],
.content-block[id],
.use-case-category[id] {
    scroll-margin-top: 96px;
}

.section-header.wide p {
    max-width: 760px;
}

.section-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.section-cta-left {
    justify-content: flex-start;
    margin-top: 2rem;
}

a.outcome-card {
    color: inherit;
    text-decoration: none;
    display: block;
}

a.outcome-card .card-link {
    display: inline-block;
    margin-top: 1rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.95rem;
}

a.outcome-card:hover .card-link {
    text-decoration: underline;
}

.value-prop {
    padding: 80px 0;
    background: white;
}

.value-prop .section-header {
    margin-bottom: 2.5rem;
}

.value-prop-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.value-prop-body .product-video-wrap,
.how-it-works-body .product-video-wrap {
    max-width: 100%;
    margin: 0;
}

.value-prop-body.alt .product-video-wrap {
    order: 2;
}

.compat-section {
    padding: 80px 0;
    background: white;
}

.compat-section.first {
    padding-top: 140px;
}

.compat-section.alt {
    background: #f8fafc;
}

.compat-section .value-prop-body {
    grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
}

.compat-section .value-prop-body.alt {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.75fr);
}

.compat-section .value-prop-body.alt .product-video-wrap {
    order: 2;
}

.compat-section .product-video-wrap {
    max-width: none;
}

.compat-copy h2,
.compat-copy h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 0.75rem;
}

.compat-copy h2:first-child,
.compat-copy h3:first-child {
    margin-top: 0;
}

.compat-copy .content-list {
    margin-bottom: 1.5rem;
}

.value-prop-copy {
    max-width: none;
    width: 100%;
}

.value-prop-copy p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.value-prop-copy p.value-prop-statement,
.ai-copy p.value-prop-statement {
    background: #eef2ff;
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1f2937;
    margin: 1.5rem 0 0;
}

.value-prop-visual img,
.repeatability-visual img,
.ai-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    display: block;
}

.steps-four {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.how-it-works-body {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.how-it-works .steps-four {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin-top: 0;
}

.how-it-works .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.how-it-works .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin: 0;
    flex-shrink: 0;
}

.how-it-works .step h3 {
    margin-bottom: 0.35rem;
}

.how-it-works .step p {
    margin: 0;
}

.how-visual {
    margin-top: 0;
    text-align: center;
}

.how-visual p {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 1rem;
}

.how-it-works-body + .section-cta {
    margin-top: 2.5rem;
}

.use-cases {
    padding: 80px 0;
    background: #f8fafc;
}

.use-cases-preview {
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.use-case-item i {
    color: #6366f1;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 1.25rem;
    text-align: center;
    flex-shrink: 0;
}

.use-case-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.use-case-item p {
    margin: 0;
    font-size: 0.88rem;
    color: #6b7280;
}

a.use-case-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.use-case-category {
    margin-bottom: 2.75rem;
}

.use-case-category > h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.15rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid #e5e7eb;
}

.audit-heritage {
    padding: 80px 0;
    background: #f8fafc;
}

.audit-heritage-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-left: 6px solid #6366f1;
    border-radius: 20px;
    padding: 3rem;
}

.audit-heritage-card .section-header {
    margin-bottom: 1.25rem;
}

.audit-heritage-card > p {
    max-width: 820px;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
}

.team-adoption {
    padding: 80px 0;
    background: white;
}

.team-intro {
    max-width: 820px;
    margin: -1.5rem auto 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4b5563;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.audience-card p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.repeatability {
    padding: 80px 0;
    background: #f8fafc;
}

.repeatability-layout,
.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.repeatability-copy h2,
.ai-copy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.repeatability-copy > p,
.ai-copy > p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1rem;
}

.example-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.example-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

.example-list i {
    color: #10b981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ai-section {
    padding: 80px 0;
    background: white;
}

.ai-statement {
    margin-top: 1.5rem;
}

.under-the-hood {
    padding: 80px 0;
    background: #f8fafc;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.capability-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.5rem;
}

.capability-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.capability-item p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modernize {
    padding: 80px 0;
    background: white;
}

.modernize-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 3rem;
}

.modernize-card .section-header {
    margin-bottom: 1.5rem;
}

.modernize-card > p {
    max-width: 820px;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4b5563;
}

.compat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.compat-panel {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.compat-panel h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.compat-panel p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.compat-panel .content-list {
    margin: 0 0 1.5rem;
}

.compat-panel .btn-outline {
    margin-top: auto;
    align-self: flex-start;
}

.closing-cta {
    text-align: center;
}

.closing-cta .section-header {
    margin-bottom: 0;
}

.closing-buttons {
    margin-top: 2rem;
}

.closing-cta .btn-secondary {
    color: white;
}

@media (max-width: 1024px) {
    .repeatability-layout,
    .ai-layout,
    .audience-grid,
    .capabilities-grid,
    .compat-grid,
    .use-case-preview-grid,
    .detail-split,
    .value-prop-body,
    .how-it-works-body,
    .compat-section .value-prop-body,
    .compat-section .value-prop-body.alt {
        grid-template-columns: 1fr;
    }

    .value-prop-body.alt .product-video-wrap,
    .compat-section .value-prop-body.alt .product-video-wrap {
        order: 0;
    }

    .steps-four {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-visual {
        order: -1;
    }

    .repeatability-copy h2,
    .ai-copy h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.35rem;
    }

    .value-prop,
    .use-cases,
    .compat-section,
    .team-adoption,
    .repeatability,
    .ai-section,
    .under-the-hood,
    .modernize {
        padding: 64px 0;
    }

    .compat-section.first {
        padding-top: 120px;
    }

    .steps-four {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modernize-card {
        padding: 1.75rem 1.25rem;
    }

    .section-cta-left,
    .section-cta {
        justify-content: center;
    }

    .section-cta a {
        width: 100%;
        max-width: 320px;
    }

    .team-intro {
        margin-top: 0;
        text-align: left;
    }

    .audit-heritage {
        padding: 64px 0;
    }

    .audit-heritage-card {
        padding: 1.75rem 1.25rem;
    }

    .audit-heritage-card > p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .repeatability-copy h2,
    .ai-copy h2,
    .section-header h1,
    .section-header h2 {
        font-size: 1.85rem;
    }
}

.use-case-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.use-case-preview-grid .feature-card {
    padding: 1.5rem;
}

.use-case-preview-grid .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.use-cases-hero {
    padding: 140px 0 80px;
    background: white;
}

.use-case-detail {
    padding: 80px 0;
    background: white;
}

.use-case-detail.alt {
    background: #f8fafc;
}

.use-case-detail[id] {
    scroll-margin-top: 96px;
}

.use-case-detail .use-cases-grid {
    margin-bottom: 1rem;
}

.detail-block {
    margin: 2.75rem auto 0;
    max-width: 760px;
}

.use-case-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.use-case-examples .detail-block {
    margin: 0;
    max-width: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem 1.6rem;
}

.use-case-detail.alt .use-case-examples .detail-block {
    background: white;
}

.detail-block h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem;
}

.detail-block p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.detail-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: start;
}

.detail-split img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

@media (max-width: 1100px) {
    .use-case-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .detail-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .use-cases-hero,
    .use-case-detail {
        padding: 64px 0;
    }

    .use-cases-hero {
        padding-top: 120px;
    }

    .use-case-preview-grid,
    .use-case-examples {
        grid-template-columns: 1fr;
    }
}

/* Features product page */
.features-hero {
    min-height: auto;
    padding: 140px 0 72px;
}

.fp-jump {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.85rem 0;
}

.fp-jump-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-jump a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
}

.fp-jump a:hover {
    color: #6366f1;
}

.fp-alias {
    display: block;
    height: 0;
    overflow: hidden;
    scroll-margin-top: 96px;
}

.fp-section {
    padding: 88px 0;
    background: white;
}

.fp-section.alt {
    background: #f8fafc;
}

.fp-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.fp-copy h2 {
    font-size: 2.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.fp-copy > p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 1rem;
}

.fp-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.5rem;
}

.fp-list li {
    position: relative;
    padding-left: 1.35rem;
    color: #4b5563;
    font-size: 0.97rem;
    line-height: 1.5;
}

.fp-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #6366f1;
}

.fp-visual .product-video-wrap {
    max-width: 100%;
    margin: 0;
}

.fp-visual-caption {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fp-callout-inline {
    background: #eef2ff;
    border-left: 4px solid #6366f1;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1f2937;
    margin: 1.25rem 0 0;
}

.fp-callout,
.fp-highlight {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
}

.fp-section.alt .fp-callout,
.fp-section.alt .fp-highlight {
    background: white;
}

.fp-callout h3,
.fp-highlight h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fp-callout p,
.fp-highlight p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.fp-callout p + p {
    margin-top: 0.75rem;
}

.fp-source-grid,
.fp-viz-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.fp-viz-row {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}

.fp-source-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.35rem 1.4rem;
}

.fp-source-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.fp-source-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fp-source-card li,
.fp-source-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 0.35rem;
}

.fp-source-card p {
    margin: 0;
}

.fp-beta {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    vertical-align: middle;
}

.fp-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.fp-cap {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.fp-section.alt .fp-cap {
    background: white;
}

.fp-stat-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
}

.fp-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.fp-stat-value {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.fp-stat-copy {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.fp-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
}

.fp-compare-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.fp-compare-card.featured {
    border-color: #c7d2fe;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.12);
}

.fp-compare-card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.fp-compare-card code {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.fp-compare-arrow {
    font-size: 1.75rem;
    color: #6366f1;
    font-weight: 600;
}

.fp-compare-note {
    text-align: center;
    max-width: 640px;
    margin: 1.25rem auto 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.fp-integrate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .fp-source-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-list,
    .fp-cap-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .fp-split,
    .fp-integrate-grid,
    .fp-viz-row,
    .fp-compare {
        grid-template-columns: 1fr;
    }

    .fp-compare-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .fp-copy h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-hero {
        padding: 120px 0 48px;
    }

    .fp-section {
        padding: 64px 0;
    }

    .fp-source-grid,
    .fp-list,
    .fp-cap-grid {
        grid-template-columns: 1fr;
    }

    .fp-copy h2 {
        font-size: 1.85rem;
    }

    .fp-stat-value {
        font-size: 2rem;
    }
}