:root {
    --primary-color: #0F172A;
    /* Deep Navy */
    --primary-light: #1E293B;
    --accent-color: #F59E0B;
    /* Gold */
    --accent-secondary: #0D9488;
    /* Teal */
    --text-light: #F8FAFC;
    --text-dark: #334155;
    --bg-light: #F1F5F9;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilities */
.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-color), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mt-2 {
    margin-top: 2rem;
}

.light-text {
    color: var(--text-light);
}

.d-none {
    display: none;
}

/* Buttons */
.btn-primary,
.btn-primary-sm,
.btn-primary-lg,
.btn-submit {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
}

.btn-primary:hover,
.btn-primary-sm:hover,
.btn-primary-lg:hover,
.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-primary-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.5);
}

.btn-secondary {
    border: 2px solid #ef4444;
    color: #ef4444;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
    animation: pulse 2s infinite ease-in-out;
}

.btn-secondary:hover {
    background: #ef4444;
    color: white;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    height: 130px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1001;
}

.nav-logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Logo Sizing */
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
    /* Push to right since logo is absolute */
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.nav-links a.btn-primary-sm {
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero */
.hero {
    margin-top: 130px;
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.15), transparent 60%);
    pointer-events: none;
}

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

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.highlight-pill {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.trust-indicators {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item i {
    color: var(--accent-secondary);
    margin-right: 0.8rem;
}

.hero-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    display: inline-block;
    margin-top: 1rem;
}

.countdown {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Hero Form */
.hero-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.lead-form h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.lead-form p {
    color: #d97706;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.form-benefits-list {
    background: #eff6ff;
    padding: 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.micro-list {
    margin-left: 1.2rem;
    list-style: disc;
    margin-top: 0.5rem;
    columns: 1;
}

.micro-list li {
    margin-bottom: 0.2rem;
    color: #475569;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-family: var(--font-body);
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-secondary);
    outline: none;
}

.form-check {
    font-size: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #64748B;
}

.btn-submit {
    width: 100%;
    border-radius: 50px;
    background: #ea580c;
    background: linear-gradient(to right, #ea580c, #d97706);
}

/* Why Us */
.why-us {
    padding: 5rem 0;
    background: #fff;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: white;
    border-color: var(--accent-secondary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #ccfbf1;
    color: var(--accent-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Salary Section */
.salary-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: white;
}

.salary-section .section-header h2 {
    color: white;
}

.salary-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.salary-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.salary-card.featured {
    transform: scale(1.05);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    z-index: 2;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.salary-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
}

.salary-details {
    padding: 1.5rem;
}

.salary-item {
    margin-bottom: 1.2rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.salary-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.salary-item h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.2rem;
}

.salary-item p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.salary-item .price {
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 1rem;
}


/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.testi-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testi-header h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testi-header span {
    font-size: 0.8rem;
    color: #64748B;
}

.growth {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    background: #dcfce7;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
}

.quote {
    font-style: italic;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

/* Eligibility */
.eligibility {
    padding: 5rem 0;
}

.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.accordion-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8FAFC;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f1f5f9;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.content-inner {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.content-inner ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    list-style: circle;
}

.content-inner li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.offer-box {
    background: #fff7ed;
    border: 1px solid #fb923c;
    color: #c2410c;
    padding: 0.8rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Tables */
.eligibility-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0;
}

.simple-table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-size: 0.9rem;
}

.simple-table th,
.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem;
    text-align: left;
}

.simple-table td,
.comparison-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Global Ops */
.global-ops {
    background: #fff;
    color: var(--text-dark);
    padding: 5rem 0;
}

.global-ops .section-header h2 {
    color: var(--primary-color);
}

.global-ops .section-header p {
    color: #64748B;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.country-card {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.country-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-secondary);
}

.country-card h3 {
    color: var(--primary-color);
}

.flag {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.tagline {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.country-stats {
    text-align: left;
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.country-stats li {
    margin-bottom: 0.4rem;
    color: #475569;
}

/* India Careers */
.india-careers {
    padding: 5rem 0;
    background: #fff;
}

.india-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.india-item {
    background: #F0F9FF;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #BAE6FD;
}

.india-item h3 {
    color: #0284c7;
    margin-bottom: 0.2rem;
}

.salary-indi {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.tiny-list {
    padding-left: 1rem;
    list-style: square;
    font-size: 0.85rem;
    color: #475569;
}

/* Benefits Scroller */
.benefits-scroller {
    background: #F8FAFC;
    padding: 3rem 0;
    overflow: hidden;
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.benefit-tag {
    background: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
}

/* Footer */
.footer {
    background: #0F172A;
    color: white;
    padding: 4rem 0 2rem;
}

.final-offer-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
}

.scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.scenario {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.scenario.positive {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid #166534;
}

.scenario.negative {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #991b1b;
}

.scenario h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.scenario ul {
    list-style: disc;
    margin-left: 1.2rem;
}

.cost-of-waiting {
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 2rem;
}

.offer-timer-block {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

.offers-list {
    margin: 1rem 0;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a {
    margin-left: 1.5rem;
}

/* Mobile Sticky */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ea580c;
    padding: 1rem;
    text-align: center;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-sticky-cta a {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        height: 100px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        margin-top: 100px;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .salary-card.featured {
        transform: none;
        box-shadow: none;
        margin: 1rem 0;
    }

    .scenarios {
        grid-template-columns: 1fr;
    }

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

    .mobile-sticky-cta {
        display: block;
    }

    .footer {
        padding-bottom: 5rem;
    }

    .nav-logo {
        max-height: 80px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.close-modal {
    color: white;
    background: #ef4444;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-modal:hover,
.close-modal:focus {
    background: #dc2626;
    transform: scale(1.1);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    background: #f8fafc;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 12px 12px 0 0;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-header p {
    font-size: 0.9rem;
    color: #64748B;
    margin-top: 0.5rem;
}

.modal-body {
    padding: 2rem;
}

/* Final CTA Section Styling */
.final-offer-box {
    text-align: center;
    padding: 3rem 1rem;
    color: white;
}

.final-offer-box h2 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    font-weight: 300;
}

.scenario-title {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: var(--accent-secondary);
}

.detailed-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scenario {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: transform 0.3s;
}

.scenario:hover {
    transform: translateY(-5px);
}

.scenario h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario.positive {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(21, 128, 61, 0.2));
    border-color: #22c55e;
}

.scenario.positive h3 {
    color: #4ade80;
}

.scenario.negative {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(185, 28, 28, 0.2));
    border-color: #ef4444;
}

.scenario.negative h3 {
    color: #f87171;
}

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

.scenario li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.decision-prompt {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    backdrop-filter: blur(5px);
}

.decision-prompt p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.decision-prompt strong {
    font-size: 1.2rem;
    color: white;
    display: block;
}

.cost-waiting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.cost-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    position: relative;
    overflow: hidden;
}

.cost-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #334155;
    padding-bottom: 1rem;
}

.cost-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: #cbd5e1;
}

.cost-card li {
    margin-bottom: 0.8rem;
}

.cost-card.highlight {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: var(--accent-secondary);
}

.cost-card.highlight h4 {
    color: var(--accent-secondary);
}

.success-patterns {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.success-patterns h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.pattern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.pattern-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    display: inline-block;
}

.pattern-column.winners h4 {
    color: #4ade80;
    border-color: #22c55e;
}

.pattern-column.regrets h4 {
    color: #f87171;
    border-color: #ef4444;
}

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

.pattern-column li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.final-block {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    .detailed-scenarios,
    .cost-waiting-grid,
    .pattern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-offer-box h2 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .scenario,
    .cost-card,
    .success-patterns {
        padding: 1.5rem;
    }
}

/* Exemptions Section */
.exemptions-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.exemptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.exemption-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.exemption-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-secondary));
}

.exemption-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.exemption-card.featured {
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.exemption-card.highlight {
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.exemption-card.highlight::before {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.exemption-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.exemption-badge.best {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.exemption-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exemption-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.exemption-highlight {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.exemption-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.exemption-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 0.95rem;
}

.exemption-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.btn-exemption {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-exemption:hover {
    background: var(--primary-color);
    color: white;
}

.exemption-note {
    background: #fef3c7;
    border-left: 4px solid var(--accent-secondary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 3rem;
}

.exemption-note p {
    margin: 0;
    color: #92400e;
}

/* Mobile Responsive for Exemptions */
@media (max-width: 768px) {
    .exemptions-grid {
        grid-template-columns: 1fr;
    }

    .exemption-card {
        padding: 1.5rem;
    }

    .exemption-icon {
        font-size: 2.5rem;
    }
}

.silver-partner-section {
    padding: 5rem 0;
    background: #fff;
    overflow: hidden;
    /* For animations */
}

.silver-intro {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.badge-container {
    flex: 0 0 300px;
    position: relative;
}

.silver-badge {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    background: white;
    padding: 10px;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.silver-intro-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.silver-intro-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.intro-points ul {
    list-style: none;
    margin-top: 1rem;
}

.intro-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
}

.intro-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

.silver-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.silver-benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.silver-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-secondary);
}

.silver-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.silver-benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.silver-benefit-card h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.silver-benefit-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: #64748B;
    font-size: 0.9rem;
}

.silver-benefit-card li {
    margin-bottom: 0.3rem;
}

.silver-stats {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.silver-stats::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.silver-stats h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--accent-secondary);
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.2;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .silver-intro {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .badge-container {
        flex: auto;
        width: 80%;
        max-width: 250px;
    }

    .silver-intro-text h3 {
        font-size: 1.3rem;
    }

    .silver-intro-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .intro-points li {
        text-align: left;
    }

    .silver-benefits-grid {
        grid-template-columns: 1fr;
    }

    .silver-stats {
        padding: 2rem 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
    }
}