:root {
    --bg: #f7fbfb;
    --surface: #ffffff;
    --surface-2: #f0faf9;
    --text: #0b3b3b;
    --muted: #507676;
    --border: rgba(11, 59, 59, 0.12);
    --shadow: 0 18px 40px rgba(11, 59, 59, 0.1);

    --teal: #1aa3a3;
    --teal-light: #e0f2f2;
    --teal-dark: #0b6b6b;
    --purple: #6d5bd0;
    --amber: #f59e0b;
    --rose: #ef476f;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --container: 1200px;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-heading: "Outfit", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

/* fade-in (used by index.js IntersectionObserver) */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

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

/* ---------------- NAVBAR ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.top-nav {
    width: min(1320px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1 1 auto;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 50px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(11, 59, 59, 0.16);
    background: #ffffff;
}

.logo.placeholder {
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    color: rgba(11, 59, 59, 0.55);
    letter-spacing: 0.02em;
}

.nav-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 14px; */
}

.client-brand {
    width: clamp(110px, 14vw, 160px);
    height: auto;
}

.nav-title-1 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: #0b6b6b;
    font-size: 14px;
    white-space: nowrap;
}

.nav-title-2 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.05;
    font-size: 14px;
    white-space: nowrap;
}

.nav-toggle {
    margin-left: auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(11, 59, 59, 0.12);
    background: var(--surface);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 18px;
    background: rgba(11, 59, 59, 0.72);
    border-radius: 2px;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-language {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lang-label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 59, 59, 0.78);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lang-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(11, 59, 59, 0.16);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96),
        rgba(239, 252, 252, 0.92)
    );
    box-shadow: 0 8px 18px rgba(11, 59, 59, 0.08);
}

.lang-btn {
    border: none;
    background: transparent;
    border-radius: 999px;
    color: rgba(11, 59, 59, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    min-width: 48px;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.22s ease;
}

.lang-btn:hover {
    color: rgba(11, 59, 59, 0.98);
}

.lang-btn.is-active {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #ffffff;
    box-shadow: 0 7px 14px rgba(13, 148, 136, 0.28);
}

.nav-links a {
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    color: rgba(11, 59, 59, 0.72);
    padding: 10px 2px;
    border-bottom: 2px solid transparent;
    transition:
        color 0.18s ease,
        border-color 0.18s ease;
}

.nav-links a:focus-visible,
.lang-btn:focus-visible,
.btn-login:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(26, 163, 163, 0.35);
    outline-offset: 3px;
}

.nav-links a:hover {
    color: rgba(11, 59, 59, 1);
}

.nav-links a.active {
    color: rgba(11, 59, 59, 1);
    border-bottom-color: var(--teal);
}

.btn-login {
    text-decoration: none;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(13, 148, 136, 0.25);
    filter: brightness(1.1);
}

.btn-icon-install {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(11, 59, 59, 0.12);
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px rgba(11, 59, 59, 0.05);
}

.btn-icon-install:hover {
    background: var(--teal);
    color: #ffffff;
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.2);
}

.btn-login-ico {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    position: relative;
}

.btn-login-ico::before {
    content: "";
    position: absolute;
    inset: 4px 6px auto 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
}

.btn-login-ico::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0.9;
}

/* mobile nav panel */
body.nav-open {
    overflow: hidden;
}

/* ---------------- HERO ---------------- */
.hero {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    background: url("/assets/bg-hero.png") center / cover no-repeat;

    display: flex;
    justify-content: center;
    min-height: 85vh;
    align-items: center;
}

@media (max-width: 768px) {
    .hero {
        padding: 25px 0 20px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 100px));
    margin: 0 auto;
    /* display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); */
    display: flex;
    gap: 26px;
    align-items: center;
    min-height: 520px;
}

.hero-left {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(48px, 6vw, 88px);
    margin: 0 0 16px;
    /* line-height: 1.05; */
    background: linear-gradient(135deg, var(--text) 30%, var(--teal-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero-dept {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 800;
    color: rgba(11, 59, 59, 0.85);
    position: relative;
}

.hero-dept span {
    position: relative;
    padding-bottom: 8px;
}

.hero-dept span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    border-radius: 99px;
    background: var(--teal);
}

.hero-desc {
    max-width: 560px;
    margin: 0 0 18px;
    color: rgba(11, 59, 59, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.btn-primary,
.btn-outline {
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(13, 148, 136, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: #ffffff;
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-3px);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-login:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-outline,
.btn-login {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(11, 59, 59, 0.08);
    color: rgba(11, 59, 59, 0.72);
    font-weight: 700;
}

.ico {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 6px;
    background: rgba(26, 163, 163, 0.14);
    position: relative;
}

.ico::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 4px;
    background: rgba(26, 163, 163, 0.55);
}

.ico-cal::before {
    inset: 3px;
    border-radius: 3px;
    background:
        linear-gradient(#1aa3a3, #1aa3a3) 0 0 / 100% 26% no-repeat,
        linear-gradient(#1aa3a3, #1aa3a3) 14% 56% / 70% 12% no-repeat,
        linear-gradient(#1aa3a3, #1aa3a3) 14% 74% / 58% 12% no-repeat;
}

.ico-pin::before {
    inset: 0;
    background: transparent;
}

.ico-pin::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 4px;
    border-radius: 99px;
    background: rgba(26, 163, 163, 0.85);
    box-shadow: 0 10px 0 0 rgba(26, 163, 163, 0.85);
}

.ico-shield::before {
    inset: 3px 5px 5px;
    border-radius: 0 0 12px 12px;
}

.ico-doc::before {
    inset: 4px;
    border-radius: 3px;
    background:
        linear-gradient(#1aa3a3, #1aa3a3) 12% 26% / 76% 10% no-repeat,
        linear-gradient(#1aa3a3, #1aa3a3) 12% 48% / 62% 10% no-repeat,
        linear-gradient(#1aa3a3, #1aa3a3) 12% 70% / 70% 10% no-repeat;
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 18px;
    align-items: center;
    justify-items: end;
}

.hero-graphic {
    width: min(520px, 100%);
    filter: drop-shadow(0 22px 44px rgba(11, 59, 59, 0.1));
}

.hero-graphic img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.benefits-card {
    width: 240px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.benefit {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 10px;
    border-radius: 14px;
}

.benefit + .benefit {
    border-top: 1px solid rgba(11, 59, 59, 0.06);
}

.b-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 13px;
}

.b-sub {
    font-weight: 800;
    color: rgba(11, 59, 59, 0.64);
    font-size: 13px;
}

.b-ico {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b-ico img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ---------------- MISSION & VALUES ---------------- */
.mission {
    padding: 18px 0 36px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0)
    );
}

/* Desktop full-screen sections: one scroll = one panel */
@media (min-width: 1081px) {
    .hero {
        min-height: calc(100vh - 78px);
        display: flex;
        align-items: center;
    }

    .hero-inner {
        min-height: calc(100vh - 130px);
    }

    .mission {
        min-height: calc(100vh - 78px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }
}

.mission-head {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto 14px;
    text-align: center;
}

.mission-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: -0.02em;
    color: rgba(11, 59, 59, 0.9);
}

.mission-grid {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mv-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    /* display: flex; */
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    /* align-items: center; */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .mv-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.mv-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--teal);
}

.mv-card.alt {
    background: rgba(255, 255, 255, 0.78);
}

.mv-ico {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.mv-ico img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Icon pseudo-elements removed as images are now used */

.mv-ico.purple {
    color: var(--purple);
    background: rgba(109, 91, 208, 0.12);
}

.mv-body h3 {
    margin: 4px 0 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.mv-body p {
    margin: 0;
    color: rgba(11, 59, 59, 0.72);
    line-height: 1.65;
    font-weight: 500;
}

/* .mv-img styles removed as images moved to mv-ico */

.value-strip {
    width: min(var(--container), calc(100% - 40px));
    margin: 40px auto 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-right: 1px solid rgba(11, 59, 59, 0.06);
}

.value-item:last-child {
    border-right: none;
}

.v-ico {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-ico img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.v-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 14px;
}

.v-sub {
    color: rgba(11, 59, 59, 0.66);
    font-weight: 700;
    font-size: 12.5px;
}

/* ---------------- SECTIONS ---------------- */
.container-section {
    padding: 40px 0;
}

.support-section {
    padding-top: 24px;
}

.compact-bottom {
    padding-bottom: 16px;
}

.compact-top {
    padding-top: 16px;
}

.support-wrap {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 16px;
}

.support-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 59, 59, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(11, 59, 59, 0.06);
    padding: 18px;
}

.support-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 59, 59, 0.08);
    color: rgba(11, 59, 59, 0.78);
    font-weight: 700;
}

.support-line:last-child {
    border-bottom: none;
}

.section-h {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-size: 30px;
}

.section-p {
    margin: 0 0 18px;
    color: rgba(11, 59, 59, 0.72);
    max-width: 720px;
    line-height: 1.65;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 1200px) {
    .guidelines-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .guidelines-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
}

.g-card {
    background: #ffffff;
    border: 1px solid rgba(11, 59, 59, 0.08);
    border-radius: 16px;
    padding: 16px 14px;
    box-shadow: 0 4px 12px rgba(11, 59, 59, 0.04);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.g-n {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    background: rgba(26, 163, 163, 0.12);
    color: #0b6b6b;
}

.g-img {
    margin: 20px 0 12px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g-img img {
    height: 200px;
    width: 214px;
    object-fit: cover;
}

.g-t {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: #0b6b6b;
    font-size: 15px;
    line-height: 1.3;
}

.g-p {
    color: rgba(11, 59, 59, 0.68);
    line-height: 1.4;
    font-size: 13.5px;
}

.g-info-banner {
    margin-top: 30px;
    background: rgba(26, 163, 163, 0.06);
    border: 1px solid rgba(26, 163, 163, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b6b6b;
    font-weight: 600;
    font-size: 15px;
}

.g-info-banner svg {
    flex-shrink: 0;
}

/* ---------------- EMERGENCY ---------------- */
.emergency-section {
    padding: 50px 0;
    background: linear-gradient(
        180deg,
        rgba(26, 163, 163, 0.08),
        rgba(26, 163, 163, 0.02)
    );
}

.emergency-inner {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.55fr;
    gap: 18px;
    align-items: start;
}

.emergency-header h2 {
    margin: 15px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.8vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.03;
}

.emergency-header em {
    color: #0b6b6b;
    font-style: normal;
}

.urgent-tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(239, 71, 111, 0.12);
    color: rgba(239, 71, 111, 0.95);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.steps-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.step-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(11, 59, 59, 0.08);
    border-radius: var(--radius);
    padding: 16px;
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(11, 59, 59, 0.06);
}

.step-num {
    font-weight: 900;
    color: rgba(11, 59, 59, 0.66);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.step-num span {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: -0.04em;
    color: #0b6b6b;
    margin-top: 6px;
}

.step-content h4 {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.step-content p {
    margin: 0;
    color: rgba(11, 59, 59, 0.7);
    line-height: 1.6;
}

.emergency-contact-card {
    position: sticky;
    top: 96px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(11, 59, 59, 0.08);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: rgba(239, 71, 111, 0.14);
    color: rgba(239, 71, 111, 0.95);
}

.contact-label {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.contact-sub {
    margin-top: 8px;
    color: rgba(11, 59, 59, 0.7);
    line-height: 1.5;
    font-weight: 600;
}

.emergency-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.emergency-section::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(26, 163, 163, 0.05),
        transparent 70%
    );
    pointer-events: none;
}

.emergency-inner {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.urgent-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--teal-light);
    color: var(--teal-dark);
    border-radius: 99px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.emergency-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin: 0 0 40px;
    color: var(--text);
}

.emergency-header h2 em {
    color: var(--teal);
    font-style: normal;
}

.step-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: #ffffff;
    border-color: var(--teal);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.step-card h4 {
    margin: 0 0 4px;
    color: var(--text);
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.2;
}

.emergency-contact-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-label {
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.contact-sub {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-num-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #ffffff;
    border: none;
    border-radius: var(--radius);
    font-size: 42px;
    font-weight: 900;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(26, 163, 163, 0.2);
}

.contact-num-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(26, 163, 163, 0.3);
}

/* ---------------- FAQ ---------------- */
.faq-section {
    padding: 52px 0;
}

.compact-faq {
    padding-top: 42px;
    padding-bottom: 42px;
}

.faq-head {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto 18px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(26, 163, 163, 0.12);
    color: rgba(11, 107, 107, 0.95);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title {
    margin: 10px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(26px, 2.8vw, 40px);
    letter-spacing: -0.03em;
}

.faq-inner {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--teal);
}

.faq-q {
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
}

.faq-a {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

/* ---------------- FOOTER ---------------- */
footer {
    padding: 80px 0 40px;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    color: var(--text);
}

footer a {
    color: var(--muted);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--teal);
}

.footer-brand-name span {
    color: var(--teal);
}

.footer-desc {
    color: var(--muted);
}

.social-btn {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--teal);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--teal);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--text);
}

.reach-icon {
    background: #ffffff;
    border: 1px solid var(--border);
}

.reach-text {
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-copy {
    color: var(--muted);
}

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

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

.footer-map {
    margin-bottom: 20px;
}

.footer-map h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(11, 59, 59, 0.12);
    box-shadow: 0 10px 24px rgba(11, 59, 59, 0.08);
}

.map-frame iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
}

.footer-grid {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
    gap: 18px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 22px;
}

.footer-brand-name span {
    color: #0b6b6b;
}

.footer-desc {
    margin: 10px 0 14px;
    color: rgba(11, 59, 59, 0.7);
    line-height: 1.65;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(26, 163, 163, 0.12);
    color: rgba(11, 107, 107, 0.92);
    font-weight: 900;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-col a {
    color: rgba(11, 59, 59, 0.72);
    text-decoration: none;
    font-weight: 700;
}

.footer-col a:hover {
    color: rgba(11, 59, 59, 1);
}

.reach-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: start;
    margin-bottom: 10px;
}

.reach-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(26, 163, 163, 0.12);
    display: grid;
    place-items: center;
}

.reach-text {
    color: rgba(11, 59, 59, 0.7);
    line-height: 1.55;
    font-weight: 600;
}

.footer-bottom {
    width: min(var(--container), calc(100% - 40px));
    margin: 22px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 59, 59, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    color: rgba(11, 59, 59, 0.62);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer-links a {
    text-decoration: none;

    font-weight: 600;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1080px) {
    .hero-inner {
        flex-direction: column;
        min-height: unset;
        padding-bottom: 22px;
    }

    .container-section {
        padding: 30px 0;
    }

    .compact-bottom {
        padding-bottom: 12px;
    }

    .compact-top {
        padding-top: 12px;
    }

    .hero-right {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .benefits-card {
        width: min(520px, 100%);
    }

    .emergency-inner {
        grid-template-columns: 1fr;
    }

    .emergency-section {
        padding: 38px 0;
    }

    .faq-section,
    .compact-faq {
        padding: 34px 0;
    }

    .emergency-contact-card {
        position: static;
    }

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

    .support-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .top-nav {
        padding: 8px 0;
        gap: 8px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: 0;
        order: 3;
        flex: 0 0 auto;
    }

    .nav-left {
        min-width: 0;
        flex: 1 1 auto;
        gap: 8px;
    }

    .logo-row {
        gap: 6px;
    }

    .logo {
        width: 34px;
        height: 34px;
    }

    .logo.placeholder {
        font-size: 8px;
    }

    .nav-titles {
        /* display: flex; */
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .client-brand {
        width: 104px;
    }

    .nav-title-1,
    .nav-title-2 {
        font-size: 11px;
        line-height: 1.1;
        white-space: normal;
    }

    .nav-right {
        margin-left: 0;
        position: fixed;
        left: 14px;
        right: 14px;
        top: 62px;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(11, 59, 59, 0.1);
        border-radius: 18px;
        padding: 14px;
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition:
            opacity 0.18s ease,
            transform 0.18s ease;
        flex-direction: column;
        align-items: stretch;
    }

    body.nav-open .nav-right {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    @media screen and (max-width: 768px) {
        .nav-links {
            gap: 25px;
        }
    }

    .nav-links a {
        padding: 12px 12px;
        border-bottom: none;
        border-radius: 12px;
        background: rgba(26, 163, 163, 0.06);
    }

    .nav-links a.active {
        background: rgba(26, 163, 163, 0.14);
    }

    .nav-language {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .lang-switch {
        flex: 0 0 auto;
    }

    .lang-label {
        font-size: 11px;
    }

    .btn-login {
        justify-content: center;
        width: 100%;
    }

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

    .hero-title {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.02;
    }

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

    .mv-card {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 20px;
    }

    .mv-ico {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    /* .mv-img responsive styles removed */

    .value-strip {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(11, 59, 59, 0.06);
    }

    .value-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .nav-left {
        gap: 6px;
    }

    .client-brand {
        width: 92px;
    }

    .nav-title-1,
    .nav-title-2 {
        font-size: 10px;
    }

    .logo-row .logo:nth-child(3) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        transition: none;
        transform: none;
    }

    .btn-primary,
    .btn-outline,
    .btn-login {
        transition: none;
    }
}
