:root {
    --brand-primary: #0b2f55;
    --brand-secondary: #0f5da9;
    --brand-accent: #2db6f5;
    --text-main: #10243a;
    --text-muted: #4d6074;
    --surface: #ffffff;
    --surface-soft: #f2f7fc;
    --border-soft: #d9e7f5;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(45, 182, 245, 0.2), transparent 38%),
        radial-gradient(circle at 90% 20%, rgba(15, 93, 169, 0.18), transparent 42%),
        linear-gradient(145deg, #f8fbff 0%, #edf4fb 100%);
    color: var(--text-main);
}

.site-shell {
    max-width: 1180px;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: min(220px, 55vw);
    max-height: 56px;
    height: auto;
    object-fit: contain;
    display: block;
}

.menu-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.menu-link:hover {
    color: var(--brand-secondary);
}

.hero {
    padding: 3rem 0 2rem;
}

.hero-panel {
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    box-shadow: 0 22px 44px rgba(10, 35, 63, 0.1);
    overflow: hidden;
}

.hero-content {
    padding: 2.2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    background: rgba(11, 47, 85, 0.1);
    color: var(--brand-primary);
    font-weight: 600;
    padding: 0.38rem 0.85rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.9rem, 2.7vw, 2.8rem);
    line-height: 1.16;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-highlight {
    background: linear-gradient(160deg, var(--brand-primary), var(--brand-secondary), var(--brand-accent));
    color: #fff;
    padding: 2.2rem;
    height: 100%;
}

.hero-highlight ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.72rem;
}

.hero-highlight li {
    display: flex;
    gap: 0.55rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    line-height: 1.28;
}

.hero-highlight li::before {
    content: "✓";
    font-weight: 700;
}

.metric-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.metric-card {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: var(--surface-soft);
    text-align: center;
    padding: 0.82rem 0.7rem;
}

.metric-card strong {
    display: block;
    color: var(--brand-primary);
    font-size: 1.05rem;
}

.metric-card span {
    font-size: 0.83rem;
    color: var(--text-muted);
}

.section {
    padding: 3.4rem 0;
}

.section-title {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.feature-card,
.service-card,
.testimonial-card {
    height: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 12px 24px rgba(16, 36, 58, 0.07);
    padding: 1.2rem;
}

.service-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 0.26rem 0.7rem;
    font-size: 0.76rem;
    background: rgba(15, 93, 169, 0.1);
    color: var(--brand-secondary);
    margin-bottom: 0.55rem;
    font-weight: 600;
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.process-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    border: 1px solid var(--border-soft);
    background: var(--surface);
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
}

.process-step {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex: 0 0 auto;
}

.contact-box {
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 1.3rem;
    background: linear-gradient(160deg, #ffffff, #f3f8ff);
    box-shadow: 0 12px 24px rgba(16, 36, 58, 0.08);
}

.site-footer {
    border-top: 1px solid var(--border-soft);
    background: #fff;
    padding: 1.3rem 0;
    color: #6a7a8a;
    font-size: 0.92rem;
}

.btn-site {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.7rem 1.18rem;
}

@media (max-width: 991px) {
    .hero-content,
    .hero-highlight {
        padding: 1.5rem;
    }

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