:root {
    /* Colors */
    --color-bg: #1a2942;
    --color-bg-dark: #121e31;
    --color-bg-card: #233452;
    --color-text: #f8f9fb;
    --color-text-muted: #aab5c5;
    --color-primary: #0066ff;
    --color-primary-hover: #0052cc;
    --color-accent: #00d9ff;
    --color-border: #364966;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: rgba(0, 102, 255, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-text {
    background: none;
    color: var(--color-text-muted);
}

.btn-text:hover {
    color: var(--color-text);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(26, 41, 66, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-benefits {
    margin-bottom: 2.5rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.hero-benefits svg {
    color: var(--color-accent);
}

.microcopy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Zoom Interface Mockup */
.zoom-interface {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
}

.zoom-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.zoom-label {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zoom-label::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #f00;
    border-radius: 50%;
}

.zoom-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #111;
    padding: 2px;
}

.zoom-tile {
    background: #222;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.glen-tile {
    /* Gradient for Glen's "AI" background */
    background: radial-gradient(circle at center, #1a2942 0%, #0a101a 100%);
    border: 2px solid transparent;
}

/* Animation for active speaker on Glen */
.glen-tile.speaking {
    border-color: var(--color-accent);
}

.tile-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: #444;
    border-radius: 50%;
}

.user-avatar {
    /* Blur effect for user */
    filter: blur(2px);
    background: #555;
    position: relative;
}

.user-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, #444, #666);
}

.glen-avatar {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-pulse {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 20px var(--color-accent);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

.zoom-controls {
    height: 50px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-icon {
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    padding: 8px;
    border-radius: 4px;
}

.control-icon:hover {
    background: #333;
    opacity: 1;
}

.end-call {
    color: #f44336;
    font-weight: 500;
    font-size: 0.9rem;
}


/* Business Challenges Section */
.challenges-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 68, 54, 0.05) 100%);
    border-bottom: 1px solid var(--color-border);
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s;
}

.challenge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.ceo-context {
    border-left: 4px solid var(--color-primary);
}

.market-risks {
    border-left: 4px solid #f44336;
}

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

.card-header .icon {
    font-size: 1.8rem;
}

.card-header h3 {
    font-size: 1.4rem;
    color: white;
}

.challenge-card .highlight {
    font-size: 1.15rem;
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.insight-list li {
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.insight-list strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: white;
}

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

.highlight-text {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border-left: 4px solid #f44336;
    padding-left: 1rem;
}

.problem-context p {
    color: var(--color-text-muted);
}

.problem-list h3 {
    margin-bottom: 1rem;
    color: white;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.cross-icon {
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.transition-line {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    position: relative;
}

.transition-line::before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: var(--color-border);
    margin: 0 auto 20px;
}

/* Solution Section */
.solution-section {
    padding: var(--spacing-lg) 0;
}

.solution-content {
    background: var(--color-bg-card);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.solution-description .large-text {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.solution-description p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.positioning-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.positioning-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.positioning-item span {
    font-size: 0.95rem;
    color: var(--color-text);
}

.use-cases-box h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.check-list li {
    position: relative;
    padding-left: 20px;
    color: var(--color-text-muted);
}

.check-list li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* Process Section */
.process-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    position: relative;
    transition: transform 0.2s;
}

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

.step-badge {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.process-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

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

/* Outcomes Section */
.outcomes-section {
    padding: var(--spacing-lg) 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 grid */
    gap: 2rem;
}

.outcome-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.outcome-card h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.outcome-card p {
    color: white;
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof-section {
    padding: var(--spacing-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #0a101a;
}

.trusted-by {
    text-align: center;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.sector-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 255, 136, 0.05);
    /* Subtle green tint */
    border: 1px solid #00ff88;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 800px;
    text-align: left;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-text h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.guarantee-text p {
    color: white;
    font-size: 1.1rem;
}

.zero-risk-cta {
    text-align: center;
    margin: 3rem 0;
}

.zero-risk-cta .btn {
    background: #00ff88;
    color: #0a101a;
    /* Dark text on bright green */
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.zero-risk-cta .btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
}

.author-role {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Arbitrary large height */
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 4rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 400px;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Customer Video Section */
.customer-video-section {
    margin-top: 5rem;
    text-align: center;
}

.video-section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    opacity: 0.6;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    cursor: pointer;
}

.video-info {
    padding: 1.5rem;
    text-align: left;
}

.video-info h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.transcript-preview {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-style: italic;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

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

.modal-overlay.hidden {
    display: none;
    opacity: 0;
}

.modal-container {
    background: var(--color-bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Calendar Embed */
.calendar-embed-container {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.calendar-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    /* Most calendars are light mode by default, or transparent */
}

.calendar-placeholder-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    color: white;
    text-align: center;
    pointer-events: none;
}

.calendar-placeholder-overlay span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

select {
    width: 100%;
    padding: 0.8rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
}

.button-group,
.chip-group {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.select-btn,
.chip {
    padding: 0.6rem 1rem;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.select-btn:hover,
.chip:hover {
    border-color: var(--color-primary);
}

.select-btn.selected,
.chip.selected {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--color-primary);
    color: white;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Calendar Mockup */
.calendar-mockup {
    background: white;
    color: black;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.date-header {
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    color: #555;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.time-slot:hover {
    background: #e6efff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.time-slot.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.confirmation-details {
    background: var(--color-bg-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.detail-label {
    color: var(--color-text-muted);
}

.confirmation-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    /* Reorder: Visual first on mobile if desired, but user said "Glen's video tile appears above copy on mobile" */
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .problem-grid,
    .process-grid,
    .testimonials,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .modal-container {
        width: 95%;
        padding: 1.5rem;
    }
}