:root {
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-bg-card: #111111;
    --color-accent: #2E7BC4;
    --color-accent-light: #4A9BE8;
    --color-gold: #C9A962;
    --color-gold-light: #E5D4A1;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-subtle: #666666;
    --color-success: #2D8A5F;
    --color-danger: #8A2D2D;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.section,
.back-to-menu-section {
    scroll-margin-top: 110px;
}

/* ========== NAVIGATION ========== */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(5,5,5,0.98) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.nav-header.scrolled {
    background: rgba(5,5,5,0.98);
    padding: 1rem 4rem;
    backdrop-filter: blur(20px);
}

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

.nav-badge {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-bg);
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero-section {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: min(65%, 980px);
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-image-position, center);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-left: 50%;
    width: 45%;
    padding: 4rem;
    animation: fadeInRight 1.2s ease-out;
}

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

.hero-award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 0.6rem 1.2rem;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-award-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold);
    fill: none;
}

.hero-award-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title strong {
    font-weight: 600;
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 420px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-award-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.hero-award-trophy {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.3));
}

.hero-award-text h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--color-gold);
}

.hero-award-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.65rem;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.unmute-btn {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 20;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-text);
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.unmute-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

/* ========== SECTION STYLES ========== */
.section {
    padding: 8rem 4rem;
    position: relative;
}

.section-dark {
    background: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========== ABOUT PRODUCT SECTION ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-accent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.about-content h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 0.95rem;
    overflow-wrap: break-word;
}

.about-content p strong {
    color: var(--color-text);
    font-weight: 500;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 123, 196, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border-radius: 50%;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Specs Table */
.specs-section {
    margin-top: 6rem;
}

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

.specs-image {
    position: sticky;
    top: 120px;
}

.specs-image img {
    width: 100%;
    height: auto;
}

.specs-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.specs-table td {
    padding: 1.2rem 0;
    font-size: 0.9rem;
}

.specs-table td:first-child {
    color: var(--color-text-muted);
    font-weight: 400;
    width: 45%;
}

.specs-table td:last-child {
    color: var(--color-text);
    font-weight: 500;
}

/* Technology Section */
.tech-highlight {
    background: linear-gradient(135deg, rgba(46, 123, 196, 0.1) 0%, rgba(46, 123, 196, 0.02) 100%);
    border: 1px solid rgba(46, 123, 196, 0.2);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 3rem;
}

.tech-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent-light);
    margin-bottom: 1rem;
}

.tech-highlight p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ========== GUIDELINES SECTION ========== */
.guidelines-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.guidelines-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.9;
}

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

.guideline-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.guideline-card-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guideline-card.do .guideline-card-header {
    background: linear-gradient(135deg, rgba(45, 138, 95, 0.2) 0%, rgba(45, 138, 95, 0.05) 100%);
    border-bottom: 1px solid rgba(45, 138, 95, 0.3);
}

.guideline-card.dont .guideline-card-header {
    background: linear-gradient(135deg, rgba(138, 45, 45, 0.2) 0%, rgba(138, 45, 45, 0.05) 100%);
    border-bottom: 1px solid rgba(138, 45, 45, 0.3);
}

.guideline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.guideline-card.do .guideline-icon {
    background: var(--color-success);
}

.guideline-card.dont .guideline-icon {
    background: var(--color-danger);
}

.guideline-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
}

.guideline-card.do .guideline-card-header h3 {
    color: #4ADE80;
}

.guideline-card.dont .guideline-card-header h3 {
    color: #F87171;
}

.guideline-card-body {
    padding: 2rem;
}

.guideline-list {
    list-style: none;
}

.guideline-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.guideline-list li:last-child {
    border-bottom: none;
}

.guideline-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.3rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.guideline-card.do .guideline-list li::before {
    background: var(--color-success);
}

.guideline-card.dont .guideline-list li::before {
    background: var(--color-danger);
}

.guideline-list li strong {
    color: var(--color-text);
    font-weight: 500;
}

/* Conduct Section */
.conduct-section {
    margin-top: 5rem;
}

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

.conduct-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.conduct-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 98, 0.3);
}

.conduct-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.conduct-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.conduct-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Key Points Box */
.key-points {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 4rem;
}

.key-points h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.key-points h4 svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
    fill: none;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.key-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.key-point-icon {
    width: 24px;
    height: 24px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.key-point-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--color-bg);
    fill: none;
    stroke-width: 3;
}

.key-point-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.key-point-item p strong {
    color: var(--color-text);
}

/* ========== GALLERY SECTION ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-bg-alt);
    padding: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
    max-width: 500px;
    margin: 0 auto;
}

.footer-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hero-content {
        margin-left: 45%;
        width: 50%;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-header {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-video-wrapper {
        position: relative;
        width: 100%;
        height: 60vh;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
        padding: 2rem;
        margin-top: -100px;
    }

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

    .section {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-grid,
    .specs-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid.reverse {
        direction: ltr;
    }

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

    .key-points-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-subtle);
}

.scroll-indicator .mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--color-text-subtle);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--color-text-subtle);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ========== GUIDELINE SUBTITLE ITEM ========== */
.guideline-list-subtitle {
    background: rgba(138, 45, 45, 0.08);
    border-bottom: 1px solid rgba(138, 45, 45, 0.2) !important;
    color: #F87171 !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    margin-top: 0.5rem;
}

.guideline-list-subtitle::before {
    display: none !important;
}

/* ========== STRATEGIC TABLE ========== */
.strategic-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.07);
}

.strategic-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.strategic-table thead {
    background: linear-gradient(135deg, rgba(46, 123, 196, 0.2) 0%, rgba(46, 123, 196, 0.05) 100%);
    border-bottom: 1px solid rgba(46, 123, 196, 0.3);
}

.strategic-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent-light);
}

.strategic-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}

.strategic-table tbody tr:last-child {
    border-bottom: none;
}

.strategic-table tbody tr:hover {
    background: rgba(46, 123, 196, 0.05);
}

.strategic-table td {
    padding: 1.4rem 1.5rem;
    vertical-align: top;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.strategic-table td.col-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.6;
    width: 3rem;
    text-align: center;
    vertical-align: middle;
}

.strategic-table td:nth-child(2) strong {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.92rem;
}

.strategic-table td:nth-child(4) {
    font-style: italic;
    color: var(--color-text-subtle);
    font-size: 0.85rem;
}

.col-num   { width: 5%; }
.col-direction { width: 20%; }
.col-focus { width: 30%; }
.col-script { width: 45%; }

@media (max-width: 992px) {
    .strategic-table th,
    .strategic-table td {
        padding: 1rem;
        font-size: 0.82rem;
    }

    .col-focus {
        display: none;
    }

    .col-direction { width: 30%; }
    .col-script    { width: 65%; }
}

/* ========== NAV LOGO LINK ========== */
.nav-logo a {
    display: block;
    line-height: 0;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.75;
}

/* ========== BACK TO MENU BUTTON ========== */
.back-to-menu-section {
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.back-to-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.back-to-menu-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.back-to-menu-btn:hover {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 0 24px rgba(46, 123, 196, 0.35);
}

.back-to-menu-btn:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 992px) {
    .hero-img-wrapper,
    .hero-video-wrapper {
        position: relative;
        width: 100%;
        height: min(60vh, 560px);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
