:root {
    --navy: #0b1f33;
    --navy-2: #102945;
    --teal: #14b8a6;
    --teal-2: #0f9488;
    --white: #ffffff;
    --bg: #f7fbfc;
    --bg-2: #eef7f8;
    --text: #17324d;
    --muted: #5f7286;
    --border: #d9e5ec;
    --shadow: 0 18px 40px rgba(11, 31, 51, 0.08);
    --shadow-soft: 0 12px 24px rgba(11, 31, 51, 0.06);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand,
.btn {
    font-family: "Inter", sans-serif;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    padding: 0.75rem 0;
}

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

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 229, 236, 0.8);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-2));
    color: white;
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.25);
}

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

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

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

.eyebrow {
    color: var(--teal-2);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 1.05;
    margin: 0 0 1rem;
    color: var(--navy);
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 58ch;
    margin-bottom: 1.5rem;
}

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

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

.hero-card .stat {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.hero-card .stat:last-child {
    border-bottom: 0;
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(20, 184, 166, 0.12);
    display: grid;
    place-items: center;
    color: var(--teal-2);
    font-size: 1.15rem;
    flex: 0 0 auto;
}

section {
    padding: 4.5rem 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

.section-head h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    margin: 0 0 0.6rem;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.services-grid,
.value-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.value-card,
.form-card,
.faq-card,
.map-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-card {
    padding: 1.4rem;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 20px 40px rgba(11, 31, 51, 0.1);
}

.service-card h3,
.value-card h3 {
    margin: 0.9rem 0 0.45rem;
    color: var(--navy);
    font-size: 1.08rem;
}

.service-card p,
.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.97rem;
}

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

.value-card {
    padding: 1.5rem;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}

details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}

details+details {
    margin-top: 0.9rem;
}

summary {
    cursor: pointer;
    list-style: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: var(--navy);
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    color: var(--muted);
    margin: 0.8rem 0 0;
}

.faq-card,
.form-card,
.map-card {
    padding: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(20, 184, 166, 0.8);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

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

.meta-list {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0 1.25rem;
    color: var(--muted);
}

.map-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-2);
}

.map-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    padding: 2rem 0 3rem;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 980px) {

    .hero-grid,
    .faq-layout,
    .contact-grid,
    .services-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
}

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

    .field-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.5rem;
    }
}