/* Main Styles for ClickSuite Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #323338;
    overflow-x: hidden;
    background-color: #ffffff;
}

:root {
    --primary-color: #6161ff;
    --secondary-color: #00d2d2;
    --accent-color: #ff5ac4;
    --text-primary: #323338;
    --text-secondary: #676879;
    --background-light: #f6f7fb;
    --border-color: #d0d4e4;
    --success-color: #00c875;
    --warning-color: #fdab3d;
    --error-color: #e2445c;
    --white: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
    --border-radius: 8px;
    --border-radius-large: 16px;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 160px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    padding: 8px 0;
    margin-top: 8px;
}

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

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    border-radius: 0;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.desktop-only {
    display: flex;
}

.login-button {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.cta-button:hover {
    background: #5555e6;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-toggle i {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover i {
    color: var(--primary-color);
}

.mobile-nav-buttons {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-buttons .login-button {
    justify-content: center;
    display: inline-flex;
}

.mobile-nav-buttons .cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 100%);
    color: var(--text-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero h1 .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: #5555e6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    font-feature-settings: "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.hero-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-illustration .hero-arrow {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: arrowFlow 6s ease-in-out infinite;
    opacity: 0.35;
}

.hero-illustration .arrow-2 {
    animation-delay: 2s;
    stroke-dasharray: 32;
}

.hero-illustration .step-icon {
    animation: iconFloat 6s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.hero-illustration .step-icon-2 {
    animation-delay: 2s;
}

.hero-illustration .step-icon-3 {
    animation-delay: 4s;
}

.hero-illustration .process-step {
    transform-origin: center;
    animation: stepGlow 6s ease-in-out infinite;
}

.hero-illustration .step-2 {
    animation-delay: 2s;
}

.hero-illustration .step-3 {
    animation-delay: 4s;
}

.hero-illustration .ai-glow {
    animation: aiPulse 6s ease-in-out infinite;
    transform-origin: center;
}

.hero-illustration .hero-flow-dot {
    filter: drop-shadow(0 8px 16px rgba(97, 97, 255, 0.25));
}

@keyframes arrowFlow {
    0% {
        stroke-dashoffset: 30;
        opacity: 0.2;
    }
    12% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    24% {
        stroke-dashoffset: -30;
        opacity: 0.7;
    }
    40% {
        opacity: 0.2;
    }
    100% {
        stroke-dashoffset: -30;
        opacity: 0.2;
    }
}

@keyframes stepGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
    8% {
        transform: scale(1.05);
        filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
    }
    16% {
        transform: scale(1.02);
        filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
    }
    28% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
    }
}

@keyframes aiPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0;
    }
    10% {
        opacity: 0.45;
    }
    20% {
        transform: scale(1.15);
        opacity: 0.25;
    }
    40% {
        opacity: 0;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-4px);
    }
    40% {
        transform: translateY(0);
    }
}

/* Products Section */
.products {
    padding: 160px 0 120px;
    background: var(--white);
    position: relative;
    z-index: 5;
    margin-top: 40px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--background-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    z-index: 10;
}

.section-title p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.product-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.product-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 16px;
    /* Keep feature lists aligned across cards */
    min-height: 120px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.product-features li {
    padding: 12px 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--background-light);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--success-color);
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(0, 200, 117, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.product-card .btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.product-card .btn-primary:hover {
    background: #5555e6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--background-light);
}

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

.feature-item {
    text-align: center;
    padding: 48px 32px;
    background: var(--white);
    border-radius: var(--border-radius-large);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.testimonial-item {
    background: var(--background-light);
    padding: 48px 32px;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--background-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: var(--success-color);
    font-size: 12px;
}

.pricing-features .fa-times {
    color: var(--text-secondary);
    font-size: 12px;
    opacity: 0.5;
}

.pricing-footer {
    text-align: center;
}

.pricing-footer .btn-primary {
    width: auto;
    min-width: 140px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 32px;
}

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

.footer-section h3 {
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .product-card p {
        min-height: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

@media (max-width: 768px) {
    .nav-wrapper {
        display: none;
    }
    
    .nav-buttons,
    .desktop-only {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container.menu-open .mobile-menu-toggle {
        position: relative;
        z-index: 1200;
    }
    
    .nav-container {
        padding: 0 20px;
        position: relative;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container.menu-open .nav-wrapper {
        display: block;
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        border: 1px solid rgba(99, 102, 241, 0.08);
        z-index: 1100;
    }

    .nav-container.menu-open .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .nav-container.menu-open .nav-menu a {
        width: 100%;
    }

    .nav-container.menu-open .dropdown {
        width: 100%;
    }

    .nav-container.menu-open .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-container.menu-open .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 6px;
        gap: 12px;
    }

    .nav-container.menu-open .dropdown-content a {
        padding: 0 0 0 16px;
    }

.nav-container.menu-open .mobile-nav-buttons {
        display: flex;
        padding-top: 16px;
        border-top: 1px solid rgba(99, 102, 241, 0.08);
    }

    .nav-container.menu-open .mobile-nav-buttons .login-button,
    .nav-container.menu-open .mobile-nav-buttons .cta-button {
        width: 100%;
        text-align: center;
        min-height: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 32px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2.25rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .products,
    .features,
    .testimonials,
    .pricing {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 48px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Product Pages Styles */
.product-hero {
    background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.product-hero-text {
    max-width: 600px;
}

.product-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.1;
}

.product-hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-hero-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
    font-feature-settings: "kern" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.product-demo-container {
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    padding: 24px;
    max-width: 400px;
    width: 100%;
}

/* Chat Interface Demo */
.chat-interface {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 16px;
    min-height: 300px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.chat-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.chat-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.chat-status.online {
    background: rgba(0, 200, 117, 0.1);
    color: var(--success-color);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.message.user {
    flex-direction: row-reverse;
}

.message-bubble {
    background: var(--white);
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 80%;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: var(--shadow-light);
}

.message.user .message-bubble {
    background: var(--primary-color);
    color: white;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background: var(--text-secondary);
}

/* Insurance Dashboard Demo */
.insurance-dashboard,
.immigration-dashboard {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 16px;
    min-height: 300px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.dashboard-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.dashboard-status.processing {
    background: rgba(253, 171, 61, 0.1);
    color: var(--warning-color);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.claim-item,
.application-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 16px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.claim-info,
.application-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.claim-id,
.application-id {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.claim-type,
.application-type {
    font-size: 12px;
    color: var(--text-secondary);
}

.claim-status,
.application-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.claim-status.approved,
.application-status.approved {
    background: rgba(0, 200, 117, 0.1);
    color: var(--success-color);
}

.claim-status.processing,
.application-status.processing {
    background: rgba(253, 171, 61, 0.1);
    color: var(--warning-color);
}

/* Product Features Section */
.product-features-section {
    padding: 120px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--background-light);
}

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

.step-item,
.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-item h3,
.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-item p,
.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Use Cases Section */
.use-cases {
    padding: 120px 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.use-case-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Application Types Section */
.application-types {
    padding: 120px 0;
    background: var(--background-light);
}

.application-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.application-type-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.application-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.application-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.application-type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.application-type-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design for Product Pages */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .product-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 100px 0 60px;
    }
    
    .product-hero-content {
        padding: 0 20px;
    }
    
    .product-hero-text h1 {
        font-size: 2.25rem;
    }
    
    .product-hero-text h2 {
        font-size: 1.5rem;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}
