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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Link Reset */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

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

.logo {
    width: 48px;
    height: 48px;
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.brand-tagline {
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
    margin-top: 2px;
    font-style: normal;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.nav-link:hover {
    color: #667eea;
}

/* Desktop Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown-link {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
    background: #f8f9ff;
    color: #667eea;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* hero-stats removed */

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotateY(-5deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    padding: 40px 20px 20px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.app-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.drawers {
    flex: 1;
    padding: 20px 0;
}

.drawer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.1;
}

.drawer-name {
    font-weight: 500;
    color: #1a1a1a;
}

.drawer-count {
    font-size: 12px;
    color: #666;
}

.camera-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Section Styles */
section {
    padding: 40px 0;
}

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

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    background: white;
    padding: 80px 0;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 50%, #e8f2ff 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.2);
    line-height: 1;
    font-family: Georgia, serif;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    text-align: right;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.steps .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    line-height: 1;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
}

.steps .step-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    color: #666;
    margin-bottom: 20px;
}

.step-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.step-arrow {
    font-size: 24px;
    color: #667eea;
    font-weight: bold;
}

/* statistics section removed */

/* Download Section */
.download {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

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

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.store-button {
    display: block;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    height: 65px;
    width: auto;
    max-width: 240px;
}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones {
    position: relative;
    width: 300px;
    height: 400px;
}

.phone {
    position: absolute;
    width: 180px;
    height: 320px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.phone-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg);
    z-index: 1;
}

.phone-2 {
    top: 40px;
    right: 0;
    transform: rotate(10deg);
    z-index: 2;
}

.phones .phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 20px 15px;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.app-logo {
    font-size: 40px;
}

.app-name {
    font-weight: 600;
    color: #1a1a1a;
}

.document-preview {
    font-size: 60px;
    opacity: 0.3;
}

.scanning-animation {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: scan 2s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

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

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-columns-group {
    display: flex;
    gap: 40px;
}

.footer-brand .brand-name {
    color: white;
}

.footer-description {
    margin-top: 16px;
    color: #ccc;
    line-height: 1.6;
}

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

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-form {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.download-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.download-form input:focus {
    outline: none;
    border-color: #667eea;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100vw;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-menu .nav-link {
        padding: 20px 30px;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
        width: 100%;
        display: block;
        margin: 0;
    }

    .nav-menu .nav-link:hover {
        background: rgba(102, 126, 234, 0.05);
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        padding: 20px 30px;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        cursor: pointer;
    }

    .dropdown-toggle:hover {
        background: rgba(102, 126, 234, 0.05);
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(248, 250, 252, 0.8);
        border-radius: 0;
        padding: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown-link {
        padding: 16px 50px;
        font-size: 16px;
        color: #667eea;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-dropdown-link:last-child {
        border-bottom: none;
    }

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

    /* Primary button in mobile menu */
    .nav-menu .btn-primary {
        margin: 20px 30px;
        padding: 16px 32px;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        border-radius: 12px;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    /* hero-stats removed */

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

    .feature-card {
        padding: 30px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 30px;
    }

    .review-card::before {
        font-size: 40px;
        top: 15px;
        left: 20px;
    }

    .review-text {
        font-size: 15px;
        padding-left: 15px;
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-button img {
        height: 50px;
        width: auto;
        max-width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-columns-group {
        flex-direction: column;
        gap: 30px;
    }

    .download-form {
        flex-direction: column;
    }

    .phones {
        width: 250px;
        height: 350px;
    }

    .phone {
        width: 150px;
        height: 280px;
    }
}

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

    section {
        padding: 30px 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .store-button img {
        height: 45px;
        width: auto;
        max-width: 180px;
    }

    .download-buttons {
        gap: 12px;
    }

    /* hero-stats removed */
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 3000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.notification button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification button:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation classes for intersection observer */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.loaded {
    opacity: 1;
}

/* Lazy loading placeholder */
img.lazy {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

img.lazy:not(.lazy) {
    filter: none;
}

/* Heroicons utility classes */
.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 1.5rem;
}

.h-8 {
    height: 1.5rem;
}

.w-12 {
    width: 2rem;
}

.h-12 {
    height: 2rem;
}

/* Icon styling for better consistency */
.drawer-icon svg,
.step-visual svg,
.app-logo svg,
.document-preview svg,
.phone-icon svg,
.ai-icon svg,
.table-icon svg {
    color: currentColor;
}

/* Fix for drawer icons */
.drawer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Payment Confirmation Page */
.payment-success {
    min-height: calc(100vh - 80px);
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f2ff 100%);
    display: flex;
    align-items: center;
}

.confirmation-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.success-icon svg {
    color: #22c55e;
    width: 80px;
    height: 80px;
}

.confirmation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-message {
    margin-bottom: 40px;
}

.main-message {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 15px;
}

.sub-message {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.next-steps {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
}

.next-steps li:before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.safe-to-close {
    background: #e0f2fe;
    border: 1px solid #b3e5fc;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.safe-to-close p {
    color: #0277bd;
    margin: 0;
    font-weight: 500;
}

.support-info {
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.support-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.support-info a {
    color: #667eea;
    font-weight: 500;
}

.support-info a:hover {
    text-decoration: underline;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .payment-success {
        padding: 100px 0 60px;
    }

    .confirmation-content {
        margin: 0 20px;
        padding: 40px 30px;
    }

    .confirmation-title {
        font-size: 2rem;
    }

    .success-icon svg {
        width: 60px;
        height: 60px;
    }

    .next-steps {
        padding: 20px;
    }
}

/* Credits Page Styles */
.credits {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

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

.credits-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.credits-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.credits-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.credit-packages {
    margin-bottom: 40px;
}

.selector-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

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

.credit-package {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-radius: 16px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.credit-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.credit-package.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.credit-package.recommended {
    border-color: #667eea;
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.credit-package.selected .package-icon {
    transform: scale(1.1);
}

.package-info {
    width: 100%;
}

.package-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.package-credits {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 8px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.package-description {
    color: #666;
    font-size: 0.9rem;
}

.credits-form {
    margin-bottom: 30px;
}

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

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

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.form-input.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 6px;
    min-height: 20px;
}

.form-terms-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #666;
}

.form-terms-info svg {
    color: #667eea;
    flex-shrink: 0;
}

.form-terms-info a {
    color: #667eea;
    text-decoration: underline;
}

.form-terms-info a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.form-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 16px;
}

.payment-methods {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.payment-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    border: 1px solid #e1e5e9;
}

.payment-icon.visa {
    color: #1a1f71;
}

.payment-icon.mastercard {
    color: #eb001b;
}

.payment-icon.apple-pay {
    color: #000;
}

.payment-icon.google-pay {
    color: #4285f4;
}

.credits-faq {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e5e9;
}

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

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Responsive Credits Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .packages-grid {
        gap: 15px;
    }

    .credit-package {
        padding: 25px 15px;
    }

    .package-title {
        font-size: 1.1rem;
    }

    .package-credits {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.6rem;
    }
}

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

    .credits-title {
        font-size: 2.5rem;
    }

    .credits-subtitle {
        font-size: 1.1rem;
    }

    .credits-form-container,
    .credits-faq {
        padding: 30px 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .credit-package {
        padding: 25px 15px;
    }

    .package-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .package-title {
        font-size: 1.1rem;
    }

    .package-credits {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.6rem;
    }

    .package-description {
        font-size: 0.85rem;
    }

    .payment-icons {
        gap: 8px;
    }

    .payment-icon {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Utility classes for SVG icons */
.w-4 {
    width: 1rem; /* 16px */
}

.h-4 {
    height: 1rem; /* 16px */
}

.w-5 {
    width: 1.25rem; /* 20px */
}

.h-5 {
    height: 1.25rem; /* 20px */
}

.w-6 {
    width: 1.5rem; /* 24px */
}

.h-6 {
    height: 1.5rem; /* 24px */
}

.w-8 {
    width: 1.5rem; /* 24px */
}

.h-8 {
    height: 1.5rem; /* 24px */
}

.w-12 {
    width: 2rem; /* 32px */
}

.h-12 {
    height: 2rem; /* 32px */
}

/* Professional Pages Styles */
.hero-profession {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-profession .hero-title {
    color: white;
}

.hero-profession .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-profession .stat-number {
    color: white;
}

.hero-profession .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.hero-profession .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-profession .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.profession-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.profession-benefits {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

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

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.use-case-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.use-case-content {
    flex: 1;
}

.use-case-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.use-case-description {
    color: #666;
    line-height: 1.5;
}

.document-types, .cost-categories, .key-metrics, .performance-metrics, .margin-analytics {
    padding: 80px 0;
    background: #f8fafc;
}

.document-types-grid, .categories-grid, .metrics-grid, .analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.document-type-card, .category-card, .metric-card, .analytics-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.document-type-card:hover, .category-card:hover, .metric-card:hover, .analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.document-icon, .category-icon, .metric-icon, .analytics-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.document-title, .category-title, .metric-title, .analytics-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.document-details, .category-details {
    list-style: none;
    text-align: left;
}

.document-details li, .category-details li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.document-details li:before, .category-details li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.business-benefits {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8fafc;
    font-weight: 600;
    padding: 20px 30px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 30px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    font-weight: 500;
    color: #1a1a1a;
}

.comparison-value {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}

.comparison-value.old {
    background: #fef2f2;
    color: #dc2626;
}

.comparison-value.new {
    background: #f0fdf4;
    color: #16a34a;
    font-weight: 600;
}

.workflow {
    padding: 80px 0;
    background: white;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.workflow-step {
    position: relative;
    padding: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.workflow-step .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 10px;
}

.step-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-details > * + * {
    margin-top: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.roi-calculator, .calculator-card {
    padding: 80px 0;
    background: #f8fafc;
}

.calculator-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 500;
    color: #1a1a1a;
}

.input-group input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.calculator-results {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 10px -20px 0;
    padding: 20px;
    border-radius: 12px;
    border-bottom: none;
}

.result-label {
    font-weight: 500;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.result-item.highlight .result-value {
    color: white;
}

.integration-options {
    padding: 80px 0;
    background: white;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.integration-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: #667eea;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.integration-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
}

.integration-description {
    color: #666;
    line-height: 1.5;
}

/* Pricing Business Section */
.pricing-business {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.comparison-card.old-way {
    border-top: 4px solid #dc2626;
}

.comparison-card.old-way::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc2626;
}

.comparison-card.new-way {
    border-top: 4px solid #16a34a;
    transform: scale(1.05);
}

.comparison-card.new-way::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-card.old-way h3 {
    color: #dc2626;
}

.comparison-card.new-way h3 {
    color: #16a34a;
}

.time-cost {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.time-cost .time {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.time-cost .cost {
    font-size: 1.1rem;
    color: #666;
}

.time-cost .cost strong {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.comparison-card.old-way .time-cost {
    background: #fef2f2;
}

.comparison-card.old-way .time-cost .cost strong {
    color: #dc2626;
}

.comparison-card.new-way .time-cost {
    background: #f0fdf4;
}

.comparison-card.new-way .time-cost .cost strong {
    color: #16a34a;
}

.cost-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cost-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.comparison-card.old-way .cost-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.comparison-card.new-way .cost-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.comparison-arrow {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.savings-highlight {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.savings-highlight h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.savings-period {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive adjustments for professional pages */
@media (max-width: 768px) {
    .benefits-grid, .use-cases-list, .document-types-grid, .categories-grid, .metrics-grid, .analytics-grid, .integrations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-header, .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .comparison-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .comparison-card.new-way {
        transform: none;
    }

    .savings-amount {
        font-size: 2rem;
    }
}

/* Opravy velikosti ikon pro stránku pro podnikatele */
body:has([href*="pro-podnikatele"]) svg,
[href*="pro-podnikatele"] ~ * svg {
    width: 16px !important;
    height: 16px !important;
}

/* Specifické velikosti pro benefit ikony */
.benefit-card .benefit-icon svg {
    width: 24px !important;
    height: 24px !important;
}

/* Šipky v demo sekci */
.transform-arrow svg {
    width: 32px !important;
    height: 32px !important;
}

/* Excel ikona */
.excel-icon {
    width: 20px !important;
    height: 20px !important;
}
