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

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 4K and Ultra-Wide Screen Optimization */
@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }

    body {
        font-size: 18px;
    }

    h1 {
        font-size: 68px !important;
    }

    h2 {
        font-size: 52px !important;
    }

    .pricing-card, .demo-card, .feature-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero {
        padding: 80px 0 180px;
    }
}

/* Desktop - Fill viewport with hero section */
@media (min-width: 1025px) {
    .hero {
        padding: 60px 0 260px;
    }
}

/* Navigation */
.navbar {
    background: #1b3f65;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    text-decoration: none;
    transition: opacity 0.2s;
    z-index: 101;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 103;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.btn-nav {
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(135deg, #fa8862 0%, #ff6b45 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
    animation: gentle-circle 3s linear infinite;
    box-shadow: 0 4px 14px rgba(250, 136, 98, 0.4);
}

.btn-nav:hover {
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 100%);
    opacity: 1 !important;
    box-shadow: 0 6px 20px rgba(250, 136, 98, 0.5);
    transform: translateY(-2px);
    animation: none;
}

/* Buttons */
.btn-primary {
    background: #1b3f65;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background: #153350;
}

/* Responsive Navigation - Tablet & Mobile (Hamburger Menu) */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-close {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #1b3f65;
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        align-items: flex-start;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 102;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        margin-top: 12px;
    }

    .logo img {
        height: 40px;
    }

    .container {
        padding: 0 24px;
    }
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
    .nav-links {
        width: 280px;
    }

    .logo img {
        height: 36px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 62%;
        right: -100%;
        padding: 80px 24px 24px;
        border-radius: 0;
    }

    .logo img {
        height: 32px;
    }

    .container {
        padding: 0 16px;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #fef8f5 0%, #fcf6f3 50%, #f8f5f2 100%);
    min-height: calc(100vh - 64px); /* Full viewport minus navbar height */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(47, 107, 215, 0.03) 0%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -250px;
    left: -250px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(250, 136, 98, 0.06) 0%, transparent 75%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.nowrap-line {
    white-space: nowrap;
}

.highlight-text {
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 500;
}

/* Lead Form */
.lead-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.lead-form input {
    padding: 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.lead-form input:focus {
    outline: none;
    border-color: #2F6BD7;
    box-shadow: 0 0 0 3px rgba(47, 107, 215, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lead-form input::placeholder {
    color: #9ca3af;
}

.btn-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    box-shadow: 0 4px 14px rgba(250, 136, 98, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    box-shadow: 0 6px 20px rgba(250, 136, 98, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover .btn-icon {
    transform: translateX(4px);
}

.privacy-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
}

.privacy-notice svg {
    flex-shrink: 0;
}

/* Secondary CTA */
.secondary-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #2F6BD7;
    color: #2F6BD7;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #2F6BD7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 107, 215, 0.2);
}

.btn-secondary svg {
    transition: transform 0.2s ease;
}

.btn-secondary:hover svg {
    transform: scale(1.1);
}

.cta-divider {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

.link-secondary {
    font-size: 15px;
    color: #2F6BD7;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.link-secondary:hover {
    border-bottom-color: #2F6BD7;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.trust-badge:hover {
    border-color: #2F6BD7;
    box-shadow: 0 4px 12px rgba(47, 107, 215, 0.1);
    transform: translateY(-2px);
}

.trust-badge span {
    font-size: 12px;
    color: #1f2937;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    pointer-events: auto;
    color: #1b3f65;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1b3f65;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease, left 0.3s ease, right 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.image-badge.badge-top {
    top: 32px;
    bottom: auto;
    right: 32px;
    left: auto;
    transform: none;
}

.image-badge.visible {
    opacity: 1;
}

.carousel-pause {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
}

.carousel-pause:hover {
    background: white;
}

.image-caption {
    margin-top: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.image-caption h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1b3f65;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .container {
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .lead-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 13px;
    }

    .logo {
        font-size: 18px;
    }

    .carousel-controls {
        left: -15px;
        right: -15px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .image-caption h3 {
        font-size: 16px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 20px;
    color: #6b7280;
}

/* Pricing Period Toggle */
.pricing-period-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 60px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #1b3f65;
}

.toggle-buttons {
    display: flex;
    gap: 8px;
    background: #f3f4f6;
    padding: 6px;
    border-radius: 50px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.period-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.period-btn:hover {
    color: #1b3f65;
    background: rgba(47, 107, 215, 0.08);
}

.period-btn.active {
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(47, 107, 215, 0.3);
}

.savings-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    background: linear-gradient(135deg, #7bd389 0%, #5fa56d 100%);
    color: white;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.period-btn:not(.active) .savings-badge {
    background: #e5e7eb;
    color: #6b7280;
}

/* Free Trial Banner */
.free-trial-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    margin: 32px auto 0;
    max-width: 900px;
    background: white;
    border: 2px solid #1b3f65;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.free-trial-banner svg {
    flex-shrink: 0;
    stroke: #1b3f65;
}

.free-trial-banner .banner-text {
    font-size: 16px;
    color: #1b3f65;
    line-height: 1.5;
}

.free-trial-banner .banner-text strong {
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
    margin-top: 80px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 12px 40px rgba(27, 63, 101, 0.12);
    transform: translateY(-4px);
}

/* First two pricing cards (Digital AB and Smart AB) with dark blue border */
.pricing-grid .pricing-card:nth-child(1),
.pricing-grid .pricing-card:nth-child(2) {
    border-color: #1b3f65;
}

/* Restore hover border color for first two cards */
.pricing-grid .pricing-card:nth-child(1):hover,
.pricing-grid .pricing-card:nth-child(2):hover {
    border-color: #2F6BD7;
}

.pricing-card-featured {
    border-color: #1b3f65;
    border-width: 3px;
    box-shadow: 0 16px 48px rgba(27, 63, 101, 0.15);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.featured-badge-wrapper {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(250, 136, 98, 0.4);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.featured-badge:hover {
    box-shadow: 0 6px 20px rgba(250, 136, 98, 0.5);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 14px;
    opacity: 0.9;
}

/* Bonus Tooltip */
.bonus-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe9e0 100%);
    border: 2px solid #fa8862;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(250, 136, 98, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.bonus-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.bonus-tooltip-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tooltip-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fa8862;
}

.tooltip-arrow::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffe9e0;
}

.pricing-card-header {
    margin-bottom: 16px;
}

.pricing-card-featured .pricing-card-header {
    padding-top: 0;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1b3f65;
    margin-bottom: 6px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.pricing-includes {
    font-size: 13px;
    color: #1b3f65;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 12px;
    font-style: italic;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}

.pricing-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.price-amount {
    font-size: 40px;
    font-weight: 700;
    color: #1b3f65;
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: #6b7280;
    display: block;
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 16px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.4;
    padding-left: 4px;
}

.feature-hidden {
    display: none;
}

.features-expanded .feature-hidden {
    display: block;
}

.btn-toggle-features {
    background: transparent;
    border: none;
    color: #2F6BD7;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0;
    margin-bottom: 16px;
    transition: color 0.2s;
    width: 100%;
    text-align: center;
}

.btn-toggle-features:hover {
    color: #1b3f65;
}

.toggle-features-item {
    color: #1b3f65;
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 8px;
    font-weight: 600;
}

.toggle-features-item:hover {
    color: #2F6BD7;
}

.toggle-less {
    display: none;
}

.features-expanded .toggle-more {
    display: none;
}

.features-expanded .toggle-less {
    display: inline;
}

.pricing-benefit {
    background: #f0f9ff;
    border-left: 3px solid #2F6BD7;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.pricing-benefit p {
    font-size: 13px;
    color: #1b3f65;
    margin-bottom: 6px;
    font-weight: 500;
}

.pricing-benefit p:last-child {
    margin-bottom: 0;
}

.time-savings {
    color: #ff6b45;
    font-weight: 700;
}

.time-savings-blue {
    color: #1b3f65;
    font-weight: 700;
}

.pricing-trial-notice {
    text-align: center;
    font-size: 14px;
    color: #2F6BD7;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    padding: 12px 16px;
    background: #f0f9ff;
    border-radius: 8px;
    white-space: nowrap;
}

/* Bonus Tooltip - Reusable styles for tooltip content */
.bonus-emoji {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.bonus-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #1b3f65;
}

.bonus-text strong {
    color: inherit;
    font-weight: 700;
}

.bonus-subtext {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #1b3f65;
    background: white;
    color: #1b3f65;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #1b3f65;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 63, 101, 0.2);
}

.btn-pricing:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-pricing-featured {
    background: #1b3f65;
    color: white;
    box-shadow: 0 4px 14px rgba(27, 63, 101, 0.3);
}

.btn-pricing-featured:hover {
    background: #153350;
    border-color: #153350;
    box-shadow: 0 6px 20px rgba(21, 51, 80, 0.4);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Pricing Trust Signals */
.pricing-trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 48px;
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafe 0%, #f0f4f9 100%);
    border-radius: 16px;
    border: 2px solid #cbd5e1;
    overflow-x: auto;
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1b3f65;
    font-size: 15px;
    font-weight: 600;
}

.trust-signal-item svg {
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.testimonials-header p {
    font-size: 18px;
    color: #6b7280;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(350px, 450px));
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 36px 32px 36px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-left: 4px solid #1b3f65;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-left-color: #2F6BD7;
}

.testimonial-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.testimonial-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.testimonial-card:hover .testimonial-logo img {
    filter: grayscale(0%);
}

.testimonial-logos-dual {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
}

.testimonial-logos-dual img {
    max-height: 50px;
    max-width: 45%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.testimonial-card:hover .testimonial-logos-dual img {
    filter: grayscale(0%);
}

.testimonial-quote {
    flex-grow: 1;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.testimonial-quote p::before {
    content: '"';
    font-size: 80px;
    color: #2F6BD7;
    opacity: 0.2;
    position: absolute;
    top: -35px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid #e0e7ff;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1b3f65;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #6b7280;
}

/* Author Photo */
.author-photo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover .author-photo {
    border-color: #2F6BD7;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(47, 107, 215, 0.2);
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        gap: 24px;
    }

    .testimonial-card {
        padding: 32px 28px 32px 36px;
    }

    .author-photo {
        width: 62px;
        height: 62px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-header h2 {
        font-size: 32px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

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

    .author-photo {
        width: 57px;
        height: 57px;
    }
}

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

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 28px 20px 28px 28px;
        gap: 24px;
    }

    .testimonial-logo {
        height: 50px;
    }

    .testimonial-logo img {
        max-height: 50px;
    }

    .testimonial-logos-dual {
        height: 50px;
        gap: 16px;
    }

    .testimonial-logos-dual img {
        max-height: 40px;
    }

    .testimonial-quote p {
        font-size: 15px;
        padding-left: 16px;
    }

    .testimonial-quote p::before {
        font-size: 64px;
        top: -28px;
        left: -12px;
    }

    .author-photo {
        width: 52px;
        height: 52px;
        border-width: 1.5px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info p {
        font-size: 13px;
    }
}

/* Photo Lightbox Modal */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-modal.visible {
    opacity: 1;
}

.photo-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    cursor: default;
}

.photo-modal-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 4px solid #2F6BD7;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    display: block;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.photo-modal.visible .photo-modal-img {
    transform: scale(1);
}

.photo-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #1b3f65;
    font-weight: bold;
    transition: all 0.2s ease;
}

.photo-modal-close:hover {
    background: #2F6BD7;
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .photo-modal-img {
        width: 200px;
        height: 200px;
    }

    .photo-modal-close {
        top: -35px;
        right: -35px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .photo-modal-img {
        width: 160px;
        height: 160px;
        border-width: 3px;
    }

    .photo-modal-close {
        top: -30px;
        right: -30px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}

/* ========================================
   Product Section - Voice Demos Showcase
   ======================================== */

.product-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 15%, #f9fafb 85%, #ffffff 100%);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(47, 107, 215, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Demo Tabs */
.demo-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
}

.demo-tab svg {
    width: 20px;
    height: 20px;
    stroke: #6b7280;
    transition: stroke 0.3s ease;
}

.demo-tab:hover {
    border-color: #2F6BD7;
    color: #2F6BD7;
    transform: translateY(-2px);
}

.demo-tab:hover svg {
    stroke: #2F6BD7;
}

.demo-tab.active {
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
    border-color: #2F6BD7;
    color: white;
    box-shadow: 0 8px 24px rgba(47, 107, 215, 0.3);
}

.demo-tab.active svg {
    stroke: white;
}

/* Demo Tier Badge */
.demo-tier-badge {
    display: inline-block;
    padding: 3px 8px;
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: 12px;
    margin-left: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(250, 136, 98, 0.25);
}

.demo-tab:not(.active) .demo-tier-badge {
    background: linear-gradient(135deg, #ffe4dc 0%, #ffd4c9 100%);
    color: #ff6b45;
    box-shadow: 0 1px 3px rgba(250, 136, 98, 0.15);
}

.demo-tab:hover .demo-tier-badge {
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    color: white;
    box-shadow: 0 3px 8px rgba(250, 136, 98, 0.35);
}

.demo-tab.active .demo-tier-badge {
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    color: white;
    box-shadow: 0 3px 8px rgba(250, 136, 98, 0.35);
}

/* Voice Demos Content */
.voice-demos-content {
    max-width: 900px;
    margin: 0 auto 80px;
}

.demo-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 32px;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.01);
    overflow: hidden;
}

.demo-card.active {
    display: flex;
}

.demo-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='80' viewBox='0 0 400 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,40 Q10,20 20,40 T40,40 Q50,60 60,40 T80,40 Q90,25 100,40 T120,40 Q130,55 140,40 T160,40 Q170,30 180,40 T200,40 Q210,50 220,40 T240,40 Q250,35 260,40 T280,40 Q290,45 300,40 T320,40 Q330,38 340,40 T360,40 Q370,42 380,40 T400,40' fill='none' stroke='%232F6BD7' stroke-width='1.5' opacity='0.08'/%3E%3Cpath d='M0,45 Q12,30 24,45 T48,45 Q60,58 72,45 T96,45 Q108,35 120,45 T144,45 Q156,52 168,45 T192,45 Q204,40 216,45 T240,45 Q252,48 264,45 T288,45 Q300,43 312,45 T336,45 Q348,46 360,45 T384,45 L400,45' fill='none' stroke='%231b3f65' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: 400px 80px;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.demo-card.listening::before {
    opacity: 1;
    animation: wave-slide 20s linear infinite;
}

@keyframes wave-slide {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: 400px;
    }
}

.demo-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 20px 60px rgba(47, 107, 215, 0.18), 0 8px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

.demo-card.listening {
    border-color: #2F6BD7;
    box-shadow: 0 0 0 4px rgba(47, 107, 215, 0.12), 0 24px 64px rgba(47, 107, 215, 0.25), 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.demo-card.listening::after {
    content: '🎧 Läuft gerade';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(47, 107, 215, 0.3);
    animation: slide-in-badge 0.3s ease;
}

@keyframes slide-in-badge {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Demo Icon */
.demo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.demo-card:hover .demo-icon {
    transform: scale(1.1);
}

.demo-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1b3f65;
    margin-bottom: 12px;
    line-height: 1.3;
}

.demo-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 28px;
    flex-grow: 1;
}

/* Custom Audio Player */
.audio-player {
    width: 100%;
    background: #f9fafb;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.audio-player:hover {
    background: #f3f4f6;
    border-color: #2F6BD7;
}

/* Play Button */
.play-btn {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #1b3f65 0%, #2F6BD7 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 12px rgba(27, 63, 101, 0.3);
    position: relative;
    animation: gentle-pulse 3s ease-in-out infinite;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b3f65 0%, #2F6BD7 100%);
    opacity: 0;
    animation: pulse-ring 3s ease-in-out infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 63, 101, 0.4);
    animation: none;
}

.play-btn:hover::before {
    animation: none;
}

.play-btn:active {
    transform: scale(0.95);
}

.audio-player.playing .play-btn {
    animation: none;
}

.audio-player.playing .play-btn::before {
    animation: none;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0;
        transform: scale(1.3);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.audio-player.playing .play-icon {
    display: none;
}

.audio-player.playing .pause-icon {
    display: block !important;
}

/* Progress Container */
.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1b3f65 0%, #2F6BD7 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #2F6BD7;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s;
}

.audio-player.playing .progress-fill::after {
    opacity: 1;
}

/* Time Display */
.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    font-variant-numeric: tabular-nums;
}

/* Audio Equalizer Visualization */
.audio-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 24px;
    margin: 0 4px 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-player.playing .audio-equalizer {
    opacity: 1;
}

.audio-equalizer .bar {
    width: 3px;
    background: linear-gradient(180deg, #2F6BD7 0%, #1b3f65 100%);
    border-radius: 2px;
    height: 8px;
    transform-origin: bottom;
    animation: equalize 0.8s ease-in-out infinite;
}

.audio-equalizer .bar:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 0.6s;
}

.audio-equalizer .bar:nth-child(2) {
    animation-delay: 0.15s;
    animation-duration: 0.8s;
}

.audio-equalizer .bar:nth-child(3) {
    animation-delay: 0.3s;
    animation-duration: 0.7s;
}

.audio-equalizer .bar:nth-child(4) {
    animation-delay: 0.45s;
    animation-duration: 0.9s;
}

@keyframes equalize {
    0%, 100% {
        height: 8px;
    }
    20% {
        height: 18px;
    }
    40% {
        height: 12px;
    }
    60% {
        height: 20px;
    }
    80% {
        height: 14px;
    }
}

/* Demo Duration Badge */
.demo-duration {
    font-size: 13px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Transcript Toggle */
.transcript-toggle {
    background: none;
    border: none;
    color: #2F6BD7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: all 0.2s ease;
    margin: 0 auto;
}

.transcript-toggle:hover {
    color: #1b3f65;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.transcript-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Transcript Content */
.transcript-content {
    margin-top: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 3px solid #2F6BD7;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transcript-content:not([hidden]) {
    max-height: 600px;
    opacity: 1;
    margin-top: 16px;
}

.transcript-text {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

.transcript-text strong {
    color: #1b3f65;
    font-weight: 600;
}

/* UI Showcase Section */
.ui-showcase {
    margin: 80px 0;
    padding: 60px 0;
    background: white;
    border-radius: 24px;
}

.ui-showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.ui-showcase-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 16px 0 12px;
}

.ui-showcase-header p {
    font-size: 18px;
    color: #6b7280;
}

.ui-screens-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.ui-screens-single {
    max-width: 900px;
    margin: 0 auto;
}

.ui-screen-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Browser Frame Mockup */
.browser-frame {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.browser-frame:hover {
    box-shadow: 0 12px 48px rgba(47, 107, 215, 0.15);
    transform: translateY(-4px);
}

.browser-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-address {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.browser-content {
    background: white;
    position: relative;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot Placeholder */
.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px;
    color: #9ca3af;
}

.screenshot-placeholder svg {
    opacity: 0.5;
}

.screenshot-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
}

.screenshot-placeholder span {
    font-size: 14px;
    color: #9ca3af;
}

.screenshot-placeholder.small {
    padding: 20px;
}

.screenshot-placeholder.small p {
    font-size: 14px;
}

.screenshot-placeholder.small span {
    display: none;
}

/* UI Screen Labels */
.ui-screen-label {
    text-align: center;
}

.ui-screen-label h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1b3f65;
    margin: 0 0 8px;
}

.ui-screen-label p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Dual Screens Layout - Equal weight to both screenshots */

/* Enhanced UI Screen Card */
.ui-screen-card:hover .browser-frame {
    border-color: #2F6BD7;
}

.ui-screen-card:hover .ui-screen-label h4 {
    color: #2F6BD7;
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 12px 32px rgba(47, 107, 215, 0.15), 0 4px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-6px);
}

.feature-icon {
    margin: 0 auto 20px;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1b3f65;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f9fafb;
}

.partners-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 50px;
}

.partners-grid {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-scroll {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: opacity(1);
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    padding: 12px;
}

.partner-logo:hover {
    filter: brightness(1.1) opacity(1);
    transform: scale(1.15);
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Pricing Responsive */
@media (max-width: 1024px) {
    .pricing-period-toggle {
        gap: 16px;
        margin: 32px 0 50px;
    }

    .toggle-label {
        font-size: 15px;
    }

    .period-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .pricing-grid {
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-featured {
        transform: scale(1.02);
    }

    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .pricing-trust-signals {
        gap: 32px;
        padding: 24px;
        margin-top: 48px;
    }

    .trust-signal-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing-header h2 {
        font-size: 32px;
    }

    .pricing-header p {
        font-size: 18px;
    }

    .pricing-period-toggle {
        flex-direction: column;
        gap: 12px;
        margin: 28px 0 40px;
    }

    .toggle-buttons {
        width: 100%;
        max-width: 400px;
    }

    .period-btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 13px;
    }

    .savings-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .free-trial-banner {
        flex-direction: column;
        gap: 8px;
        padding: 14px 20px;
        margin: 24px auto 0;
        text-align: center;
    }

    .free-trial-banner .banner-text {
        font-size: 14px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .bonus-tooltip {
        width: 300px;
        padding: 14px;
    }

    .bonus-emoji {
        font-size: 24px;
    }

    .bonus-text {
        font-size: 13px;
    }

    .pricing-trust-signals {
        gap: 32px;
        padding: 24px 20px;
        margin-top: 40px;
    }

    .trust-signal-item {
        font-size: 13px;
    }

    .partners {
        padding: 60px 0;
    }

    .partners-title {
        margin-bottom: 40px;
    }
}

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

    .pricing-header {
        margin-bottom: 40px;
    }

    .pricing-header h2 {
        font-size: 28px;
    }

    .period-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .savings-badge {
        font-size: 8px;
        padding: 1px 5px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .price-amount {
        font-size: 36px;
    }

    .bonus-tooltip {
        width: 280px;
        padding: 12px;
    }

    .bonus-emoji {
        font-size: 20px;
    }

    .bonus-text {
        font-size: 12px;
    }

    .bonus-subtext {
        font-size: 11px;
    }

    .pricing-trust-signals {
        gap: 20px;
        padding: 20px 16px;
        margin-top: 32px;
    }

    .trust-signal-item {
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .trust-signal-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}

/* Getting Started Section */
.getting-started {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #2F6BD7;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(47, 107, 215, 0.2);
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Gradient text only for product section */
.product-section .section-header h2 {
    background: linear-gradient(135deg, #1b3f65 0%, #2F6BD7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.tab-button {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.tab-button:hover {
    border-color: #2F6BD7;
    color: #1b3f65;
}

.tab-button.active {
    background: #1b3f65;
    border-color: #1b3f65;
    color: white;
}

/* Tab Content - removed, now using single timeline */

/* Steps Horizontal */
.steps-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: visible;
}

.step-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
    max-width: 160px;
    opacity: 0.35;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.step-h.highlighted {
    opacity: 1;
}

.step-connector {
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.step-connector.highlighted {
    opacity: 1;
}

.step-number-h {
    width: 60px;
    height: 60px;
    background: #1b3f65;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(27, 63, 101, 0.3);
    margin-bottom: 16px;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.step-content-h {
    background: white;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.step-content-h:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.step-content-h h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1b3f65;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-content-h p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
    margin: 0;
}

/* Step CTA - Interactive Button Hover */
.step-cta {
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-cta:hover {
    transform: translateY(-2px);
}

.step-cta:hover .step-content-h {
    background: #1b3f65;
    box-shadow: 0 6px 20px rgba(27, 63, 101, 0.2);
}

.step-cta:hover .step-content-h h3,
.step-cta:hover .step-content-h p {
    color: white;
}

.step-cta:hover .step-badge {
    background: white;
    color: #1b3f65;
    font-weight: 700;
}

/* Step Connector - additional styles */
.step-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2F6BD7, #1b3f65);
    margin: 0 -5px;
    align-self: flex-start;
    margin-top: 30px;
    position: relative;
    flex-shrink: 0;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #1b3f65;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Upgrade Divider - Compact vertical design */
.upgrade-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    opacity: 1 !important;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    animation: gentle-bounce 3s ease-in-out infinite;
}

.upgrade-divider:hover {
    transform: scale(1.05);
    animation: none;
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(1.5px);
    }
    50% {
        transform: translateY(-1.5px);
    }
}

@keyframes gentle-circle {
    0% {
        transform: translate(0, 2px);
    }
    14.28% {
        transform: translate(-1.4px, 1.4px);
    }
    28.57% {
        transform: translate(-2px, 0);
    }
    42.86% {
        transform: translate(-1.4px, -1.4px);
    }
    57.14% {
        transform: translate(0, -2px);
    }
    71.43% {
        transform: translate(1.4px, -1.4px);
    }
    85.71% {
        transform: translate(2px, 0);
    }
    100% {
        transform: translate(1.4px, 1.4px);
    }
}

/* Counterclockwise circular animation with 6px radius (3x amplitude) */
@keyframes gentle-circle-counterclockwise {
    0% {
        transform: translate(0, 6px);
    }
    14.28% {
        transform: translate(4.2px, 4.2px);
    }
    28.57% {
        transform: translate(6px, 0);
    }
    42.86% {
        transform: translate(4.2px, -4.2px);
    }
    57.14% {
        transform: translate(0, -6px);
    }
    71.43% {
        transform: translate(-4.2px, -4.2px);
    }
    85.71% {
        transform: translate(-6px, 0);
    }
    100% {
        transform: translate(-4.2px, 4.2px);
    }
}

.divider-line {
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #2F6BD7, #fa8862);
    flex-shrink: 0;
}

.divider-label {
    background: linear-gradient(135deg, #fa8862 0%, #ff6b45 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(250, 136, 98, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

/* Step Badges */
.step-badge {
    display: block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 23px;
    margin-bottom: 8px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    height: 27px;
    line-height: 19px;
}

.badge-automated {
    background: #dcfce7;
    color: #15803d;
}

.badge-optional {
    background: #fef3c7;
    color: #92400e;
}

.badge-invisible {
    background: transparent;
    color: transparent;
    border: none;
}

/* Step Trust Badge (Image) */
.step-trust-badge {
    display: block;
    margin: 12px auto 8px auto;
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Step Microcopy & Notes */
.step-microcopy {
    font-size: 11px !important;
    color: #6b7280 !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-style: italic;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

.step-note {
    font-size: 11px !important;
    color: #6b7280 !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-style: italic;
    text-align: center;
    width: 100%;
    line-height: 1.4;
}

/* Success Step */
.step-success .step-number-h {
    background: #7bd389;
    font-size: 28px;
}

.step-success .step-content-h {
    border: 2px solid #7bd389;
}

/* Success Step - Blue Variant */
.step-success-blue .step-number-h {
    background: #1b3f65;
    font-size: 28px;
}

/* Getting Started Responsive */
@media (max-width: 1200px) {
    .step-h {
        max-width: 180px;
    }

    .step-connector {
        width: 40px;
    }

    .upgrade-divider {
        padding: 0 15px;
    }

    .divider-label {
        font-size: 13px;
        padding: 10px 18px;
    }
}

@media (max-width: 900px) {
    .getting-started {
        padding: 70px 0;
    }

    /* Switch to vertical layout earlier to prevent horizontal scroll */
    .steps-horizontal {
        flex-direction: column;
        align-items: stretch;
        overflow-x: visible;
    }

    .step-h {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-number-h {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content-h {
        min-height: auto;
        flex: 1;
    }

    .step-connector {
        display: none;
    }

    .upgrade-divider {
        width: 100%;
        padding: 30px 0;
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: center;
    }

    .divider-line {
        width: 60px;
        height: 2px;
    }

    .divider-label {
        font-size: 11px;
        padding: 6px 12px;
        position: static;
        transform: none;
    }
}

@media (max-width: 768px) {
    .getting-started {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 18px;
    }

    .tabs {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .tab-button {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Stack horizontally on tablet */
    .steps-horizontal {
        flex-direction: column;
        align-items: stretch;
    }

    .step-h {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        margin-bottom: 30px;
    }

    .step-number-h {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content-h {
        min-height: auto;
        flex: 1;
    }

    .step-content-h h3 {
        font-size: 17px;
    }

    .step-content-h p {
        font-size: 13px;
    }

    .step-connector {
        display: none;
    }

    .upgrade-divider {
        width: 100%;
        padding: 30px 0;
        margin-bottom: 30px;
        flex-direction: row;
        justify-content: center;
    }

    .divider-line {
        width: 60px;
        height: 2px;
    }

    .divider-label {
        font-size: 11px;
        padding: 6px 12px;
        position: static;
        transform: none;
    }

    .step-success .step-number-h {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .getting-started {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .tabs {
        margin-bottom: 40px;
    }

    .step-h {
        gap: 16px;
        margin-bottom: 25px;
    }

    .step-number-h {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .step-success .step-number-h {
        font-size: 22px;
    }

    .step-content-h {
        padding: 18px 16px;
    }

    .step-content-h h3 {
        font-size: 16px;
    }

    .step-content-h p {
        font-size: 13px;
    }

    .step-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .divider-label {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* ===================================
   About Us Section
   =================================== */

.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Mission Hero */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-hero h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin: 16px 0 20px;
    line-height: 1.2;
}

.about-hero-text {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Founders Section */
.about-founders {
    margin: 80px 0;
    text-align: center;
}

.about-founders h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.founder-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 12px 40px rgba(47, 107, 215, 0.15);
    transform: translateY(-8px);
}

.founder-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.founder-card:hover .founder-image {
    border-color: #2F6BD7;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-info h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1b3f65;
    margin: 0 0 8px;
}

.founder-role {
    font-size: 16px;
    font-weight: 600;
    color: #2F6BD7;
    margin: 0 0 16px;
}

.founder-bio {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Core Values Section */
.about-values {
    margin: 80px 0;
    text-align: center;
}

.about-values h3 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.vision-statement {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #2F6BD7;
    border-radius: 12px;
    text-align: left;
}

.vision-statement p {
    font-size: 17px;
    line-height: 1.8;
    color: #1b3f65;
    margin: 0 0 20px 0;
}

.vision-statement p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 28px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 8px 32px rgba(47, 107, 215, 0.12);
    transform: translateY(-4px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
}

.value-card:hover .value-icon svg {
    stroke: white;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1b3f65;
    margin: 0 0 12px;
}

.value-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* About Us Responsive Styles */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }

    .about-hero h2 {
        font-size: 40px;
    }

    .about-hero-text {
        font-size: 18px;
    }

    .founders-grid {
        gap: 40px;
    }

    .values-grid {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-hero {
        margin-bottom: 60px;
    }

    .about-hero h2 {
        font-size: 32px;
    }

    .about-hero-text {
        font-size: 17px;
    }

    .about-founders,
    .about-values {
        margin: 60px 0;
    }

    .about-founders h3,
    .about-values h3 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .founder-card {
        padding: 36px 28px;
    }

    .founder-image {
        width: 140px;
        height: 140px;
    }

    .vision-statement {
        padding: 32px 24px;
        margin-bottom: 50px;
    }

    .vision-statement p {
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .about-hero h2 {
        font-size: 28px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .founder-card {
        padding: 32px 24px;
    }

    .founder-image {
        width: 120px;
        height: 120px;
    }

    .founder-info h4 {
        font-size: 22px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon svg {
        width: 40px;
        height: 40px;
    }
}

/* ===================================
   Legal Pages (Impressum, Datenschutz)
   =================================== */

.legal-section {
    padding: 140px 0 80px;
    background: #f9fafb;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1b3f65;
    margin: 0 0 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2F6BD7;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1b3f65;
    margin: 0 0 16px;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1b3f65;
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 16px;
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 8px 0;
}

.legal-content a:not(.back-button) {
    color: #2F6BD7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-content a:not(.back-button):hover {
    color: #fa8862;
    text-decoration: underline;
}

.legal-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-back-link {
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 10px 24px;
    background: #1b3f65;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s;
}

.back-button:hover {
    background: #153350;
    text-decoration: none;
}

/* ===========================
   INTEGRATIONS PAGE
   =========================== */

.integrations-section {
    padding: 140px 0 80px;
    background: #f9fafb;
    min-height: 100vh;
}

.integrations-content {
    max-width: 1200px;
    margin: 0 auto;
}

.integrations-header {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-header .section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    color: #1b3f65;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.integrations-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.2;
}

.integrations-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legend */
.integration-legend {
    background: white;
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 32px;
    border: 2px solid #e5e7eb;
}

.integration-legend h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 16px;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

/* Matrix Table */
.integration-matrix-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.integration-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.integration-matrix thead {
    background: linear-gradient(135deg, #1b3f65 0%, #2F6BD7 100%);
}

.integration-matrix thead th {
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
    color: white;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-matrix thead th:last-child {
    border-right: none;
}

.integration-matrix thead th.feature-column {
    text-align: left;
    min-width: 200px;
}

.integration-matrix tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.integration-matrix tbody tr:last-child {
    border-bottom: none;
}

.integration-matrix tbody tr:hover:not(.section-header) {
    background: #f9fafb;
}

.integration-matrix tbody td {
    padding: 16px 12px;
    text-align: center;
    vertical-align: middle;
}

.integration-matrix tbody td.feature-name {
    text-align: left;
    font-weight: 500;
    color: #111827;
}

/* Section Headers */
.integration-matrix .section-header td {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 12px 16px;
    font-weight: 600;
    font-size: 13px;
    color: #1b3f65;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    min-width: 60px;
}

.status-supported {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 1.5px solid #6ee7b7;
}

.status-planned {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1.5px solid #fbbf24;
}

.status-not-supported {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 1.5px solid #f87171;
}

.status-na {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #6b7280;
    border: 1.5px solid #d1d5db;
}

.status-unknown {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1.5px solid #60a5fa;
}

/* CTA Box */
.integration-cta {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2F6BD7;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 48px 0 40px;
}

.integration-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px;
}

.integration-cta p {
    font-size: 16px;
    color: #4b5563;
    margin: 0 0 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.integration-cta .btn-primary {
    display: inline-block;
}

/* Integrations Responsive */
@media (max-width: 1024px) {
    .integration-matrix-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .integration-matrix {
        min-width: 800px;
    }
}

@media (max-width: 768px) {
    .integrations-section {
        padding: 120px 0 60px;
    }

    .integrations-header h1 {
        font-size: 36px;
    }

    .integrations-subtitle {
        font-size: 16px;
    }

    .integration-legend {
        padding: 20px 24px;
    }

    .legend-items {
        gap: 16px;
    }

    .integration-matrix {
        font-size: 13px;
        min-width: 700px;
    }

    .integration-matrix thead th {
        padding: 12px 8px;
        font-size: 13px;
    }

    .integration-matrix tbody td {
        padding: 12px 8px;
    }

    .integration-cta {
        padding: 32px 24px;
    }

    .integration-cta h3 {
        font-size: 20px;
    }

    .integration-cta p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .integrations-header h1 {
        font-size: 28px;
    }

    .integrations-subtitle {
        font-size: 15px;
    }

    .integration-legend {
        padding: 16px 20px;
    }

    .legend-items {
        flex-direction: column;
        gap: 12px;
    }

    .integration-matrix {
        font-size: 12px;
        min-width: 600px;
    }

    .integration-matrix thead th {
        padding: 10px 6px;
        font-size: 12px;
    }

    .integration-matrix tbody td {
        padding: 10px 6px;
    }

    .status-badge {
        font-size: 11px;
        padding: 3px 8px;
        min-width: 50px;
    }

    .integration-cta {
        padding: 24px 20px;
    }

    .integration-cta h3 {
        font-size: 18px;
    }

    .integration-cta p {
        font-size: 14px;
    }
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 60px;
    }

    .legal-content {
        padding: 40px 28px;
        border-radius: 12px;
    }

    .legal-content h1 {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content h3 {
        font-size: 17px;
    }

    .legal-content p {
        font-size: 15px;
    }

    .legal-block {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .legal-back-link {
        margin-top: 50px;
        padding-top: 32px;
    }

    .back-button {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 100px 0 50px;
    }

    .legal-content {
        padding: 32px 20px;
    }

    .legal-content h1 {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .legal-content h2 {
        font-size: 18px;
    }

    .legal-content h3 {
        font-size: 16px;
    }

    .legal-content p {
        font-size: 14px;
    }

    .back-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Footer Section */
.footer {
    background: #1b3f65;
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #fa8862;
    transform: translateX(2px);
}

/* Footer About Column */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
    max-width: 280px;
}

/* Footer Contact Column */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0 !important;
}

.footer-icon {
    flex-shrink: 0;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover + .footer-icon,
.footer-contact-list li:hover .footer-icon {
    color: #fa8862;
}

.footer-contact-list span {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #fa8862;
    transform: scale(1.1);
    color: white;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    background: #0f2744;
}

.footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 50px;
    }

    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-bottom {
        padding: 28px 0;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

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

    .footer-content {
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .footer-column a,
    .footer-tagline,
    .footer-contact-list span {
        font-size: 13px;
    }

    .footer-social {
        gap: 12px;
        margin-top: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ========================================
   Product Section - Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .demo-card {
        padding: 32px 24px;
        min-height: 420px;
    }

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

    .ui-screens-dual {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 60px 0;
    }

    .section-badge {
        font-size: 13px;
        padding: 6px 16px;
    }

    .demo-tabs {
        gap: 8px;
    }

    .demo-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .demo-tab svg {
        width: 18px;
        height: 18px;
    }

    .demo-tier-badge {
        font-size: 9px;
        padding: 2px 6px;
        margin-left: 6px;
    }

    .demo-card {
        padding: 28px 20px;
        min-height: 380px;
    }

    .ui-showcase {
        margin: 60px 0;
        padding: 40px 0;
    }

    .ui-screens-dual {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ui-screens-single {
        max-width: 100%;
    }

    .demo-card.listening::after {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 5px 12px;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audio-player {
        padding: 16px;
    }

    .play-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .audio-equalizer {
        height: 20px;
        margin: 0 2px 0 8px;
        gap: 2px;
    }

    .audio-equalizer .bar {
        width: 2.5px;
    }

    .transcript-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 40px 0;
    }

    .section-badge {
        font-size: 12px;
        padding: 5px 14px;
    }

    .demo-tabs {
        gap: 6px;
    }

    .demo-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .demo-tab span {
        display: none;
    }

    .demo-tier-badge {
        display: none;
    }

    .demo-tab svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    .demo-card {
        padding: 24px 18px;
        min-height: 340px;
    }

    .ui-showcase {
        margin: 40px 0;
        padding: 30px 0;
    }

    .ui-showcase-header h3 {
        font-size: 28px;
    }


    .demo-card h3 {
        font-size: 20px;
    }

    .demo-card.listening::after {
        font-size: 10px;
        padding: 4px 10px;
    }

    .demo-icon {
        width: 64px;
        height: 64px;
    }

    .demo-icon svg {
        width: 36px;
        height: 36px;
    }

    .audio-equalizer {
        height: 18px;
        margin: 0 2px 0 6px;
        gap: 2px;
    }

    .audio-equalizer .bar {
        width: 2px;
    }

    .transcript-toggle {
        font-size: 13px;
    }

    .transcript-content {
        padding: 14px;
    }

    .transcript-text {
        font-size: 13px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-card h4 {
        font-size: 17px;
    }

    .feature-card p {
        font-size: 13px;
    }
}

/* ========================
   Contact Section
   ======================== */

.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-top: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1b3f65;
    margin-bottom: 24px;
    text-align: center;
    margin-top: 0;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-top: 0;
}

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row-contact .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F6BD7;
    box-shadow: 0 0 0 3px rgba(47, 107, 215, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    margin-top: 8px;
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(250, 136, 98, 0.4);
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #fa8862 0%, #ff6b45 100%);
    box-shadow: 0 6px 20px rgba(250, 136, 98, 0.5);
    transform: translateY(-2px);
}

.btn-contact-submit .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Contact Info Cards */
.contact-form-wrapper,
.contact-info-wrapper {
    margin-top: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-wrapper h3 {
    margin-bottom: 0;
}

.contact-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0;
}

.contact-card:hover {
    border-color: #2F6BD7;
    box-shadow: 0 4px 16px rgba(47, 107, 215, 0.12);
    transform: translateY(-4px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
}

.contact-card:hover .contact-card-icon svg {
    stroke: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1b3f65;
    margin: 0 0 8px;
}

.contact-link {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: #2F6BD7;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #1b3f65;
}

.contact-card-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0 0;
}

/* WhatsApp Card Special Styling */
.contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.contact-card-whatsapp:hover .contact-card-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.contact-card-whatsapp:hover .contact-card-icon svg {
    fill: white;
}

.contact-card-whatsapp .contact-card-icon svg {
    fill: #22c55e;
    transition: fill 0.3s ease;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
    margin-bottom: 8px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Calendar Button */
.btn-calendar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2F6BD7 0%, #1b3f65 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(47, 107, 215, 0.3);
    margin-bottom: 8px;
}

.btn-calendar:hover {
    background: linear-gradient(135deg, #1b3f65 0%, #153152 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 215, 0.4);
    transform: translateY(-2px);
}

.btn-calendar svg {
    flex-shrink: 0;
}

/* Calendar Card Icon Styling */
.contact-card-calendar .contact-card-icon {
    background: linear-gradient(135deg, rgba(47, 107, 215, 0.1) 0%, rgba(27, 63, 101, 0.1) 100%);
}

.contact-card-calendar .contact-card-icon svg {
    stroke: #2F6BD7;
}

/* ========================
   Contact Section - Responsive
   ======================== */

@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-subtitle {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .form-row-contact {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row-contact .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-contact-submit {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-card {
        padding: 20px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
    }

    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-card-content h4 {
        font-size: 15px;
    }

    .contact-link {
        font-size: 16px;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-calendar {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Audio Demo Coming Soon Overlay */
/* ================================ */
.audio-demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-demo-overlay.active {
    display: flex;
}

.audio-demo-overlay.visible {
    opacity: 1;
}

.audio-demo-overlay-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.audio-demo-overlay.visible .audio-demo-overlay-content {
    transform: scale(1);
}

.audio-demo-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.audio-demo-overlay-close:hover {
    background: #f3f4f6;
}

.audio-demo-overlay-close svg {
    width: 24px;
    height: 24px;
    stroke: #6b7280;
}

.audio-demo-overlay-icon {
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-demo-overlay-icon svg {
    width: 64px;
    height: 64px;
}

.audio-demo-overlay-message {
    font-size: 20px;
    color: #1b3f65;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.audio-demo-overlay-secondary {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.btn-audio-demo-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b45 0%, #fa8862 50%, #ff6b45 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(250, 136, 98, 0.3);
}

.btn-audio-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 136, 98, 0.4);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .audio-demo-overlay-content {
        padding: 32px 24px;
    }

    .audio-demo-overlay-icon svg {
        width: 48px;
        height: 48px;
    }

    .audio-demo-overlay-message {
        font-size: 18px;
        margin: 0 0 12px 0;
    }

    .audio-demo-overlay-secondary {
        font-size: 15px;
        margin: 0 0 20px 0;
    }

    .btn-audio-demo-cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ============================================
   EXTREME DEVICE SIZE OPTIMIZATIONS
   ============================================ */

/* iPhone 13 Mini and very small phones (<400px) */
@media (max-width: 399px) {
    /* Navigation */
    .container {
        padding: 0 12px;
    }

    .logo img {
        height: 28px;
    }

    /* Hero Section */
    .hero {
        padding: 32px 0 50px;
    }

    .hero-text h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .lead-form {
        padding: 20px;
        border-radius: 12px;
    }

    .lead-form input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .btn-hero-cta {
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }

    .trust-badges {
        gap: 12px;
    }

    .trust-badge {
        padding: 10px;
        font-size: 11px;
    }

    .trust-badge svg {
        width: 18px;
        height: 18px;
    }

    /* Pricing Section */
    .pricing {
        padding: 60px 0;
    }

    .pricing-header h2 {
        font-size: 26px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-card-header h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 32px;
    }

    .price-period {
        font-size: 13px;
    }

    /* Product Demo */
    .demo-card {
        padding: 20px;
    }

    .play-button {
        width: 44px;
        height: 44px;
    }

    /* Testimonials */
    .testimonials {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 24px 16px 24px 24px;
    }

    .testimonial-quote p {
        font-size: 14px;
    }

    .author-photo {
        width: 48px;
        height: 48px;
    }

    .author-name {
        font-size: 13px;
    }

    .author-company {
        font-size: 12px;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0;
    }

    .footer-column h4 {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 12px;
    }

    /* Getting Started Timeline */
    .timeline-step {
        min-width: 140px;
    }

    .step-title {
        font-size: 12px;
    }

    /* Contact Section */
    .contact-card {
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    /* UI Showcase */
    .browser-frame {
        border-radius: 8px;
    }

    .browser-header {
        padding: 8px;
    }

    .browser-address {
        font-size: 10px;
    }

    /* About Us Page */
    .about-section {
        padding: 40px 0;
    }

    .about-hero h2 {
        font-size: 24px;
    }

    .about-hero-text {
        font-size: 15px;
    }

    .founder-card {
        padding: 28px 20px;
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }

    .founder-info h4 {
        font-size: 20px;
    }

    .founder-role {
        font-size: 14px;
    }

    .founder-bio {
        font-size: 13px;
    }

    .vision-statement {
        padding: 24px 16px;
        margin-bottom: 40px;
    }

    .vision-statement p {
        font-size: 14px;
    }

    .value-card {
        padding: 28px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-card h4 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 13px;
    }

    /* Legal Pages */
    .legal-section {
        padding: 80px 0 40px;
    }

    .legal-content {
        padding: 24px 16px;
    }

    .legal-content h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .legal-content h2 {
        font-size: 16px;
    }

    .legal-content h3 {
        font-size: 14px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 13px;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Integrations Page */
    .integrations-section {
        padding: 80px 0;
    }

    .integrations-header h1 {
        font-size: 26px;
    }

    .integrations-header p {
        font-size: 14px;
    }

    .legend-item {
        font-size: 11px;
    }

    .compatibility-table {
        font-size: 11px;
    }

    .compatibility-table th {
        padding: 10px 6px;
        font-size: 11px;
    }

    .compatibility-table td {
        padding: 10px 6px;
        font-size: 11px;
    }

    .status-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Ultra-wide and 4K displays (>3000px) */
@media (min-width: 3000px) {
    /* Increase container max-width for better use of space */
    .container {
        max-width: 2000px;
    }

    /* Scale up body font for readability */
    body {
        font-size: 20px;
    }

    /* Hero Section */
    .hero-text h1 {
        font-size: 76px;
        line-height: 1.2;
        max-width: 900px;
    }

    .hero-subtitle {
        font-size: 26px;
        line-height: 1.7;
        max-width: 800px;
    }

    .lead-form {
        max-width: 700px;
        padding: 40px;
    }

    .lead-form input {
        padding: 18px 24px;
        font-size: 18px;
    }

    .btn-hero-cta {
        padding: 20px 48px;
        font-size: 20px;
    }

    .btn-secondary {
        padding: 16px 32px;
        font-size: 18px;
    }

    .trust-badge {
        padding: 16px 20px;
        font-size: 16px;
    }

    .trust-badge svg {
        width: 28px;
        height: 28px;
    }

    /* Section Headings */
    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 24px;
    }

    /* Pricing Cards */
    .pricing {
        padding: 140px 0;
    }

    .pricing-card {
        max-width: 550px;
        padding: 48px 36px;
    }

    .pricing-card-header h3 {
        font-size: 32px;
    }

    .price-amount {
        font-size: 56px;
    }

    .price-period {
        font-size: 20px;
    }

    .feature-item {
        font-size: 18px;
        padding: 12px 0;
    }

    /* Testimonials */
    .testimonials {
        padding: 120px 0;
    }

    .testimonials-grid {
        gap: 48px;
        max-width: 2000px;
        margin: 0 auto;
    }

    .testimonial-card {
        padding: 48px 40px 48px 52px;
    }

    .testimonial-logo {
        height: 80px;
    }

    .testimonial-logo img {
        max-height: 80px;
    }

    .testimonial-quote p {
        font-size: 20px;
        line-height: 1.8;
    }

    .testimonial-quote p::before {
        font-size: 100px;
    }

    .author-photo {
        width: 80px;
        height: 80px;
    }

    .author-name {
        font-size: 20px;
    }

    .author-company {
        font-size: 18px;
    }

    /* Product Demo */
    .demo-card {
        padding: 40px;
    }

    .demo-card h3 {
        font-size: 28px;
    }

    .play-button {
        width: 72px;
        height: 72px;
    }

    /* Feature Cards */
    .feature-card {
        max-width: 550px;
        padding: 40px;
    }

    .feature-icon {
        width: 88px;
        height: 88px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-card h4 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 18px;
    }

    /* Footer */
    .footer-main {
        padding: 100px 0;
    }

    .footer-grid {
        gap: 80px;
    }

    .footer-column h4 {
        font-size: 20px;
    }

    .footer-links a,
    .contact-item {
        font-size: 18px;
    }

    .social-icon {
        width: 52px;
        height: 52px;
    }

    .social-icon svg {
        width: 26px;
        height: 26px;
    }

    /* Getting Started Timeline */
    .timeline-container {
        max-width: 2200px;
    }

    .timeline-step {
        min-width: 220px;
    }

    .step-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
    }

    /* UI Showcase */
    .ui-screens-single {
        max-width: 1400px;
    }

    .browser-header {
        padding: 16px;
    }

    .browser-address {
        font-size: 16px;
    }

    .ui-screen-label h4 {
        font-size: 24px;
    }

    .ui-screen-label p {
        font-size: 18px;
    }

    /* Navigation */
    .nav-links {
        gap: 32px;
        font-size: 18px;
    }

    .logo img {
        height: 60px;
    }

    .btn-nav {
        padding: 14px 32px;
        font-size: 18px;
    }

    /* About Us Page */
    .about-section {
        padding: 140px 0;
    }

    .about-hero {
        max-width: 1000px;
        margin-bottom: 100px;
    }

    .about-hero h2 {
        font-size: 60px;
    }

    .about-hero-text {
        font-size: 24px;
    }

    .about-founders,
    .about-values {
        margin: 100px 0;
    }

    .about-founders h3,
    .about-values h3 {
        font-size: 44px;
        margin-bottom: 60px;
    }

    .founders-grid {
        max-width: 1400px;
        gap: 60px;
    }

    .founder-card {
        max-width: 600px;
        padding: 56px 44px;
    }

    .founder-image {
        width: 200px;
        height: 200px;
        margin-bottom: 32px;
    }

    .founder-info h4 {
        font-size: 32px;
    }

    .founder-role {
        font-size: 20px;
    }

    .founder-bio {
        font-size: 19px;
    }

    .vision-statement {
        max-width: 1200px;
        padding: 56px 48px;
        margin-bottom: 80px;
    }

    .vision-statement p {
        font-size: 22px;
        line-height: 2;
    }

    .values-grid {
        max-width: 2000px;
        gap: 56px;
    }

    .value-card {
        max-width: 600px;
        padding: 56px 40px;
    }

    .value-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 28px;
    }

    .value-icon svg {
        width: 52px;
        height: 52px;
    }

    .value-card h4 {
        font-size: 28px;
    }

    .value-card p {
        font-size: 19px;
    }

    /* Contact CTA */
    .about-contact-cta {
        max-width: 900px;
        padding: 56px 48px;
    }

    .about-contact-cta h3 {
        font-size: 36px;
    }

    .about-contact-cta p {
        font-size: 20px;
    }

    /* Legal Pages */
    .legal-section {
        padding: 180px 0 100px;
    }

    .legal-content {
        max-width: 1200px;
        padding: 80px;
    }

    .legal-content h1 {
        font-size: 64px;
        margin-bottom: 60px;
    }

    .legal-content h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .legal-content h3 {
        font-size: 24px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 20px;
        line-height: 2;
    }

    .back-button {
        padding: 18px 36px;
        font-size: 18px;
    }

    /* Integrations Page */
    .integrations-section {
        padding: 140px 0;
    }

    .integrations-header {
        margin-bottom: 80px;
    }

    .integrations-header h1 {
        font-size: 60px;
    }

    .integrations-header p {
        font-size: 24px;
    }

    .legend-box {
        padding: 32px 40px;
    }

    .legend-item {
        font-size: 18px;
    }

    .compatibility-table-wrapper {
        margin: 60px 0;
    }

    .compatibility-table {
        font-size: 18px;
    }

    .compatibility-table th {
        padding: 20px 16px;
        font-size: 20px;
    }

    .compatibility-table td {
        padding: 18px 16px;
        font-size: 18px;
    }

    .status-badge {
        padding: 8px 16px;
        font-size: 16px;
        min-width: 120px;
    }

    .integrations-cta {
        max-width: 900px;
        padding: 56px 48px;
    }

    .integrations-cta h3 {
        font-size: 36px;
    }

    .integrations-cta p {
        font-size: 20px;
    }
}

/* Extra large 4K displays (>3840px) */
@media (min-width: 3840px) {
    .container {
        max-width: 2400px;
    }

    body {
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 88px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    h2 {
        font-size: 64px;
    }

    .pricing-card,
    .demo-card,
    .feature-card {
        max-width: 650px;
    }
}
