:root {
    --navy: #f5f7fb;
    --navy-soft: #d8e0ec;
    --orange: #ef7d32;
    --orange-dark: #d96517;
    --orange-glow: rgba(239, 125, 50, 0.3);
    --green: #7cc29b;
    --text: #f5f7fb;
    --muted: #a3aebe;
    --surface: #11151d;
    --surface-alt: #020305;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(239, 125, 50, 0.08), transparent 20%),
        radial-gradient(circle at top right, rgba(124, 194, 155, 0.06), transparent 18%),
        linear-gradient(180deg, #05070b, #020305 65%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2.35rem;
}

.section-heading h2 {
    max-width: 14ch;
}

.section-heading p {
    max-width: 62ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(124, 194, 155, 0.12);
    color: #dff2e8;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--green);
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.lead {
    font-size: 1.12rem;
    max-width: 62ch;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(2, 3, 5, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.brand img {
    width: 52px;
    height: 52px;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-mark span:last-child {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

.brand-mark span:first-child {
    font-size: 1.02rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-logo {
    width: min(100%, 470px);
    margin: 0 0 1.25rem;
    filter: drop-shadow(0 12px 34px rgba(239, 125, 50, 0.14));
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    width: min(100%, 340px);
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 600;
    color: #d7deea;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0.5rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 14px 30px rgba(239, 125, 50, 0.34);
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    border-color: rgba(239, 125, 50, 0.45);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.btn-dark {
    color: #05070b;
    background: #fff;
}

.hero {
    padding: 3.5rem 0 4.5rem;
    background:
        radial-gradient(circle at top right, rgba(124, 194, 155, 0.1), transparent 28%),
        radial-gradient(circle at top left, rgba(239, 125, 50, 0.24), transparent 24%),
        linear-gradient(180deg, #090b0f, #030406 78%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy .hero-tagline {
    margin: 1rem 0 1.25rem;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-brand-panel {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0 0 1.15rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(239, 125, 50, 0.34);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 125, 50, 0.14), rgba(12, 35, 64, 0.2));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand-kicker {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-brand-panel p {
    margin: 0;
    color: #d8e0ec;
    font-weight: 600;
}

.hero-actions,
.cta-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.75rem 0 1.5rem;
}

.trust-list,
.meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-list li,
.meta-list li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #e8edf5;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.hero-card {
    background: linear-gradient(180deg, rgba(12, 15, 22, 0.98), rgba(8, 18, 32, 0.98));
    color: #fff;
    padding: 1.7rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-card h3,
.hero-card p,
.hero-card strong {
    color: #fff;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.3rem;
}

.visual-pane {
    min-height: 200px;
    padding: 1.1rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.16);
}

.visual-pane .label {
    align-self: flex-start;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.visual-house {
    margin-top: auto;
    height: 105px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.1)),
        linear-gradient(135deg, rgba(124,194,155,0.4), rgba(239,125,50,0.3));
    position: relative;
    overflow: hidden;
}

.visual-house::before,
.visual-house::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.85);
}

.visual-house::before {
    width: 70px;
    height: 42px;
    left: 22px;
    bottom: 18px;
    border-radius: 6px;
}

.visual-house::after {
    width: 0;
    height: 0;
    left: 15px;
    bottom: 55px;
    border-left: 43px solid transparent;
    border-right: 43px solid transparent;
    border-bottom: 34px solid rgba(255,255,255,0.92);
    background: transparent;
}

.grid-3,
.grid-2,
.service-grid,
.values-grid,
.faq-grid,
.contact-grid,
.metrics-grid {
    display: grid;
    gap: 1.25rem;
}

.grid-3,
.service-grid,
.values-grid,
.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.info-card,
.service-card,
.value-card,
.faq-card,
.contact-card,
.metric-card {
    background: linear-gradient(180deg, rgba(17, 21, 29, 0.98), rgba(9, 12, 18, 0.98));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.45rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card h3,
.info-card h3,
.service-card h3,
.value-card h3,
.faq-card h3,
.contact-card h3,
.metric-card h3,
.card strong,
.service-card strong,
.value-card strong,
.faq-card strong,
.contact-card strong {
    color: #fff;
}

.icon-badge {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 125, 50, 0.12);
    color: var(--orange);
    margin-bottom: 1rem;
}

.icon-badge svg {
    width: 1.5rem;
    height: 1.5rem;
}

.split-panel {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1.5rem;
    align-items: stretch;
}

.story-panel {
    background: linear-gradient(180deg, #0b1017, #12263f);
    color: #fff;
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.story-panel h2,
.story-panel h3,
.story-panel p,
.story-panel li {
    color: #fff;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.story-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.story-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

.highlight-panel {
    background: linear-gradient(180deg, rgba(16, 20, 29, 0.98), rgba(10, 13, 19, 0.98));
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.cta-band {
    background: linear-gradient(135deg, #090b10, #111b2a 70%, #2b1609 100%);
    color: #fff;
    border-radius: 34px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(239, 125, 50, 0.08) inset;
}

.cta-band h2,
.cta-band p,
.footer p,
.footer a,
.footer span {
    color: #fff;
}

.footer {
    margin-top: 2rem;
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #090b10, #040507);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    opacity: 0.86;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--orange);
}

.page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #090b10, #05070b);
}

.page-card {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(140deg, rgba(8, 11, 16, 0.98), rgba(13, 29, 48, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.page-card h1,
.page-card p,
.page-card li {
    color: #fff;
}

.page-card h1,
.hero-copy h1 {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.service-card ul,
.check-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.process-list {
    counter-reset: process;
    display: grid;
    gap: 1rem;
}

.process-step {
    position: relative;
    padding: 1.2rem 1.2rem 1.2rem 4.2rem;
    background: linear-gradient(180deg, rgba(17, 21, 29, 0.98), rgba(12, 15, 22, 0.98));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.process-step::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    left: 1.2rem;
    top: 1.1rem;
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
}

blockquote {
    margin: 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--orange);
    border-radius: 18px;
    color: var(--navy-soft);
    box-shadow: var(--shadow);
}

.contact-card strong,
.contact-card a {
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field label {
    font-weight: 700;
    color: #fff;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(239, 125, 50, 0.45);
    box-shadow: 0 0 0 4px rgba(239, 125, 50, 0.12);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field.full {
    grid-column: 1 / -1;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.form-status {
    min-height: 1.5rem;
    margin: 1rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #dff2e8;
}

.form-status.is-error {
    color: #ffb4b4;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.badge-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: #e7edf6;
    font-weight: 700;
}

.card,
.service-card,
.value-card,
.faq-card,
.contact-card,
.metric-card,
.process-step {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.service-card:hover,
.value-card:hover,
.faq-card:hover,
.contact-card:hover,
.metric-card:hover,
.process-step:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 125, 50, 0.2);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-panel,
    .footer-grid,
    .grid-2,
    .contact-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .service-grid,
    .values-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .topbar.nav-open .nav {
        align-items: flex-start;
    }

    .topbar.nav-open .nav-inner {
        width: 100%;
        display: grid;
        gap: 1rem;
    }

    .topbar.nav-open .nav-links,
    .topbar.nav-open .nav-cta {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 4.5rem 0;
    }

    .grid-3,
    .service-grid,
    .values-grid,
    .metrics-grid,
    .visual-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .page-card,
    .hero-card,
    .story-panel,
    .highlight-panel,
    .cta-band {
        padding: 1.5rem;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .hero-logo,
    .footer-logo {
        width: 100%;
    }
}
