﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef4f7 100%);
    color: var(--color-ink);
}

a {
    text-decoration: none;
}

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

.page-main {
    padding-top: 104px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(248, 250, 252, 0.68);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border-color: rgba(148, 163, 184, 0.32);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    color: var(--color-ink);
}

.brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 16px 30px rgba(15, 118, 110, 0.24);
}

.brand-mark strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
}

.brand-mark small {
    display: block;
    color: var(--color-muted);
    font-size: 0.84rem;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-link {
    position: relative;
    color: var(--color-muted);
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(15, 118, 110, 0.09);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-primary);
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-inner {
    display: grid;
    gap: 0.8rem;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-shell-home {
    min-height: 760px;
}

.hero-shell-inner {
    min-height: 480px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: 6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: end;
}

.hero-copy,
.hero-panel {
    color: var(--color-white);
}

.hero-copy-single {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--color-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

.hero-title {
    margin: 1.25rem 0 1rem;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-title-inner {
    max-width: 700px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.85;
}

.hero-text-inner {
    max-width: 620px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.hero-stat {
    padding: 1.2rem 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.hero-panel {
    padding: 1.5rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(16px);
}

.hero-panel img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 1.25rem;
}

.hero-panel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-panel h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.section-shell {
    padding: 6rem 0;
}

.section-muted {
    background: rgba(255, 255, 255, 0.6);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-head-left {
    margin: 0 0 2.5rem;
    text-align: left;
}

.section-title {
    margin: 1rem 0 1rem;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

.section-copy {
    color: var(--color-muted);
    font-size: 1.04rem;
    line-height: 1.85;
}

.grid-shell {
    display: grid;
    gap: 1.5rem;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel-card,
.feature-card,
.team-card,
.legal-card,
.contact-card,
.faq-item,
.timeline-card,
.highlight-card,
.metric-card,
.form-shell {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
}

.panel-card,
.feature-card,
.legal-card,
.contact-card,
.timeline-card,
.highlight-card,
.metric-card,
.form-shell,
.faq-item {
    padding: 1.7rem;
}

.metric-card {
    text-align: center;
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.metric-card span {
    color: var(--color-muted);
}

.icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.16), rgba(245, 158, 11, 0.18));
    color: var(--color-secondary);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.feature-card h3,
.legal-card h3,
.contact-card h3,
.timeline-card h3,
.highlight-card h3,
.form-shell h3,
.panel-card h3,
.team-card h3 {
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.feature-card p,
.legal-card p,
.contact-card p,
.timeline-card p,
.highlight-card p,
.panel-card p,
.team-card p,
.form-shell p,
.list-copy,
.faq-answer {
    color: var(--color-muted);
    line-height: 1.8;
}

.feature-list,
.inline-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.feature-list span,
.inline-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-ink);
    font-weight: 500;
}

.feature-list i,
.inline-list i,
.footer-contact i {
    color: var(--color-secondary);
}

.media-card {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.media-card img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.stack-lg {
    display: grid;
    gap: 1.5rem;
}

.timeline-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(15, 118, 110, 0.12);
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    color: var(--color-primary);
    font-size: 1.08rem;
    font-weight: 700;
}

.faq-item button i {
    color: var(--color-secondary);
    transition: transform 0.2s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
    max-height: 420px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: var(--color-white);
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.2);
}

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

.btn-secondary {
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.74);
}

.btn-secondary-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-primary-light {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-ghost {
    color: var(--color-secondary);
    background: rgba(15, 118, 110, 0.08);
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--color-primary), #103252 70%, var(--color-secondary));
    color: var(--color-white);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
}

.cta-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
}

.cta-text {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.team-card {
    overflow: hidden;
    padding: 0;
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-copy {
    padding: 1.5rem;
}

.team-role {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.contact-card a,
.footer-links a,
.footer-contact a {
    color: var(--color-ink);
}

.form-shell label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--color-primary);
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
    width: 100%;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(248, 250, 252, 0.95);
    color: var(--color-ink);
    padding: 0.95rem 1rem;
    outline: none;
}

.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
    border-color: rgba(15, 118, 110, 0.5);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.checkbox-row input {
    width: auto;
    margin-top: 0.25rem;
}

.info-banner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--color-primary);
}

.legal-note {
    padding: 1.25rem 1.3rem;
    border-radius: 22px;
    border-left: 4px solid var(--color-accent);
    background: rgba(245, 158, 11, 0.1);
}

.site-footer {
    padding: 5rem 0 2rem;
    margin-top: 2rem;
    background: linear-gradient(180deg, #07111f 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.82);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, 0.75fr));
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.brand-mark-footer,
.brand-mark-footer small,
.brand-mark-footer strong {
    color: var(--color-white);
}

.footer-copy {
    margin-top: 1.25rem;
    max-width: 360px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.68);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.85rem;
}

.footer-links a,
.footer-links span,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.68);
}

.footer-contact a,
.footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
}

.map-frame {
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1100px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero-grid,
    .split-layout,
    .cta-band,
    .footer-top {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .page-main {
        padding-top: 92px;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 4.5rem;
    }

    .hero-shell-home {
        min-height: auto;
    }

    .hero-stats,
    .grid-2,
    .grid-3,
    .grid-4,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding: 4.5rem 0;
    }

    .cta-actions,
    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
        width: 100%;
    }

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