/* Reset and Base Styles */

@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a365d;
    --primary-cyan: #00b4d8;
    --secondary-navy: #2d3748;
    --accent-cyan: #48cae4;
    --light-cyan: #90e0ef;
    --dark-navy: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #e2e8f0;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.8rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-cyan));
    color: white !important;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    border: none;
    text-decoration: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary-cyan));
    color: white !important;
}

.btn-login:focus {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-cyan));
    color: white !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.3);
}

.btn-login:active {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-cyan));
    color: white !important;
    transform: translateY(0);
}

.btn-login:visited {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-cyan));
    color: white !important;
}


/* Nav Actions Container */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}


/* Dropdown Menu */

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}


/* Hero Section */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--gray-medium) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
}

.btn-secondary:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}


/* Dashboard Preview */

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

.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    margin-bottom: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.dashboard-dots span:first-child {
    background: #ef4444;
}

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

.dashboard-dots span:last-child {
    background: #10b981;
}

.ai-analysis {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.candidates-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.candidates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.candidates-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.candidates-count {
    font-size: 0.8rem;
    color: #64748b;
    background: #e2e8f0;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.candidates-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.candidate-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.candidate-item:nth-child(1) {
    animation-delay: 0.2s;
}

.candidate-item:nth-child(2) {
    animation-delay: 0.4s;
}

.candidate-item:nth-child(3) {
    animation-delay: 0.6s;
}

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

.candidate-item:hover {
    background: #f1f5f9;
}

.candidate-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.candidate-item:nth-child(1) .candidate-avatar {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.candidate-item:nth-child(2) .candidate-avatar {
    background: linear-gradient(135deg, #10b981, #059669);
}

.candidate-item:nth-child(3) .candidate-avatar {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.candidate-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.candidate-info p {
    color: #64748b;
    font-size: 0.8rem;
    margin: 0;
}

.match-score {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.candidate-card:nth-child(1) .match-score {
    background: #10b981;
}

.candidate-card:nth-child(2) .match-score {
    background: #f59e0b;
}

.candidate-card:nth-child(3) .match-score {
    background: #ef4444;
}


/* Features Section */

.features {
    padding: 6rem 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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


/* .feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
} */

.feature-icon {
    /* width: 80px;
    height: 80px; */
    /* background: linear-gradient(135deg, var(--primary-navy), var(--primary-cyan)); */
    color: var(--secondary-navy);
    border-radius: var(--border-radius);
    /* display: flex;
    align-items: center;
    justify-content: center; */
    margin-bottom: 1.5rem;
    /* box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2); */
    transition: all 0.3s ease;
}

.feature-icon i {
    color: var(--secondary-navy);
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}


/* How It Works */

.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #797d83;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.work-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.step-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-cyan) 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.4);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    letter-spacing: -0.01em;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 600;
}


/* Pricing Section */

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

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-label-switch:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-input:checked+.toggle-label-switch {
    background-color: var(--primary-navy);
}

.toggle-input:checked+.toggle-label-switch:before {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-navy);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.15);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price .amount {
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pricing-features i {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.pricing-features .fa-check {
    color: var(--primary-navy);
}

.pricing-features .fa-circle {
    color: #cbd5e1;
}

.btn-pricing {
    width: 100%;
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    display: block;
}

.btn-pricing:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.btn-pricing.featured {
    background: var(--primary-navy);
    color: white;
}

.btn-pricing.featured:hover {
    background: var(--secondary-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}


/* Pricing Responsive */

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .pricing-card {
        min-height: auto;
    }
    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}


/* Contact Section */

.contact {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-link-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-link-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
}

.contact-link-item i {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-link-item span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-link-item:hover i {
    color: var(--primary-cyan);
}

.contact-link-item:hover span {
    color: var(--primary-navy);
}


/* Policy Pages */

.policy-page {
    padding: 120px 0 80px;
    background: var(--gray-light);
    min-height: calc(100vh - 200px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.policy-content .last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1.5rem;
    }
    .policy-content h1 {
        font-size: 2rem;
    }
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem 1rem;
    }
    .policy-content h1 {
        font-size: 1.75rem;
    }
    .policy-section h2 {
        font-size: 1.25rem;
    }
}


/* Contact Page Hero */

.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7c 100%);
    color: white;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}


/* Contact Page Section */

.contact-page {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.contact-item i {
    color: var(--primary-navy);
    font-size: 1.2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--body-font);
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.form-group select {
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}


/* International Telephone Input Styles */

.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 8px 0 0 8px;
}

.iti__selected-flag {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 0.5rem;
}

.iti__selected-flag:hover {
    background-color: #f1f5f9;
}

.iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #64748b;
}

.iti__arrow--up {
    border-bottom: 5px solid #64748b;
    border-top: none;
}

.iti__country-list {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-height: 200px;
}

.iti__country {
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease;
}

.iti__country:hover {
    background-color: #f8fafc;
}

.iti__country.iti__highlight {
    background-color: var(--primary-navy);
    color: white;
}

.iti__country.iti__highlight .iti__dial-code {
    color: rgba(255, 255, 255, 0.8);
}

#phone {
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding-left: 0.75rem;
}

#phone:focus {
    border-color: var(--primary-navy);
}

#phone:focus+.iti__flag-container .iti__selected-flag {
    border-color: var(--primary-navy);
}

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


/* Footer */

.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
    margin-top: 0px !important;
}

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

/* CVERA Logo Footer Styling */
.cvera-logo-footer {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--body-font);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: inline-block;
}

.cvera-logo-footer .logo-char {
    display: inline-block;
    position: relative;
    color: #1a365d; /* Dark navy blue - single color for all */
}

/* .ai suffix smaller and slightly lowered */
.cvera-logo-footer .logo-dot,
.cvera-logo-footer .logo-ai {
    font-size: 0.7em;
    vertical-align: baseline;
    margin-left: -0.1em;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-navy);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--secondary-navy);
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 1.25rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}


/* Responsive Design */

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-menu li:nth-child(1) {
        transition-delay: 0.1s;
    }
    .nav-menu li:nth-child(2) {
        transition-delay: 0.2s;
    }
    .nav-menu li:nth-child(3) {
        transition-delay: 0.3s;
    }
    .nav-menu li:nth-child(4) {
        transition-delay: 0.4s;
    }
    .nav-menu li:nth-child(5) {
        transition-delay: 0.5s;
    }
    .nav-actions {
        margin-left: 0;
        gap: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: 0.6s;
    }
    .nav-menu.active .nav-actions {
        opacity: 1;
        transform: translateY(0);
    }
    .lang-dropdown-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    .hamburger {
        display: flex;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1001;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    .contact-page .contact-content {
        grid-template-columns: 1fr;
    }
    .contact-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .work-process {
        flex-direction: column;
        gap: 3rem;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .work-process {
        flex-direction: column;
        gap: 2rem;
    }
    .process-step {
        min-width: 280px;
        max-width: 100%;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .contact-info h2 {
        font-size: 2.25rem;
    }
    .contact-links {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 15px;
    }
    .work-process {
        gap: 1.5rem;
    }
    .process-step {
        min-width: 250px;
    }
    .step-card {
        padding: 1.5rem;
    }
}


/* Animations */

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

.feature-card,
.step,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}


/* Smooth scrolling */


/* Demo Modal */

.demo-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.demo-modal-content {
    background: transparent;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.demo-modal.active .demo-modal-content {
    transform: scale(1);
    opacity: 1;
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 1.25rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10001;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-navy);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.demo-modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.demo-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.demo-description h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.demo-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.demo-description li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-medium);
}

.demo-description li:last-child {
    border-bottom: none;
}


/* Responsive Modal */

@media (max-width: 768px) {
    .demo-modal-content {
        width: 95%;
        margin: 1rem;
    }
    .demo-modal-header {
        padding: 1rem 1.5rem;
    }
    .demo-modal-header h3 {
        font-size: 1.1rem;
    }
    .demo-modal-body {
        padding: 1.5rem;
    }
    .demo-description h4 {
        font-size: 1rem;
    }
    .demo-description li {
        font-size: 0.9rem;
    }
}

html {
    scroll-behavior: smooth;
}


/* Cookie Consent Modal */

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: transparent;
    z-index: 10000;
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    background: white;
    max-width: 500px;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cookie-header {
    padding: 1.5rem 2rem 0;
    text-align: center;
}

.cookie-header h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.cookie-body {
    padding: 1rem 2rem;
}

.cookie-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 2rem 2rem;
    justify-content: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookie-customize {
    background: white;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.cookie-customize:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

.cookie-reject {
    background: var(--primary-navy);
    color: white;
}

.cookie-reject:hover {
    background: var(--secondary-navy);
    transform: translateY(-2px);
}

.cookie-accept {
    background: var(--primary-navy);
    color: white;
}

.cookie-accept:hover {
    background: var(--secondary-navy);
    transform: translateY(-2px);
}


/* Responsive Cookie Modal */

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    .cookie-content {
        margin: 0;
        border-radius: 12px;
        max-width: none;
    }
    .cookie-header {
        padding: 1rem 1.5rem 0;
    }
    .cookie-header h3 {
        font-size: 1.1rem;
    }
    .cookie-body {
        padding: 0.75rem 1.5rem;
    }
    .cookie-body p {
        font-size: 0.9rem;
    }
    .cookie-actions {
        padding: 0.75rem 1.5rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    .cookie-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}