/* CSS Reset & Variables */
:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glow-color: rgba(255, 120, 0, 0.4);
    --glow-color-soft: rgba(255, 120, 0, 0.15);
    --accent-color: #ff7800;
    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5;
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' fill='%23ffffff'/%3E%3C/svg%3E") 12 12, auto;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: overlay;
}

a,
button,
.case-card,
.filter-btn,
.case-link,
.modal-close {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='5' fill='%23ff7800'/%3E%3C/svg%3E") 12 12, pointer !important;
}

/* Background Glow Effect */
.glow-background {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--glow-color-soft) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    width: 90%;
    max-width: 700px;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: inherit;
}

.logo-circle {
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color), 0 0 30px var(--glow-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    padding-top: 8rem;
    /* offset for fixed navbar */
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sun {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 40% 40%, #ffb446, #ff7b00);
    border-radius: 50%;
    box-shadow: 0 0 60px 15px rgba(255, 120, 0, 0.4), 0 0 100px 30px rgba(255, 120, 0, 0.2);
    margin-bottom: 1rem;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 80px 25px rgba(255, 120, 0, 0.5), 0 0 140px 40px rgba(255, 120, 0, 0.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections Common */
section {
    padding: 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 3rem;
}

/* Cases Section */
.cases-section {
    position: relative;
}

.cases-glow {
    position: absolute;
    top: -5rem;
    left: -40%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.25) 0%, rgba(255, 120, 0, 0.05) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.cases-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-start;
}

.cases-title-island {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 2rem;
    border-radius: 100px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.title-circle {
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color), 0 0 30px var(--glow-color);
}

.title-text {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.cases-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 500px;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 120, 0, 0.5);
    box-shadow: 0 0 40px 5px rgba(255, 120, 0, 0.2);
}

.case-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, #111, #222);
}

.case-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.case-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-link {
    align-self: flex-start;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.case-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* About Section */
.about-section {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.about-glow {
    position: absolute;
    top: 20%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.3) 0%, rgba(255, 120, 0, 0.05) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.about-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-greeting {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.about-paragraphs p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
}

.about-slogan {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    position: relative;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* Right Side (Header) */
.faq-header-wrapper {
    flex: 0 0 35%;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.faq-title-island {
    margin-bottom: 2rem;
    align-self: flex-start;
    justify-content: flex-start;
}

.faq-desc-text {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

/* Left Side (Accordion) */
.faq-accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 120, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-icon span {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: rgba(255, 120, 0, 0.1);
}

.faq-item.active .faq-icon {
    background: var(--accent-color);
}

.faq-item.active .faq-icon span {
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.8rem 2rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Contacts Section --- */
.contacts-section {
    padding: 6rem 5% 0 5%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts-glow {
    position: absolute;
    bottom: -10rem;
    left: -20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.25) 0%, rgba(255, 120, 0, 0.05) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
}

.contacts-container {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 5rem 2rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contacts-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.btn-contacts-cta {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.contacts-socials-wrapper {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
}

.socials-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.socials-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: rgba(255, 120, 0, 0.1);
    border-color: rgba(255, 120, 0, 0.3);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Modal Styles
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 75%;
    max-width: 1200px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-layout {
    display: flex;
    gap: 3rem;
}

.modal-layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-video {
    flex: 0 0 45%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.modal-video video,
.modal-video iframe {
    width: 50%;
    border-radius: 8px;
    object-fit: cover;
    background: #000;
    border: 0;
    outline: none;
    aspect-ratio: 9/16;
    overflow: hidden;
    display: block;
}

.modal-video-horizontal {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.modal-video-horizontal iframe,
.modal-video-horizontal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
    border: none;
}

.modal-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modal-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-results h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-results ul {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-results li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.modal-results li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.btn-modal-contact {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
    .modal-content {
        width: 85%;
        padding: 2rem;
    }

    .modal-layout {
        gap: 2rem;
    }

    .faq-container {
        flex-direction: column;
        gap: 3rem;
    }

    .faq-header-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        width: 90%;
        padding: 0.8rem 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }

    .nav-links,
    .nav-action {
        display: none;
    }

    /* --- Hero --- */
    .hero {
        padding: 8rem 5% 2rem 5%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-sun {
        width: 80px;
        height: 80px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    /* --- General Sections --- */
    section {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    /* --- Glow Effects: Contain within viewport --- */
    .glow-background,
    .cases-glow,
    .about-glow,
    .contacts-glow {
        display: none;
    }

    /* --- Cases --- */
    .cases-section {
        padding: 3rem 5%;
    }

    .cases-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-title {
        font-size: 1.1rem;
    }

    /* --- About --- */
    .about-section {
        padding: 2rem 5% 4rem 5%;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-greeting {
        font-size: 1.4rem;
    }

    .about-paragraphs p {
        font-size: 1rem;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 3rem 5%;
    }

    .faq-question {
        padding: 1.2rem 1.2rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.5rem 1.2rem;
        font-size: 0.95rem;
    }

    /* --- Contacts --- */
    .contacts-section {
        padding: 3rem 5% 0 5%;
    }

    .contacts-container {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }

    .contacts-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .btn-contacts-cta {
        margin-bottom: 2.5rem;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .socials-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    /* --- Modals --- */
    .modal-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 3.5rem 1.5rem 1.5rem 1.5rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-layout-vertical,
    .modal-layout {
        gap: 1.5rem;
        flex-direction: column;
    }

    .modal-video-horizontal {
        aspect-ratio: 16/9;
    }

    .modal-video {
        flex-direction: column;
    }

    .modal-video video,
    .modal-video iframe {
        width: 100%;
        aspect-ratio: 9/16;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .modal-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}