@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --navy: #0a1f44;
    --blue: #0c4da2;
    --sky: #4aa3ff;
    --ice: #eaf4ff;
    --white: #ffffff;
    --ink: #0b1424;
    --muted: #5b6b86;
    --line: #d6e3f5;
    --shadow: 0 24px 60px rgba(10, 31, 68, 0.15);
}

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

body {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 45%, #f3f8ff 100%);
}

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

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.95rem;
}

.nav a {
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav a:hover {
    border-color: var(--sky);
}

.nav .button {
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    border: 1px solid transparent;
}

.nav .button:hover {
    background: var(--navy);
}

.hero {
    padding: 84px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 18px;
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-primary,
.button-outline {
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
}

.button-outline {
    border: 1px solid var(--blue);
    color: var(--blue);
    background: var(--white);
}

.panel {
    padding: 64px 0;
}

.panel-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.panel-subtitle {
    color: var(--muted);
    margin-bottom: 28px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 14px 30px rgba(10, 31, 68, 0.08);
}

.card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.stat {
    padding: 18px;
    background: var(--ice);
    border-radius: 16px;
    border: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.section-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ice);
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

label {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    margin-top: 18px;
}

.site-footer {
    margin-top: auto;
    padding: 48px 0 24px;
    background: var(--navy);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

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

@media (max-width: 860px) {
    .nav {
        justify-content: flex-start;
    }
    .site-header {
        position: relative;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    margin-bottom: 8px;
}

.slider-track {
    position: relative;
    min-height: 72vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(4%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: grid;
    align-items: center;
}

.slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.is-exiting {
    opacity: 0;
    transform: translateX(-4%);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    filter: saturate(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 31, 68, 0.78) 0%, rgba(10, 31, 68, 0.4) 55%, rgba(10, 31, 68, 0.2) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    color: var(--white);
}

.slide-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    max-width: 560px;
}

.slide-content p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.slide-content .badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.slide-content .button-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
}

.slide-content .button-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 860px) {
    .slide img {
        height: 70vh;
    }
    .slide-content {
        padding: 0 4vw;
    }
    .slider-controls {
        bottom: 16px;
    }
}
.slide.is-active .slide-content {
    animation: slideIn 0.9s ease both;
}

.slide.is-exiting .slide-content {
    animation: slideOut 0.6s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}
.hero-slider .slide-content.container {
    width: min(50vw, 560px);
    margin-left: clamp(16px, 4vw, 48px);
    margin-right: auto;
}

@media (max-width: 860px) {
    .hero-slider .slide-content.container {
        width: min(90vw, 560px);
        margin-left: auto;
        margin-right: auto;
    }
}
.hero-slider .slide-content h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.hero-slider .slide-content p {
    font-size: 0.98rem;
}

.hero-slider .slide-content .badge {
    font-size: 0.78rem;
}

.hero-slider .hero-actions a {
    font-size: 0.9rem;
}
.hero-slider {
    width: 75%;
    margin: 0 auto 8px;
    border-radius: 28px;
}

.hero-slider .slide img {
    border-radius: 28px;
}

@media (max-width: 860px) {
    .hero-slider {
        width: 100%;
        border-radius: 0;
    }
    .hero-slider .slide img {
        border-radius: 0;
    }
}
.hero-slider {
    width: 85%;
}
.hero-slider,
.slider-track,
.hero-slider .slide img {
    min-height: 75vh;
    height: 75vh;
}
.hero-slider,
.slider-track,
.hero-slider .slide img {
    min-height: 56.25vh;
    height: 56.25vh;
}
