*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --ink: #111827;
    --ink-2: #1f2937;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --white: #ffffff;
    --navy: #422006;
    --navy-2: #92400e;
    --amber: #f59e0b;
    --amber-dark: #b45309;
    --teal: #22c55e;
    --red: #ef4444;
    --shadow: 0 18px 52px rgba(24, 35, 63, 0.15);
    --shadow-soft: 0 10px 30px rgba(24, 35, 63, 0.08);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --display: "Plus Jakarta Sans", "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
    font-size: 13px;
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.header-nav a:hover {
    color: var(--ink);
    background: var(--soft);
}

.header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.24);
}

.hero {
    position: relative;
    padding: 86px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(249, 115, 22, 0.18), transparent 35%),
        radial-gradient(circle at 88% 20%, rgba(15, 118, 110, 0.18), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 54px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--amber-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.16);
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 790px;
    margin-bottom: 22px;
    font-size: clamp(38px, 5.3vw, 66px);
    font-weight: 800;
}

.lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions,
.cta-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--navy-2));
    box-shadow: 0 16px 32px rgba(15, 118, 110, 0.28);
}

.btn-secondary {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.btn-light {
    color: var(--ink);
    background: var(--white);
}

.trust-panel {
    max-width: 610px;
    margin-top: 34px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.trust-panel-head {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.trust-panel-head i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), #0f766e);
    border-radius: 14px;
}

.trust-panel-head strong,
.trust-row strong {
    display: block;
    font-family: var(--display);
    font-size: 18px;
    line-height: 1;
}

.trust-panel-head span,
.trust-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.trust-row div {
    padding: 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.hero-card {
    position: relative;
}

.image-wrap {
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.image-wrap img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.service-card {
    width: min(430px, 92%);
    margin: -95px auto 0;
    position: relative;
    padding: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.service-logo {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 18px;
    font-size: 24px;
}

.mini-label {
    margin-bottom: 4px;
    color: var(--amber-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h2 {
    margin-bottom: 18px;
    font-size: 27px;
}

.service-card ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-2);
    font-weight: 700;
}

.service-card li i {
    color: var(--teal);
}

.quick-bar {
    padding: 22px 0;
    color: var(--white);
    background: var(--navy);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-weight: 800;
}

.quick-grid i {
    color: var(--amber);
}

.section {
    padding: 92px 0;
}

.section-head {
    max-width: 740px;
    margin: 0 auto 44px;
    text-align: center;
}

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

.section-head h2,
.split h2,
.cta h2 {
    margin-bottom: 14px;
    font-size: clamp(30px, 4vw, 48px);
}

.section-head p:not(.section-kicker),
.split p,
.cta p {
    color: var(--muted);
    font-size: 17px;
}

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

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

.card > i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber), var(--amber-dark));
    border-radius: 17px;
    font-size: 22px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

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

.section-dark {
    color: var(--white);
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.25), transparent 32%),
        radial-gradient(circle at 90% 70%, rgba(20, 184, 166, 0.22), transparent 30%),
        var(--navy);
}

.section-dark p,
.section-dark .section-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.split,
.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.split p {
    margin-bottom: 26px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-list span {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-weight: 800;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list div {
    padding: 22px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.feature-list strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--display);
    font-size: 19px;
}

.feature-list span {
    color: var(--muted);
}

.faq-section {
    background: var(--soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faq-grid article {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.faq-grid h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-grid p {
    color: var(--muted);
}

.cta {
    padding: 70px 0;
    background: var(--white);
}

.cta-box {
    justify-content: space-between;
    padding: 42px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.footer {
    padding: 34px 0;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--white);
    font-weight: 800;
}

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero {
        padding-top: 64px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding: 12px 14px;
    }

    .header-nav {
        display: none;
    }

    .header-call {
        padding: 0 13px;
    }

    h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 16px;
    }

    .hero-actions,
    .cta-box {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .trust-row,
    .cards,
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .image-wrap img {
        height: 320px;
    }

    .service-card {
        width: calc(100% - 24px);
    }

    .section {
        padding: 68px 0;
    }

    .cta-box {
        padding: 28px;
    }

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