@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-400.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Inter-500.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Inter-600.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter-700.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/Inter-800.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/Inter-900.ttf") format("truetype");
}

:root {
    --font-primary: "Inter", sans-serif;
    --brand-purple: rgb(14, 19, 141);
    --brand-teal: #f2c222;
    --brand-dark: rgb(14, 19, 141);
    --text: #0f172a;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: #e2e8f0;
    --white: #ffffff;
    --yellow: #facc15;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-primary);
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-primary);
    line-height: 1.5;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

button {
    border: 0;
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}

.icon-small {
    width: 16px;
    height: 16px;
}

.card-icon {
    width: 34px;
    height: 34px;
}

.section {
    padding: 96px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-header.compact {
    margin-bottom: 48px;
}

.section-header h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0;
}

.section-header p {
    margin: 0 auto;
    color: var(--muted);
    max-width: 680px;
}

.eyebrow {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.underline-accent {
    border-bottom: 4px solid var(--brand-purple);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.button-row.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand-teal);
    color: var(--brand-dark);
    box-shadow: 0 18px 35px rgba(25, 211, 180, 0.22);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    border: 1px solid #cbd5e1;
    color: var(--brand-dark);
}

.btn-light {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--brand-dark);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.btn-dark {
    background: var(--brand-dark);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    min-height: 58px;
    border-radius: 14px;
    background: var(--brand-purple);
    color: var(--white);
    font-size: 18px;
}

.btn-submit:disabled {
    cursor: wait;
    opacity: 0.82;
}

.text-link {
    display: inline-flex;
    color: var(--brand-purple);
    border-bottom: 2px solid rgba(59, 43, 133, 0.22);
    font-size: 14px;
    font-weight: 800;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.text-link:hover {
    border-color: var(--brand-purple);
}

.text-link.boxed {
    padding: 8px 14px;
    border-radius: 6px;
}

.text-link.boxed:hover {
    background: var(--brand-purple);
    color: var(--white);
}

.section-action {
    margin-top: 56px;
    text-align: center;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(14, 19, 141, 0.92);
    backdrop-filter: blur(12px);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 178px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

.nav-links a,
.site-footer a {
    transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
    color: var(--brand-teal);
}

.call-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand-teal);
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(25, 211, 180, 0.18);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #090d64 100%);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 132px 0 80px;
    color: var(--white);
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    color: var(--white);
    opacity: 0.18;
    pointer-events: none;
}

.hero-shape svg {
    width: 100%;
    height: 100%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    gap: 64px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0 0 24px;
    font-size: 66px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--brand-teal);
    display: block;
}

.hero-copy p {
    max-width: 560px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.thank-you-hero {
    position: relative;
    padding: 150px 0 90px;
    color: var(--white);
    text-align: center;
}

.thank-you-inner {
    max-width: 820px;
}

.thank-you-inner .eyebrow {
    color: var(--brand-teal);
    margin: 0 0 12px;
}

.thank-you-inner h1 {
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.08;
}

.thank-you-inner p:not(.eyebrow) {
    margin: 0 auto 30px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.form-card {
    position: relative;
    padding: 42px 32px 32px;
    border-radius: 28px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
}

.confidential-badge {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: min(190px, calc(100% - 44px));
    filter: drop-shadow(0 12px 22px rgba(15, 23, 42, 0.16));
    pointer-events: none;
}

.confidential-badge img {
    width: 100%;
    height: auto;
}

.form-heading {
    margin-bottom: 28px;
    text-align: center;
}

.form-heading.left {
    text-align: left;
}

.form-heading h2 {
    margin: 0;
    color: var(--brand-purple);
    font-size: 24px;
}

.form-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.form-alert-success {
    background: rgba(25, 211, 180, 0.14);
    color: #0f766e;
}

.form-alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--soft);
    color: var(--text);
    padding: 14px 16px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form textarea {
    resize: vertical;
    min-height: 104px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--brand-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 43, 133, 0.12);
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 22px;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.trust-row .icon {
    width: 17px;
    height: 17px;
    color: var(--yellow);
}

body.modal-open {
    overflow: hidden;
}

.popup-modal[hidden] {
    display: none;
}

.popup-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.popup-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(8px);
}

.popup-dialog {
    position: relative;
    width: min(100%, 880px);
    max-height: min(92vh, 820px);
    overflow: auto;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.34);
    transform: translateY(18px) scale(0.98);
    transition: transform 180ms ease;
}

.popup-modal.is-open .popup-dialog {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
    color: var(--text);
    font-size: 28px;
    line-height: 1;
}

.popup-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
    min-height: 560px;
}

.popup-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--brand-purple) 0%, #090d64 100%);
    color: var(--white);
}

.popup-copy .eyebrow {
    margin: 0 0 12px;
    color: var(--brand-teal);
}

.popup-copy h2 {
    margin: 0 0 16px;
    font-size: 38px;
    line-height: 1.08;
}

.popup-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.popup-points {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.popup-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.popup-points .icon {
    width: 18px;
    height: 18px;
    color: var(--brand-teal);
}

.popup-form-wrap {
    align-self: center;
    padding: 46px 38px 34px;
}

.popup-lead-form {
    gap: 14px;
}

.popup-trust {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid #f1f5f9;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card {
    min-height: 355px;
    padding: 32px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    border-radius: 18px;
    transition: transform 220ms ease;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    margin-bottom: 24px;
    transition: transform 220ms ease;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.icon-large {
    width: 82px;
    height: 82px;
    border-radius: 26px;
}

.service-card:hover .service-image,
.service-card:hover .icon-tile {
    transform: scale(1.06) rotate(3deg);
}

.theme-pink {
    background: #fdf2f8;
    color: #ec4899;
}

.theme-teal {
    background: #f0fdfa;
    color: #0f766e;
}

.theme-purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.theme-yellow {
    background: #fefce8;
    color: #ca8a04;
}

.theme-blue {
    background: #eff6ff;
    color: #2563eb;
}

.theme-indigo {
    background: #eef2ff;
    color: #4f46e5;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.25;
}

.service-card p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.service-card p {
    flex: 1;
}

.legacy-process-section {
    background: var(--white);
}

.legacy-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.legacy-process-card {
    min-height: 285px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.legacy-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11);
}

.legacy-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 122px;
    margin-bottom: 22px;
    transition: transform 220ms ease;
}

.legacy-process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.14));
}

.legacy-process-card:hover .legacy-process-icon {
    transform: translateY(-3px) rotate(2deg) scale(1.03);
}

.legacy-process-card h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.2;
}

.legacy-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.legacy-process-action {
    margin-top: 56px;
    text-align: center;
}

.legacy-process-action p {
    margin: 0 0 26px;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}

.about-section,
.projects-section {
    background: var(--soft);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual::before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    top: 44px;
    left: 14px;
    border-radius: 50%;
    background: rgba(25, 211, 180, 0.18);
    filter: blur(45px);
}

.about-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 450px);
    margin: 0 auto;
    border: 8px solid var(--white);
    border-radius: 46px;
    box-shadow: var(--shadow);
}

.about-copy h2,
.contact-copy h2 {
    margin: 0 0 28px;
    color: var(--brand-dark);
    font-size: 48px;
    line-height: 1.15;
}

.about-copy p {
    margin: 0 0 20px;
    color: #475569;
}

.about-copy .btn {
    margin-top: 14px;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: var(--brand-purple);
    color: var(--white);
}

.testimonial-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(46px);
}

.glow-one {
    top: -130px;
    right: -130px;
    background: rgba(25, 211, 180, 0.12);
}

.glow-two {
    bottom: -130px;
    left: -130px;
    background: rgba(18, 13, 43, 0.34);
}

.testimonial-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 24px;
    color: var(--yellow);
}

.testimonial-slider {
    min-height: 265px;
}

.testimonial-slide {
    animation: testimonial-fade 320ms ease;
}

.testimonial-slide[hidden] {
    display: none;
}

.testimonial-section blockquote {
    margin: 0 0 28px;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.45;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author cite {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.slider-dots button:hover,
.slider-dots button:focus-visible {
    background: rgba(255, 255, 255, 0.72);
    transform: scale(1.25);
}

.slider-dots button:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

.slider-dots .active {
    background: var(--white);
}

@keyframes testimonial-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 16px;
}

.process-card {
    min-height: 210px;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 22px 22px;
    border: 1px solid #f4f6fb;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
}

.process-phone {
    width: 68px;
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.process-phone img {
    width: 64px;
    max-height: 126px;
    object-fit: contain;
    filter: drop-shadow(-12px 12px 16px rgba(15, 23, 42, 0.12));
}

.process-content {
    min-width: 0;
}

.process-content h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.1;
}

.process-tags {
    min-height: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.process-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 17px;
    padding: 3px 10px;
    border-radius: 999px;
    background: #edeef5;
    color: #111827;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.process-line {
    width: 54px;
    height: 2px;
    margin-bottom: 14px;
    background: var(--brand-purple);
}

.process-content p {
    margin: 0 0 12px;
    color: var(--brand-purple);
    font-size: 12px;
    line-height: 1.32;
}

.process-link {
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
}

.process-link:hover {
    color: var(--brand-purple);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.industry-card {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    border-radius: 8px;
    background: var(--white);
    color: #000080;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 50px;
    color: var(--brand-purple);
}

.industry-svg {
    width: 54px;
    height: 54px;
    stroke: #393c43;
}

.industry-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.industry-svg path:nth-child(even),
.industry-svg rect:nth-child(even),
.industry-svg circle:nth-child(even) {
    stroke: #6c4ee3;
}

.industry-title {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: underline;
}

.partners-section {
    padding: 80px 0;
    border-block: 1px solid #f1f5f9;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 42px 72px;
    filter: grayscale(1);
    opacity: 0.54;
    transition: filter 300ms ease, opacity 300ms ease;
}

.partners-logos:hover {
    filter: grayscale(0);
    opacity: 0.8;
}

.partners-logos img {
    max-width: 135px;
    height: 38px;
    object-fit: contain;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid #eef2f7;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: var(--brand-dark);
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(59, 43, 133, 0.08);
    color: var(--brand-purple);
    font-size: 22px;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
    background: rgba(25, 211, 180, 0.18);
}

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-section {
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    color: var(--white);
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(18, 13, 43, 0.82), rgba(18, 13, 43, 0.82)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&auto=format&fit=crop&q=80") center / cover no-repeat;
    filter: grayscale(1);
    opacity: 0.9;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.contact-copy h2 {
    color: var(--white);
}

.benefit-list {
    display: grid;
    gap: 16px;
    margin: 0 0 42px;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 700;
}

.benefit-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--text);
}

.benefit-list .icon {
    width: 16px;
    height: 16px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
}

.method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(25, 211, 180, 0.3);
    border-radius: 16px;
    background: rgba(25, 211, 180, 0.16);
    color: var(--brand-teal);
}

.contact-method small,
.contact-method strong {
    display: block;
}

.contact-method small {
    color: rgba(255, 255, 255, 0.62);
}

.contact-method strong {
    color: var(--white);
    font-size: 20px;
}

.site-footer {
    padding: 28px 0 16px;
    background: var(--brand-purple);
    color: var(--white);
}

.footer-inner {
    display: grid;
    gap: 28px;
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    display: inline-flex;
    width: 205px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-google {
    width: 235px;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-links a {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--brand-teal);
}

html.js-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 550ms ease, transform 550ms ease;
}

html.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 18px;
    }

    .hero-copy h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .legacy-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .section {
        padding: 76px 0;
    }

    .section-header h2,
    .about-copy h2,
    .contact-copy h2 {
        font-size: 34px;
    }

    .nav-inner {
        min-height: 72px;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        background: rgba(18, 13, 43, 0.98);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 14px;
    }

    .call-pill span {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 118px;
    }

    .hero-grid,
    .split-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

    .popup-dialog {
        width: min(100%, 680px);
    }

    .popup-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .popup-copy {
        padding: 42px 34px 30px;
    }

    .popup-copy h2 {
        max-width: 520px;
        font-size: 32px;
    }

    .popup-form-wrap {
        padding: 34px;
    }

    .hero-copy h1 {
        font-size: 44px;
    }

    .thank-you-inner h1 {
        font-size: 42px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .about-visual {
        order: 2;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legacy-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1280px);
    }

    .brand {
        width: 138px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .button-row,
    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .popup-modal {
        padding: 12px;
    }

    .popup-dialog {
        max-height: calc(100vh - 24px);
        border-radius: 18px;
    }

    .popup-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .popup-copy {
        padding: 34px 22px 24px;
    }

    .popup-copy h2 {
        font-size: 27px;
    }

    .popup-points {
        margin-top: 24px;
    }

    .popup-form-wrap {
        padding: 26px 18px 22px;
    }

    .form-card {
        padding: 40px 22px 28px;
        border-radius: 22px;
    }

    .trust-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .services-grid,
    .legacy-process-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card,
    .legacy-process-card,
    .process-card {
        min-height: auto;
    }

    .testimonial-section blockquote {
        font-size: 22px;
    }

    .partners-logos {
        gap: 30px;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
