@font-face {
    font-family: 'Gotham';
    src: url('fonts/gothambook-webfont.woff2') format('woff2'),
        url('fonts/gothambook-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gothambold-webfont.woff2') format('woff2'),
        url('fonts/gothambold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gothammedium-webfont.woff2') format('woff2'),
        url('fonts/gothammedium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gothamlight-webfont.woff2') format('woff2'),
        url('fonts/gothamlight-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gothamblack-webfont.woff2') format('woff2'),
        url('fonts/gothamblack-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

:root {
    /* Colors - Light Theme */
    --color-bg: #ffffff;
    --color-bg-alt: #f6f8fa;
    --color-text: #24292f;
    --color-text-muted: #57606a;
    --color-primary: #238636;
    /* GitHub Green-ish - keeping for brand consistency or change? Let's keep for now but make sure it pops */
    --color-primary-hover: #2ea043;
    --color-secondary: #f3f4f6;
    --color-secondary-hover: #e5e7eb;
    --color-accent: #0969da;
    /* Darker blue for light mode readability */
    --color-border: #d0d7de;

    /* Typography */
    --font-sans: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

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

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

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.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: var(--color-secondary);
    color: var(--color-text);
    border-color: var(--color-border);
}

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

.btn-text {
    background: none;
    color: var(--color-accent);
    padding: 0.75rem;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    padding: var(--spacing-sm) 0;
    position: fixed;
    /* Fixed to stay on top while scrolling */
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar.inverted,
.navbar.inverted.scrolled {
    background-color: rgba(21, 36, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar.inverted .logo,
.navbar.inverted.scrolled .logo {
    color: white;
}

.navbar.inverted .nav-links a:not(.btn),
.navbar.inverted.scrolled .nav-links a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.inverted .nav-links a:not(.btn):hover,
.navbar.inverted.scrolled .nav-links a:not(.btn):hover {
    color: white;
}

.navbar.inverted .btn-text-light,
.navbar.inverted.scrolled .btn-text-light {
    color: white;
    border-color: white;
}

.navbar.inverted .btn-text-light:hover,
.navbar.inverted.scrolled .btn-text-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar.inverted .mobile-menu-btn span,
.navbar.inverted.scrolled .mobile-menu-btn span {
    background-color: white;
}

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

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-elephant {
    height: 40px;
    width: auto;
}

.logo-container .logo-text {
    height: 17.34px;
    width: auto;
}

.navbar .logo {
    color: white;
}

.navbar.scrolled .logo {
    color: var(--color-text);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.navbar.scrolled .nav-links a:not(.btn) {
    color: var(--color-text);
    text-shadow: none;
}

.nav-links a:not(.btn):hover {
    color: white;
    text-shadow: none;
}

.navbar.scrolled .nav-links a:not(.btn):hover {
    color: var(--color-accent);
    text-shadow: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--color-text);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-image.png');
    background-size: cover;
    background-position: center;
    color: white;
    margin-top: 0;
    /* Remove any margin since navbar is absolute */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: block;
    padding-top: var(--spacing-xl);
    /* Push content down slightly */
}

.hero-content {
    max-width: 800px;
    /* Wider to allow big text to breathe */
}

.hero h1 {
    font-size: 5rem;
    /* Massive */
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.05;
}

.hero-subhead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    font-weight: 400;
    line-height: 1.6;
}

.cta-group {
    gap: var(--spacing-sm);
    align-items: center;
}

.hero .highlight {
    color: white;
    /* Keep it clean white like Samsara */
}

/* Samsara-style Buttons */
.hero .btn-primary {
    background-color: white;
    color: var(--color-text);
    /* Dark text */
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    /* Pill shape */
}

.hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero .btn-text-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
}

.hero .btn-text-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}



/* Navbar button with white border (default) */
.navbar .btn-text-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-size: 0.88rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-text-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

/* Navbar button when scrolled (dark) */
.navbar.scrolled .btn-text-light {
    color: var(--color-text);
    border-color: var(--color-text);
}

.navbar.scrolled .btn-text-light:hover {
    background-color: var(--color-text);
    color: white;
}

/* Remove old hero visual styles */
.hero-visual,
.ui-mockup-placeholder,
.hero-image {
    display: none;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.bg-dark {
    background-color: #15242f;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-dark h2 {
    color: white;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-bg-alt);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: transform 0.2s ease;
}

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

.icon-box {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* Personas Grid */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.persona-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

.persona-card h3 {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pain-point {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    font-style: normal;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #94a3b8;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #60a5fa; /* Lighter blue for dark background */
    font-weight: bold;
}

/* Bento Grid Section */
.bento-section {
    background-color: #fff;
    padding: var(--spacing-xl) 0;
}

.bento-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.bento-header h2 {
    font-size: 2.5rem;
    color: #0f172a;
    /* Dark slate */
    margin-bottom: var(--spacing-sm);
}

.bento-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.bento-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
}

.toggle-btn {
    padding: 8px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bento-grid-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

/* Sidebar */
.bento-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sidebar-item {
    padding: var(--spacing-sm);
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.sidebar-item h3 {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    font-weight: 600;
}

.sidebar-item p {
    font-size: 0.9rem;
    margin-top: 4px;
    margin-bottom: 0;
    display: none;
    /* Hidden by default */
}

.sidebar-item.active {
    border-left-color: var(--color-accent);
}

.sidebar-item.active h3 {
    color: var(--color-accent);
}

.sidebar-item.active p {
    display: block;
    color: var(--color-text);
}

.sidebar-item:hover h3 {
    color: var(--color-text);
}

/* Content Grid */
.bento-content {
    /* Acts as a wrapper for groups */
    display: block;
    width: 100%;
}

.bento-content-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 300px;
    gap: var(--spacing-md);
    width: 100%;
    /* animation: fadeIn 0.3s ease; Removed for debugging */
}

/*
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
*/

.bento-card {
    border-radius: var(--radius-lg);
    background-color: #1a1a1a;
    /* Fallback color */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bento-card.large {
    grid-column: 1 / -1;
    /* Span full width */
    grid-row: 1;
}

.bento-card.small {
    grid-row: 2;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-tag {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    max-width: 80%;
    line-height: 1.3;
}

.card-ui-element {
    margin-top: auto;
    margin-bottom: var(--spacing-md);
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
}

.label {
    font-weight: 600;
    margin-left: 8px;
}

.card-arrow-btn {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.card-arrow-btn:hover {
    transform: scale(1.1);
}

.card-icons {
    font-size: 1.5rem;
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* Responsive Bento */
@media (max-width: 900px) {
    .bento-grid-container {
        grid-template-columns: 1fr;
    }

    .bento-sidebar {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
    }

    .sidebar-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        min-width: 200px;
    }

    .sidebar-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--color-accent);
    }

    .bento-content-group {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card.large,
    .bento-card.small {
        grid-column: auto;
        grid-row: auto;
        height: 300px;
    }
}

/* Footer */
.footer {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--color-border);
}

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

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

.footer-links a:hover {
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

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

    .hero-subhead {
        margin: 0 auto var(--spacing-md);
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-alt);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

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

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.modal-content {
    padding: var(--spacing-lg);
}

.modal-content h2 {
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.modal-subtitle {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.back-btn {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.back-btn:hover {
    color: var(--color-text);
    transform: translateX(-3px);
}

/* Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    background: white;
}

.form-group select {
    cursor: pointer;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* Date input styling */
.form-group input[type="date"] {
    cursor: pointer;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.btn-submit {
    margin-top: var(--spacing-sm);
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-message {
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-content {
        padding: var(--spacing-md);
    }
}