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

:root {
    --green: #c8ff00;
    --green-soft: #efff8a;
    --green-dark: #8cd13a;
    --navy: #0d1b2a;
    --navy-light: #13273d;
    --text: #f4f4f4;
    --muted: #c7d2df;
    --card: #1c314d;
    --card-2: #172b43;
    --white: #ffffff;
    --border: rgba(255,255,255,0.10);
    --shadow: 0 18px 45px rgba(0,0,0,0.25);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg,#0d1b2a 0%, #10253c 100%);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9,18,29,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.nav a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
}

.nav .nav-cta {
    background: linear-gradient(135deg,var(--green),var(--green-soft));
    color: #111;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: var(--green);
    color: #111;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 24px;
    cursor: pointer;
}

.section {
    padding: 84px 0;
}

.hero {
    padding-top: 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
}

.badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg,var(--green),var(--green-soft));
    color: #111;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.07em;
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg,var(--green),var(--green-soft));
    color: #111;
    border-radius: 14px;
    padding: 0 12px;
    display: inline-block;
}

.lead {
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.hero-content p {
    max-width: 710px;
    color: var(--muted);
    font-size: 16px;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    border-radius: 16px;
    padding: 15px 26px;
    font-weight: 900;
    font-size: 15px;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg,var(--green),var(--green-soft));
    color: #111;
    box-shadow: 0 10px 30px rgba(200,255,0,0.28);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1px solid rgba(255,255,255,0.10);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

.hero-image-card,
.text-box,
.info-card,
.stat-card,
.video-box,
.appointment-form,
.location-info,
.modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-image-card {
    padding: 16px;
}

.hero-image-card img,
.info-card img {
    border-radius: 16px;
}

.light-section,
.location-section {
    background: rgba(255,255,255,0.03);
}

.two-col {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: white;
}

.text-box {
    padding: 30px;
}

.text-box p + p {
    margin-top: 15px;
}

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

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    padding: 18px;
}

.info-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: white;
}

.info-card p,
.text-box p,
.stat-card span,
.video-note,
.form-info p,
.location-subtitle {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    padding: 34px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: clamp(32px, 4vw, 48px);
    color: white;
}

.video-box {
    padding: 20px;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.video-box video {
    width: 100%;
    border-radius: 16px;
    background: #000;
}

.video-note {
    margin-top: 10px;
    font-size: 13px;
}

.form-section {
    background: #0b1724;
}

.form-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.form-info h2 {
    margin-bottom: 16px;
}

.form-info p {
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.check-list li {
    color: var(--muted);
}

.check-list li::before {
    content: "✓";
    color: var(--green);
    margin-right: 8px;
    font-weight: 900;
}

.appointment-form {
    color: white;
    padding: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    color: white;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 14px 15px;
    font-size: 15px;
    outline: none;
    background: rgba(255,255,255,0.06);
    color: white;
}

.form-group select option {
    background: #10253c;
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(200,255,0,0.15);
}

.full-btn {
    width: 100%;
    margin-top: 8px;
}

.form-result {
    margin-top: 18px;
    font-weight: 800;
    text-align: center;
}

.form-result.error {
    color: #ff8b8b;
}

.form-result.success {
    color: #a7ff77;
}

.location-box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.location-info {
    padding: 35px;
}

.location-info h3 {
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
}

.location-info p {
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.map-area {
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 380px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #0b1724;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.footer {
    background: #08111c;
    color: white;
    padding: 34px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

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

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

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

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.62);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-backdrop.show {
    display: flex;
}

.modal {
    width: min(520px, 100%);
    color: white;
    padding: 28px;
}

.modal h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: white;
}

.modal p {
    white-space: pre-line;
    color: var(--muted);
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .form-layout,
    .card-grid,
    .stats-grid,
    .location-box {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 76px;
        flex-direction: column;
        align-items: stretch;
        background: #0f2135;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-area {
        min-height: 300px;
    }
}

@media (max-width: 620px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 70px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}
