:root {
    --white: #ffffff;
    --ink: #17111f;
    --muted: #655b70;
    --dark-purple: #251037;
    --medium-purple: #6f42c1;
    --light-purple: #f5f0ff;
    --gold: #c99a2e;
    --gold-soft: #fff7df;
    --line: #e9e2ef;
    --shadow: 0 24px 70px rgba(37, 16, 55, 0.12);
    --radius: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

a:hover {
    color: var(--medium-purple);
}

img,
svg {
    max-width: 100%;
}

h1,
h2,
h3 {
    color: var(--dark-purple);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.9rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 18px;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

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

.narrow {
    max-width: 930px;
}

.skip-link {
    position: absolute;
    left: 20px;
    top: -100px;
    z-index: 20;
    padding: 12px 16px;
    background: var(--gold);
    color: var(--dark-purple);
    border-radius: 999px;
    font-weight: 800;
}

.skip-link:focus {
    top: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(233, 226, 239, 0.8);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
    color: var(--gold);
    font-weight: 900;
    letter-spacing: -0.08em;
    box-shadow: 0 14px 30px rgba(111, 66, 193, 0.24);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.05rem;
    color: var(--dark-purple);
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.primary-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: var(--light-purple);
    color: var(--dark-purple);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--dark-purple);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(37, 16, 55, 0.06);
}

.language-toggle:hover {
    border-color: var(--medium-purple);
}

.language-target {
    color: var(--gold);
}

.language-divider {
    color: var(--muted);
}

.nav-cta,
.button-primary {
    background: linear-gradient(135deg, var(--gold), #f0cc70);
    color: var(--dark-purple);
    box-shadow: 0 16px 36px rgba(201, 154, 46, 0.24);
}

.button-secondary {
    background: var(--white);
    color: var(--dark-purple);
    border: 1px solid var(--line);
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
    color: var(--dark-purple);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--dark-purple);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
}

.nav-toggle span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--medium-purple);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at 80% 15%, rgba(201, 154, 46, 0.22), transparent 28%),
        radial-gradient(circle at 8% 15%, rgba(111, 66, 193, 0.14), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 120px) 0;
    background:
        radial-gradient(circle at 86% 10%, rgba(201, 154, 46, 0.48), transparent 28%),
        radial-gradient(circle at 18% 18%, rgba(111, 66, 193, 0.78), transparent 34%),
        linear-gradient(135deg, rgba(37, 16, 55, 0.98), rgba(67, 26, 102, 0.96) 52%, rgba(111, 66, 193, 0.9));
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.home-hero-copy h1,
.home-hero-copy .hero-lede,
.home-panel-copy h2 {
    color: var(--white);
}

.home-hero-copy .hero-lede {
    color: rgba(255, 255, 255, 0.82);
}

.home-hero .eyebrow {
    color: #f4ce71;
}

.hero-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.hero-outline:hover {
    background: var(--white);
}

.proof-strip-dark span {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
}

.home-hero-panel {
    display: grid;
    gap: 22px;
}

.home-panel-copy,
.hero-form-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.home-panel-copy {
    padding: clamp(26px, 4vw, 38px);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
}

.home-panel-copy .check-list li {
    color: rgba(255, 255, 255, 0.78);
}

.hero-form-card {
    padding: clamp(24px, 4vw, 36px);
    background: rgba(255, 255, 255, 0.96);
}

.hero-form-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.hero-form-card .lead-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
    align-items: center;
}

.hero-lede,
.page-hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 32px 0;
}

.eyebrow {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.proof-strip span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-purple);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-card,
.profile-card,
.lead-form,
.cta-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: clamp(28px, 4vw, 42px);
}

.card-label,
.number-pill {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--dark-purple);
    font-weight: 900;
    font-size: 0.82rem;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: inset 0 0 0 3px var(--gold-soft);
}

.section,
.page-hero {
    padding: clamp(70px, 9vw, 120px) 0;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(37, 16, 55, 0.94), rgba(111, 66, 193, 0.88)),
        radial-gradient(circle at 80% 0%, rgba(201, 154, 46, 0.55), transparent 34%);
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero .eyebrow {
    color: #f4ce71;
}

.surface {
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.split,
.two-column,
.contact-panel,
.roi-grid,
.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 6vw, 72px);
    align-items: start;
}

.rich-text {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading {
    max-width: 860px;
    margin-bottom: 34px;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

.service-card,
.industry-card,
.process-grid > div,
.credential-grid > div,
.faq-grid details {
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(37, 16, 55, 0.07);
}

.service-card span {
    display: inline-flex;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 18px;
}

.service-card p,
.industry-card p,
.process-grid p,
.credential-grid p,
.faq-grid p {
    color: var(--muted);
}

.roi-band {
    background: var(--dark-purple);
    color: rgba(255, 255, 255, 0.82);
}

.roi-band h2 {
    color: var(--white);
}

.roi-band .eyebrow {
    color: #f4ce71;
}

.roi-points {
    display: grid;
    gap: 18px;
}

.roi-points div {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.roi-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.05rem;
}

.contact-panel {
    align-items: stretch;
}

.contact-facts {
    display: grid;
    gap: 8px;
    margin: 24px 0;
}

.contact-facts p {
    margin: 0;
}

.contact-facts.large {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--light-purple);
}

.lead-form {
    padding: clamp(24px, 4vw, 38px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--dark-purple);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--medium-purple);
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.12);
}

textarea {
    resize: vertical;
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
}

.form-message.success {
    background: #ecfff3;
    color: #145c2e;
    border: 1px solid #aee8c3;
}

.form-message.error {
    background: #fff1f1;
    color: #7c1e1e;
    border: 1px solid #f0bbbb;
}

.form-message ul {
    margin-top: 8px;
}

.service-stack {
    display: grid;
    gap: 28px;
}

.feature-row {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 48px rgba(37, 16, 55, 0.08);
}

.number-pill {
    background: var(--dark-purple);
    color: var(--gold);
}

.process-grid,
.credential-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

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

.process-grid strong,
.credential-grid strong {
    display: block;
    color: var(--dark-purple);
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.faq-grid summary {
    color: var(--dark-purple);
    cursor: pointer;
    font-weight: 900;
}

.faq-grid p {
    margin: 14px 0 0;
}

.cta-section {
    padding-top: 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(28px, 5vw, 48px);
    background:
        radial-gradient(circle at 90% 20%, rgba(201, 154, 46, 0.2), transparent 30%),
        var(--white);
}

.profile-card {
    padding: clamp(28px, 4vw, 42px);
}

.profile-initials {
    display: inline-grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-bottom: 22px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--dark-purple), var(--medium-purple));
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.site-footer {
    background: #13091f;
    color: rgba(255, 255, 255, 0.76);
    padding: 64px 0 24px;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-brand strong,
.site-footer h2 {
    color: var(--white);
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer ul {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: fixed;
        inset: 86px 20px auto 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-open .primary-nav {
        display: flex;
    }

    .primary-nav a {
        padding: 14px 16px;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid,
    .home-hero-grid,
    .split,
    .two-column,
    .contact-panel,
    .roi-grid,
    .feature-row {
        grid-template-columns: 1fr;
    }

    .card-grid.three,
    .process-grid,
    .credential-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-shell {
        min-height: 76px;
    }

    .brand small {
        display: none;
    }

    .primary-nav {
        top: 76px;
    }

    .hero,
    .home-hero {
        padding-top: 58px;
    }

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

    .button,
    .nav-cta {
        width: 100%;
    }

    .card-grid.three,
    .process-grid,
    .credential-grid,
    .faq-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .industry-card,
    .process-grid > div,
    .credential-grid > div,
    .faq-grid details {
        padding: 22px;
    }
}
