:root {
    --primary-color: #0B1120;
    /* Deep Dark Blue */
    --secondary-color: #3B82F6;
    /* Bright Blue */
    --accent-color: #06B6D4;
    /* Cyan */
    --text-color: #1E293B;
    /* Slate 800 */
    --light-text: #94A3B8;
    /* Slate 400 */
    --bg-color: #ffffff;
    --light-bg: #F8FAFC;
    /* Slate 50 */
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
}

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

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

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

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

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

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

.section-padding {
    padding: 80px 0;
}

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

.text-white {
    color: white;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary-color);
    color: white;
}

.bg-blue {
    background-color: var(--secondary-color);
}

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Transparent Black Matte */
    /* Transparent Black Matte */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* iOS Support */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.navbar.scrolled .logo img {
    /* Invert white to black to simulate 'dark' logo. 
       Ideally replace with actual logo-blue.png if available */
    filter: invert(1) brightness(0.2);
    /* brightness(0.2) pushes it towards a dark grey/black */
}

@media (max-width: 768px) {
    #navbar-cta {
        display: none !important;
    }

    .nav-container {
        justify-content: center;
    }

    /* Ensure transparency logic holds on mobile */
    .navbar {
        background: rgba(0, 0, 0, 0.4);
    }

    .navbar.scrolled {
        background: white;
    }

    .navbar.scrolled .logo img {
        /* Match desktop behavior: Invert white to black */
        filter: invert(1) brightness(0.2);
    }
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--primary-color);
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero p {
    color: #cbd5e1;
    /* Light slate text for readability on dark bg */
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Section 2: Pain Points */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Section 3: Myth */
.myth-content {
    max-width: 800px;
    margin: 0 auto;
}

.myth-quote {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.myth-divider {
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.myth-explanation {
    font-size: 1.2rem;
}

/* Section 4: Solution Process */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    min-width: 150px;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    z-index: 2;
}

.process-step.highlight {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(11, 17, 32, 0.2);
}

.process-step.highlight p {
    color: white;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.process-step.highlight .step-icon {
    color: var(--accent-color);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 2rem;
}

/* Section 5: Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.comparison-block {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.before {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.after {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.comparison-block h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-block ul {
    list-style: none;
}

.comparison-block li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.comparison-block p {
    color: #e2e8f0;
}

.before li i {
    color: #f87171;
    font-size: 1.2rem;
}

.after li i {
    color: #4ade80;
    font-size: 1.2rem;
}

.comparison-arrow {
    color: var(--accent-color);
    font-size: 2.5rem;
}

/* Section 6: Value */
.value-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.value-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--secondary-color);
}

.value-highlight {
    background: linear-gradient(135deg, var(--primary-color), #1e293b);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
}

.highlight-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff !important;
    position: relative;
    z-index: 2;
}

/* Section 7: Target */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

/* Section 8: Features */
/* Section 8: Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Increased gap */
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    /* Increased padding */
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--accent-color);
}

.feature-item i {
    font-size: 2.5rem;
    /* Increased icon size */
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 1.1rem;
    /* Increased text size */
    font-weight: 500;
    line-height: 1.4;
}

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

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Section 9: CTA Final */
.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

footer p {
    color: #64748b;
    font-size: 0.9rem;
}

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

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close-modal:hover {
    color: black;
}

.modal input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.modal h2 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Animations classes */
.fade-in-up,
.fade-in,
.fade-in-right {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    transform: translateX(-20px);
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

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

    .comparison-arrow {
        transform: rotate(90deg);
        margin: 20px auto;
        display: block;
        text-align: center;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
}


/* Trusted By Section Styles */
.bg-white {
    background-color: white;
}

.mb-2 {
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}

/* Carousel Styles */
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.carousel-container:before,
.carousel-container:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.carousel-container:before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container:after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.logo-slide {
    display: inline-block;
}

/* Bigger Logos as requested */
.client-logo {
    height: 70px;
    /* Increased from 45px */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    margin: 0 40px;
    /* Spacing between logos */
    display: inline-block;
    vertical-align: middle;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    cursor: pointer;
}

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

    100% {
        /* Move left by 1/3 of the width (since we have 3 sets of logos, moving 1 set length creates loop) */
        /* Assuming 3 slides, we move -33.33% or simply calculate logic */
        /* Actually since I have 3 identical children, I need to know the width. 
           But 'transform: translateX(-100%)' of the parent would move ALL. 
           Wait, standard infinite scroll:
           Width of track is huge. 
           Keyframe: translate from 0 to -100% of ONE SET.
        */
        transform: translateX(-33.33%);
    }
}

/* Pause on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .client-logo {
        height: 50px;
        margin: 0 20px;
    }

    .carousel-container:before,
    .carousel-container:after {
        width: 50px;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* 9:16 Aspect Ratio for Vertical Videos */
    padding-bottom: 177.77%;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Founder Section */
.founder-section {
    background: #0f172a;
    /* Main bg dark */
}

.founder-card {
    background: #111827;
    /* Slightly lighter dark for card */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
    flex-shrink: 0;
}

.founder-image-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    /* Ring gradient */
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #111827;
    /* Inner border to separate from ring */
}

.founder-content {
    color: white;
    text-align: left;
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.founder-role {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
}

.founder-bio {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-linkedin:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .founder-card {
        background: #111827;
        /* Slightly lighter dark for card */
        border-radius: 20px;
        padding: 60px;
        display: flex;
        align-items: center;
        gap: 60px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    }

    .founder-image-wrapper {
        flex-shrink: 0;
    }

    .founder-image-ring {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        padding: 6px;
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        /* Ring gradient */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .founder-img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #111827;
        /* Inner border to separate from ring */
    }

    .founder-content {
        color: white;
        text-align: left;
    }

    .founder-name {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: baseline;
        gap: 15px;
        flex-wrap: wrap;
    }

    .founder-role {
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--accent-color);
    }

    .founder-bio {
        color: #94a3b8;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    .btn-linkedin {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: transparent;
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color);
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        margin-top: 1rem;
    }

    .btn-linkedin:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    @media (max-width: 900px) {
        .founder-card {
            flex-direction: column;
            padding: 40px 20px;
            text-align: center;
            gap: 30px;
        }

        .founder-content {
            text-align: center;
        }

        .founder-name {
            justify-content: center;
            font-size: 2rem;
        }

        .founder-image-ring {
            width: 200px;
            height: 200px;
        }
    }
}

/* Simulator Section Premium Redesign - Compact Version */
.simulator {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    /* Reduced padding */
}

.simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.simulator .container {
    position: relative;
    z-index: 1;
}

.sim-header {
    text-align: center;
    margin-bottom: 30px;
    /* Reduced margin */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sim-header .section-title {
    margin-bottom: 0.2rem;
    font-size: 2rem;
    /* Slightly smaller title */
}

.sim-header .section-subtitle {
    font-size: 1rem;
    color: #64748b;
}

/* Control Panel - Compact */
.sim-control-panel {
    background: white;
    padding: 1.5rem 2rem;
    /* Reduced padding */
    border-radius: 16px;
    /* Slightly smaller radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    /* Smaller width */
    margin: 0 auto 30px;
    /* Reduced margin */
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.sim-control-panel label {
    display: block;
    font-size: 0.9rem;
    /* Smaller font */
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-money-group {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    /* Compact input */
    margin-bottom: 1rem;
}

.input-money-group .currency {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: #94A3B8;
}

#vgvInput {
    width: 100%;
    font-size: 1.5rem;
    /* Smaller input font */
    font-weight: 700;
    text-align: center;
    border: none;
    border-bottom: 2px solid #E2E8F0;
    padding: 5px 5px 5px 30px;
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0;
}

#vgvInput:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

/* Slider CSS */
#vgvSlider {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: #E2E8F0;
    border-radius: 5px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#vgvSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    /* Smaller thumb */
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transition: background .15s ease-in-out;
}

#vgvSlider::-webkit-slider-thumb:hover {
    background: var(--accent-color);
}

/* Layout Grid - Side by Side */
.simulator-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Two column layout */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.sim-right-col {
    /* Contains Impact Block and CTA */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Cards Grid */
.sim-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    /* Tighter gap */
    margin-bottom: 0;
}

.sim-card-premium {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    /* Reduced padding */
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.sim-card-premium.traditional {
    background: linear-gradient(145deg, #ffffff 0%, #FFF1F2 100%);
    border: 1px solid rgba(254, 205, 211, 0.5);
}

.sim-card-premium.garoupa {
    background: linear-gradient(145deg, #ffffff 0%, #ECFDF5 100%);
    border: 1px solid rgba(167, 243, 208, 0.5);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    /* Lighter shadow */
}

.card-header {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1rem;
    /* Smaller */
}

.card-header p {
    font-size: 0.8rem;
    color: #64748b;
    display: none;
    /* Hide subtitle for compactness */
}

.icon-badge {
    width: 32px;
    /* Smaller badge */
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1rem;
    flex-shrink: 0;
}

.red-badge {
    background: #FEF2F2;
    color: #EF4444;
}

.green-badge {
    background: #ECFDF5;
    color: #10B981;
}

/* Traditional Card List */
.cost-list {
    margin-bottom: 0;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    /* Tighter list */
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
}

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

.cost-item span {
    color: #64748b;
}

.cost-item strong {
    color: #334155;
    font-size: 0.9rem;
}

.card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.8rem 0;
}

.total-row-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
}

.text-red {
    color: #EF4444 !important;
}

.text-green {
    color: #059669 !important;
}

.text-primary {
    color: var(--secondary-color) !important;
}

/* Garoupa Card Content */
.garoupa-main-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60%;
}

.big-number {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.big-number .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.big-number strong {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 1rem;
}

.pill {
    background: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #059669;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Impact Block - Vertical Layout in Right Col */
.impact-block {
    background: #064E3B;
    /* Deep Green */
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 20px 25px -5px rgba(6, 78, 59, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.impact-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.impact-block h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #A7F3D0;
    /* Soft Green */
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.impact-values {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monthly-impact {
    font-size: 2.8rem;
    /* Smaller hero font */
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.monthly-impact .period {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6EE7B7;
}

.annual-impact {
    font-size: 1rem;
    color: #D1FAE5;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    margin-top: 10px;
}

/* CTA & Disclaimer */
.sim-cta-wrapper {
    text-align: center;
    margin-bottom: 0.5rem;
}

.sim-cta-wrapper .btn-large {
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
}

.glow-effect {
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.cta-subtext {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #64748b;
}

.sim-disclaimer {
    color: #94a3b8;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .simulator-wrapper {
        grid-template-columns: 1fr;
        /* Stack vertically on small screens */
        gap: 20px;
    }

    .sim-cards-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
    }

    .monthly-impact {
        font-size: 2.5rem;
    }
}

/* Economy Banner */
.economy-banner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    flex-wrap: wrap;
    gap: 20px;
}

.economy-info {
    display: flex;
    flex-direction: column;
}

.economy-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.economy-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.economy-annual-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.economy-action .btn-primary {
    background: white;
    color: #059669;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.economy-action .btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .economy-banner {
        flex-direction: column;
        text-align: center;
    }

    .sim-table th,
    .sim-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
}