/* ============================================================
   CSS Reset & Design Tokens
   ============================================================ */
:root {
    --bg-main:     #F5EEE6;
    --surface-1:   #FEFCF8;
    --surface-2:   #FAF6F0;

    --text-main:   #1A1714;
    --text-sec:    #5A4E48;
    --text-muted:  #7A6D65;
    --text-label:  #9E918A;

    --primary:        #1A5C52;
    --primary-dark:   #134940;
    --primary-darker: #0C3329;
    --primary-light:  #EBF6F4;
    --primary-200:    #B8DED9;

    --accent:      #D4621A;
    --accent-dark: #B0511A;

    --success: #1A7A5E;
    --warning: #C07E10;
    --danger:  #9B2335;

    --border:        #E0D8CF;
    --border-subtle: #CEC7BE;

    --sidebar-start: #12332F;
    --sidebar-end:   #0C211E;

    --font-heading: 'Playfair Display', serif;
    --font-body:    'Source Sans 3', sans-serif;
    --font-mono:    'IBM Plex Mono', monospace;

    --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.04);
    --shadow-md: 0 8px 24px rgba(26, 23, 20, 0.08);
    --shadow-lg: 0 24px 48px rgba(26, 23, 20, 0.14);

    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-main); }

.label-mono {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Eyebrow labels above section headings */
.section-eyebrow,
.hero-eyebrow,
.cta-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 8rem 0; }
.bg-secondary { background-color: var(--surface-2); }
.text-center  { text-align: center; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 52rem; }
.max-w-4xl { max-width: 60rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }

/* Section intro block */
.section-intro {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 4rem;
}
.section-intro h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-intro p {
    color: var(--text-sec);
    font-size: 1.2rem;
    line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid transparent;
}
.btn-large { padding: 1rem 2.25rem; font-size: 1.1rem; }

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

.btn-glow { box-shadow: 0 4px 20px rgba(26, 92, 82, 0.35); }
.btn-glow:hover { box-shadow: 0 6px 28px rgba(26, 92, 82, 0.5); transform: translateY(-1px); }

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--border-subtle);
}
.btn-outline:hover { background-color: var(--surface-1); border-color: var(--primary-200); }

.btn-secondary {
    background-color: var(--surface-1);
    color: var(--text-main);
    border-color: var(--border);
}
.btn-secondary:hover { background-color: var(--surface-2); border-color: var(--border-subtle); }

/* CTA section buttons */
.btn-cta {
    background-color: white;
    color: var(--primary-darker);
    border-color: white;
    font-weight: 700;
}
.btn-cta:hover { background-color: var(--primary-light); color: var(--primary-darker); }

.btn-cta-outline {
    background-color: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.4);
}
.btn-cta-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 80px;
    background-color: rgba(254, 252, 248, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-darker);
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-sec);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 1rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: 11rem 0 7rem;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,92,82,0.06) 0%, transparent 70%),
                var(--bg-main);
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 820px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-sec);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 3rem;
    background-color: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-darker);
    line-height: 1;
}
.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.hero-stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: var(--border);
}

/* ============================================================
   Steps Row (evaluaciones section)
   ============================================================ */
.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 0;
    flex-wrap: wrap;
}
.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    box-shadow: var(--shadow-sm);
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-text {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.4;
}
.step-text strong { color: var(--text-main); }
.step-arrow {
    color: var(--border-subtle);
    flex-shrink: 0;
}
.step-arrow i { width: 20px; height: 20px; }

/* ============================================================
   Feature Cards Grid
   ============================================================ */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 0.5rem;
}

.feature-card {
    background-color: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}
.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background-color: rgba(212, 98, 26, 0.1);
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.feature-card-icon--primary {
    background-color: var(--primary-light);
    color: var(--primary);
}
.feature-card-icon i { width: 26px; height: 26px; }
.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}
.feature-card p {
    font-size: 1rem;
    color: var(--text-sec);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Video Container
   ============================================================ */
.video-container {
    width: 100%;
    background-color: var(--surface-1);
    overflow: hidden;
    display: flex;
}
.product-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--surface-1);
    animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.carousel-media {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   Dashboard Carousel
   ============================================================ */
.carousel-container {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 2rem;
}
.carousel-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background-color: var(--surface-2);
}
.carousel-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.25s ease;
}
.carousel-tab i { width: 18px; height: 18px; }
.carousel-tab:hover { background-color: rgba(255,255,255,0.5); color: var(--primary); }
.carousel-tab.active {
    background-color: var(--surface-1);
    color: var(--primary-darker);
    border-bottom-color: var(--accent);
}
.carousel-tab.active i { color: var(--accent); }

.carousel-track-wrapper { overflow: hidden; position: relative; width: 100%; }
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    width: 300%;
}
.carousel-slide {
    width: 33.3333%;
    flex-shrink: 0;
    padding: 3rem;
    box-sizing: border-box;
}
.carousel-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}
.carousel-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.carousel-info h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-darker);
}
.carousel-info > p {
    color: var(--text-sec);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.carousel-info .feature-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.carousel-info .feature-list li { margin-bottom: 0; }

/* Feature list (inside slides) */
.feature-list { list-style: none; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
}
.feature-list i { color: var(--primary); width: 18px; flex-shrink: 0; }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(150deg, var(--sidebar-start) 0%, var(--primary-darker) 100%);
    color: white;
    text-align: center;
}
.cta-container { max-width: 740px; margin-inline: auto; }
.cta-eyebrow { color: var(--primary-200); }
.cta-title {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background-color: var(--surface-1);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    text-decoration: none;
    color: var(--text-sec);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

/* ============================================================
   Scroll Reveal Animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.fade-up  { transform: translateY(32px); }
.fade-left  { transform: translateX(32px); }
.fade-right { transform: translateX(-32px); }
.reveal.visible.fade-up,
.reveal.visible.fade-left,
.reveal.visible.fade-right { transform: none; }

/* ============================================================
   Misc / Badge
   ============================================================ */
.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--primary-200);
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-sec);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-sec);
    font-size: 1rem;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon i { width: 18px; height: 18px; }

/* Form card */
.contact-form-wrap {
    background-color: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 82, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--danger);
}

.btn.w-full { width: 100%; }

.form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--primary-light);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
    color: var(--primary-darker);
}
.form-success i {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--primary);
}
.form-success div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.form-success strong {
    font-size: 1rem;
    font-weight: 700;
}
.form-success span {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}


.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================================
   Hamburger Menu
   ============================================================ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-md);
    transition: background 0.2s;
    flex-shrink: 0;
}
.nav-hamburger:hover { background-color: var(--primary-light); }
.nav-hamburger span {
    display: block;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hidden on mobile inside the nav drawer */
.nav-cta-mobile { display: none; }

/* ============================================================
   Responsive — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 5rem 0; }

    /* Navbar */
    .nav-hamburger { display: flex; }
    .nav-actions { display: none; }
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0; right: 0;
        background-color: rgba(254, 252, 248, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-md);
        font-size: 1.05rem;
        color: var(--text-main);
        transition: background 0.2s;
    }
    .nav-links a:hover { background-color: var(--primary-light); color: var(--primary); }
    .nav-cta-mobile {
        display: flex;
        margin-top: 0.75rem;
        justify-content: center;
        text-align: center;
        color: white;
    }

    /* Hero */
    .hero { padding: 8rem 0 5rem; }
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
    .hero-stat-divider { display: none; }

    /* Section headings */
    .section-intro h2 { font-size: 2.2rem; }
    .section-intro p { font-size: 1.05rem; }

    /* Steps */
    .steps-row { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .step-arrow { transform: rotate(90deg); align-self: center; }
    .step-item { max-width: 100%; }

    /* Feature cards */
    .feature-cards-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* Carousel */
    .carousel-slide { padding: 2rem 1.5rem; }
    .carousel-tabs { flex-wrap: nowrap; overflow-x: auto; }
    .carousel-tab span { font-size: 0.85rem; }

    /* Carousel info text layout */
    .carousel-info .feature-list { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .carousel-info { text-align: left; }
    .carousel-info h3 { font-size: 1.6rem; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-info h2 { font-size: 2rem; }
    .contact-form-wrap { padding: 2rem; }

    /* CTA */
    .cta-title { font-size: 2.2rem; }
    .cta-section { padding: 5rem 0; }

    /* Footer */
    .footer-content { flex-direction: column; text-align: center; gap: 1.25rem; }
    .footer-links { justify-content: center; }
}

/* ============================================================
   Responsive — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .container { padding: 0 1rem; }
    .section { padding: 4rem 0; }

    /* Hero */
    .hero { padding: 7rem 0 4rem; }
    .hero-title { font-size: 2rem; line-height: 1.15; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 1rem; padding: 1rem; justify-content: center; }
    .hero-stat { flex: 1 1 40%; }

    /* Section headings */
    .section-intro { margin-bottom: 2.5rem; }
    .section-intro h2 { font-size: 1.75rem; }
    .section-intro p { font-size: 1rem; }

    /* Carousel tabs: icon only on very small screens */
    .carousel-tab span { display: none; }
    .carousel-tab { padding: 1rem; }
    .carousel-tab i { width: 22px; height: 22px; }
    .carousel-slide { padding: 1.5rem 1rem; }
    .carousel-info h3 { font-size: 1.35rem; }

    /* Feature cards */
    .feature-card { padding: 1.75rem 1.25rem; }

    /* Contact form */
    .contact-form-wrap { padding: 1.5rem 1rem; border-radius: var(--radius-lg); }
    .contact-info h2 { font-size: 1.75rem; }

    /* CTA */
    .cta-title { font-size: 1.75rem; }
    .cta-buttons .btn { width: 100%; }

    /* Steps */
    .step-item { padding: 1rem 1.25rem; }

    /* Logo in navbar */
    .logo img { height: 52px !important; }

    /* Shadow utility */
    .shadow-xl { box-shadow: var(--shadow-md); }
}


/* ============================================================
   Video Tap-to-Fullscreen hint (mobile only)
   ============================================================ */
.video-tap-wrapper {
    position: relative;
    cursor: default;
}

@media (max-width: 900px) {
    .video-tap-wrapper { cursor: pointer; }

    .video-tap-hint {
        position: absolute;
        bottom: 12px;
        right: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(0, 0, 0, 0.55);
        color: white;
        font-family: var(--font-body);
        font-size: 0.78rem;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        backdrop-filter: blur(6px);
        pointer-events: none;
        letter-spacing: 0.02em;
    }
    .video-tap-hint i { width: 14px; height: 14px; }
}

@media (min-width: 901px) {
    .video-tap-hint { display: none; }
}

/* ============================================================
   Video Lightbox Modal
   ============================================================ */
.video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-lightbox.open { display: flex; }

.video-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 33, 30, 0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.video-lightbox-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    margin: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    background: #000;
    animation: lightboxIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.video-lightbox-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
    object-fit: contain;
}

.video-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.video-lightbox-close:hover { background: rgba(0,0,0,0.85); transform: scale(1.1); }
.video-lightbox-close i { width: 18px; height: 18px; }

body.lightbox-open { overflow: hidden; }
