:root {
    --navy: #163a63;
    --orange: #f07a14;
    --dark: #1f2937;
    --gray: #6b7280;
    --light: #f5f7fa;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --radius: 18px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

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

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

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.95rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    flex-wrap: wrap;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), #24548b);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.logo-img {
    height: 150px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--navy);
}

.hero-slider {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    background: var(--navy);
}

.slides {
    position: relative;
    min-height: 88vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 24, 42, 0.82) 0%, rgba(10, 24, 42, 0.58) 45%, rgba(10, 24, 42, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.slide-box {
    max-width: 760px;
    padding: 4rem 0;
}

.slide-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
}

.slide-box h1 {
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.slide-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 60ch;
    margin-bottom: 1.6rem;
}

.slider-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    inset: auto 0 2rem 0;
    z-index: 3;
}

.slider-controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.slider-dots {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.65);
    background: transparent;
    cursor: pointer;
    transition: 0.25s ease;
}

.dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.slider-arrows {
    display: flex;
    gap: 0.7rem;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255,255,255,0.14);
    color: var(--white);
    font-size: 1.4rem;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.22);
}

.hero {
    padding: 5rem 0 4rem;
    background:
            radial-gradient(circle at top right, rgba(240,122,20,0.12), transparent 30%),
            linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(1.7rem, 3.4vw, 3rem);
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1.2rem;
}

.hero-text h1 .hero-headline,
.hero-text h1 .hero-subline {
    display: block;
}

.hero-text h1 .hero-subline {
    margin-top: 0.4rem;
}

@media (min-width: 720px) {
    .hero-text h1 .hero-subline {
        white-space: nowrap;
    }
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 60ch;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.badge {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    color: var(--dark);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    background: rgba(240,122,20,0.1);
    border-radius: 50%;
}

.mini-label {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(22,58,99,0.08);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    color: var(--navy);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.hero-list {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark);
}

.hero-list li::before {
    content: "→";
    color: var(--orange);
    font-weight: 800;
    font-size: 1.1rem;
}

section {
    padding: 4.5rem 0;
}

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

.section-head span {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-head h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--navy);
    margin-top: 0.6rem;
    margin-bottom: 0.9rem;
}

.section-head p {
    color: var(--gray);
    font-size: 1.05rem;
}

.services {
    background: var(--light);
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(240,122,20,0.12);
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--navy);
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}

.card p {
    color: var(--gray);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

.panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.panel h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.panel ul {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.panel li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--gray);
}

.panel li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-weight: 800;
}

.steps {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), #24548b);
    color: var(--white);
    border-radius: 28px;
    padding: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.cta-box h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: rgba(255,255,255,0.85);
    max-width: 55ch;
}

.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.8rem;
}

.contact-card,
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-card h3,
.form-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.contact-point {
    padding: 1rem;
    border-radius: 16px;
    background: var(--light);
    border: 1px solid var(--border);
}

.contact-point strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

form {
    display: grid;
    gap: 1rem;
}

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

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--dark);
    background: var(--white);
}

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

footer {
    background: #0f2742;
    color: rgba(255,255,255,0.85);
    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-brand {
    color: var(--white);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    transition: color 0.2s ease;
}

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

@media (max-width: 980px) {
    .hero-grid,
    .card-grid,
    .split,
    .steps-grid,
    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .cta-box {
        align-items: flex-start;
    }

    .hero-slider,
    .slides,
    .slide-content {
        min-height: 76vh;
    }

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