/* --- CSS VARIABLES & RESET --- */
:root {
    --primary: #0062ff;
    --primary-dark: #004ecc;
    --secondary: #00f2fe;
    --success-glow: #00ffaa;
    --bg-dark: #0a0f1d;
    --bg-card: #131c31;
    --text-light: #ffffff;
    --text-muted: #8fa0dd;
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #004ecc);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 98, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 255, 0.5);
}

/* --- FIXED LANGUAGE SWITCHER (EN | ID) --- */
.lang-switcher-wrap {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10005; 
    background: rgba(19, 28, 49, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 98, 255, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    user-select: none;
}

.lang-switcher-wrap .lang-opt {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    padding: 2px 4px;
}

.lang-switcher-wrap .lang-opt:hover {
    color: var(--secondary);
}

.lang-switcher-wrap .lang-opt.active-toggle-btn {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
}

.lang-switcher-wrap .lang-split {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 400;
}

/* --- MULTI-LANGUAGE DISPLAY SYSTEM --- */
.lang-en, .lang-id {
    display: none !important;
}

.lang-en.active-lang {
    display: block;
}

span.lang-en.active-lang, span.lang-id.active-lang {
    display: inline-block !important;
}
a.lang-en.active-lang, a.lang-id.active-lang {
    display: inline-flex !important;
}
h1.lang-en.active-lang, h1.lang-id.active-lang,
h2.lang-en.active-lang, h2.lang-id.active-lang,
h3.lang-en.active-lang, h3.lang-id.active-lang,
p.lang-en.active-lang, p.lang-id.active-lang,
div.lang-en.active-lang, div.lang-id.active-lang {
    display: block !important;
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(10, 15, 29, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding-right: 120px; 
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: white;
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 180px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 98, 255, 0.15), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.05), transparent 40%);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    padding: 6px 16px;
    background: rgba(0, 98, 255, 0.1);
    border: 1px solid rgba(0, 98, 255, 0.3);
    color: var(--secondary);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(to right, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ABOUT US SECTION --- */
.about-section {
    background: linear-gradient(180deg, rgba(10, 15, 29, 1) 0%, rgba(19, 28, 49, 0.4) 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-main-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
}

.about-main-text strong {
    color: var(--text-light);
}

.about-main-text p {
    margin-bottom: 20px;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: rgba(0, 98, 255, 0.3);
    background: rgba(0, 98, 255, 0.02);
    transform: translateY(-3px);
}

.pillar-card i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- COMPETENCE ASSURANCE SECTION --- */
.competence-assurance {
    background: rgba(19, 28, 49, 0.15);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.competence-box {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 98, 255, 0.05) 0%, rgba(0, 242, 254, 0.02) 100%);
    border: 1px solid rgba(0, 98, 255, 0.2);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    align-items: start;
    gap: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.competence-icon {
    font-size: 3rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 5px;
}

.competence-text-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.competence-text-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- VISUAL CREDENTIALS BADGE LAYOUT --- */
.credential-list-item {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.credential-list-item:hover {
    background: rgba(0, 98, 255, 0.04);
    border-color: rgba(0, 98, 255, 0.15);
}

.credential-text {
    flex: 1;
}

.badge-visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: linear-gradient(135deg, #131c31, #0a0f1d);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.badge-visual-container:hover {
    transform: scale(1.08) translateY(-1px);
}

.badge-visual-container.epi-badge-render {
    border-color: #00bfa5;
    box-shadow: 0 0 15px rgba(0, 191, 165, 0.2);
}

.epi-vector-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.badge-visual-container.aws-credly {
    border-color: #ff9900;
    color: #ff9900;
    box-shadow: 0 0 12px rgba(255, 153, 0, 0.15);
    font-size: 1.6rem;
}

.badge-visual-container.gcp-credly {
    border-color: #4285f4;
    color: #4285f4;
    box-shadow: 0 0 12px rgba(66, 133, 244, 0.15);
    font-size: 1.5rem;
}

.badge-visual-container.azure-credly {
    border-color: #0078d4;
    color: #0078d4;
    box-shadow: 0 0 12px rgba(0, 120, 212, 0.15);
    font-size: 1.5rem;
}

.badge-visual-container.nvidia-cert {
    border-color: #76b900;
    color: #76b900;
    box-shadow: 0 0 15px rgba(118, 185, 0, 0.2);
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .competence-box {
        flex-direction: column;
        text-align: left;
        padding: 30px 20px;
        gap: 15px;
    }
    .competence-icon {
        margin: 0 auto;
    }
    .credential-list-item {
        flex-direction: row;
        align-items: center;
    }
}

/* --- SERVICES SECTIONS & GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 98, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sub-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.sub-list li {
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 15px;
}

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

.sub-list li i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sub-list li span {
    color: var(--text-muted);
    display: block;
    font-size: 0.82rem;
    margin-top: 2px;
}

.badge-info-note {
    margin-top: auto;
    padding: 10px;
    background: rgba(0, 98, 255, 0.08);
    border-left: 3px solid var(--primary);
    font-size: 0.82rem;
    color: #fff;
    border-radius: 0 4px 4px 0;
}

/* --- WHY US (USP) --- */
.usp {
    background: rgba(19, 28, 49, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.usp-item {
    display: flex;
    gap: 20px;
}

.usp-icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 98, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.usp-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

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

/* --- CASE STUDIES SECTION STYLE --- */
.case-studies-section {
    background: #000000;
    position: relative;
}
.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}
.case-studies-section .container {
    position: relative;
    z-index: 2;
}
.cyan-tag {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}
.filter-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.filter-btn {
    background: rgba(19, 28, 49, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active-filter {
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
    background: rgba(0, 98, 255, 0.1);
}
.case-studies-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}
.case-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15);
    transform: translateY(-2px);
}
.case-left {
    width: 32%;
    background: rgba(10, 15, 29, 0.5);
    border-right: 1px solid var(--border-color);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}
.metric-item {
    display: flex;
    flex-direction: column;
}
.metric-val {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}
.metric-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.case-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.case-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    color: #fff;
}
.case-right {
    width: 68%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.case-right h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
}
.narrative-block {
    margin-bottom: 16px;
}
.narrative-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
    display: block;
}
.narrative-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 24px;
    transition: var(--transition);
    width: fit-content;
}
.read-more-btn:hover {
    color: var(--secondary);
    transform: translateX(4px);
}
.confidential-box {
    background: rgba(19, 28, 49, 0.4);
    border: 1px solid rgba(0, 98, 255, 0.2);
    padding: 24px 30px;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.confidential-box i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.confidential-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}
.confidential-box strong {
    color: #fff;
}
@media (max-width: 991px) {
    .case-card {
        flex-direction: column;
    }
    .case-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px;
    }
    .case-right {
        width: 100%;
        padding: 30px;
    }
}
@media (max-width: 576px) {
    .case-left {
        flex-direction: column;
        gap: 20px;
    }
}

/* --- COMPLIANCE & SECURITY VISUAL BADGES --- */
.compliance {
    background: linear-gradient(180deg, rgba(13, 22, 41, 0.5) 0%, rgba(10, 15, 29, 0.8) 100%);
    text-align: center;
    padding: 80px 0;
}

.compliance-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.visual-badge {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.05) 0%, rgba(0, 98, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 170, 0.25);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.05);
    padding: 20px 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.visual-badge:hover {
    border-color: var(--success-glow);
    box-shadow: 0 0 25px rgba(0, 255, 170, 0.15);
    transform: translateY(-2px);
}

.visual-badge i {
    font-size: 2.2rem;
    color: var(--success-glow);
}

.badge-text {
    text-align: left;
}

.badge-text .title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    display: block;
    letter-spacing: 0.5px;
}

.badge-text .subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compliance-text {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- CONTACT SECTION --- */
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.meta-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

/* REFINED EMAIL & ADDRESS BOX 2-LINES - CENTER ALIGNED */
.email-item-box {
    background: rgba(0, 98, 255, 0.08);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 98, 255, 0.2);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.email-info-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.email-label-block {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
}
.email-address-block {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    margin-bottom: 4px;
    text-align: center;
    width: 100%;
}
.address-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4px 0;
}
.office-address {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 550px;
    font-style: normal;
}
/* --- END CONTACT --- */

/* --- FOOTER & PRIVACY MODAL --- */
footer {
    background: #050810;
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.privacy-link {
    color: var(--secondary);
    text-decoration: none;
    cursor: pointer;
    margin-left: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.privacy-link:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-disclaimer {
    font-size: 0.82rem;
    color: #6272a4;
    line-height: 1.6;
    max-width: 820px;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 6px;
    font-weight: normal;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active-modal {
    display: flex;
}

.privacy-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 750px;
    max-height: 80vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: #fff;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: left;
}

.modal-body h4 {
    color: #fff;
    font-size: 1.05rem;
    margin: 20px 0 8px 0;
    font-weight: 600;
}

.modal-body h4:first-of-type {
    margin-top: 0;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.modal-body ul li {
    margin-bottom: 6px;
}

.modal-body strong {
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .nav-container {
        padding-right: 100px; 
    }
    .lang-switcher-wrap {
        top: 16px;
        right: 16px;
        padding: 4px 10px;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    section {
        padding: 60px 0;
    }
    .badge-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .visual-badge {
        width: 100%;
        max-width: 320px;
    }
    .footer-copyright {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .footer-divider {
        display: none;
    }
}
