:root {
            --bg: #f4f6f9;
            --surface: #ffffff;
            --surface-soft: #f8fafc;

            --primary: #081226;
            --secondary: #12233f;

            --accent: #0ea5e9;
            --accent-strong: #0284c7;
            --accent-dark: #0369a1;
            --accent-soft: #38bdf8;

            --text: #1e293b;
            --text-soft: #475569;
            --muted: #64748b;
            --muted-light: #94a3b8;

            --border: #dbe4ee;
            --border-strong: #cbd5e1;

            --white: #ffffff;
            --dark: #020817;
            --dark-surface: #081226;
            --dark-surface-soft: #0b1730;

            --success: #047857;
            --success-bg: #ecfdf5;
            --success-border: #a7f3d0;

            --danger: #b91c1c;
            --danger-bg: #fef2f2;
            --danger-border: #fecaca;

            --info-bg: #eaf7ff;
            --info-border: #bae6fd;

            --shadow-sm: 0 10px 20px rgba(2, 132, 199, 0.18);
            --shadow-md: 0 18px 36px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 24px 50px rgba(2, 8, 23, 0.20);

            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 18px;

            --site-header-height: 93px;
            --navigation-offset: 117px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);

            font-family:
                ui-sans-serif,
                system-ui,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Arial,
                sans-serif;

            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        body.is-submitting {
            cursor: progress;
        }

        a {
            color: inherit;
        }

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

        button {
            cursor: pointer;
        }

        .container {
            width: 90%;
            max-width: 1240px;
            margin: auto;
        }

        section {
            position: relative;
            scroll-margin-top: var(--navigation-offset);
        }

        .section-label,
        .panel-label {
            color: var(--accent-strong);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 1.9px;
            text-transform: uppercase;
        }

        .section-label {
            margin-bottom: 18px;
        }

        .section-heading {
            margin-bottom: 52px;
        }

        .section-heading h2 {
            max-width: 920px;
            color: var(--primary);
            font-size: 3rem;
            line-height: 1.08;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }

        .section-heading p {
            max-width: 850px;
            color: var(--text-soft);
            font-size: 1.05rem;
        }

        .skip-link {
            position: absolute;
            top: -70px;
            left: 20px;
            z-index: 1000;

            background: var(--primary);
            color: var(--white);

            padding: 12px 18px;
            border-radius: var(--radius-sm);

            text-decoration: none;
        }

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

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        :focus-visible {
            outline: 3px solid rgba(14, 165, 233, 0.42);
            outline-offset: 4px;
        }

        /* NAVIGATION */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;

            background: rgba(244, 246, 249, 0.96);
            border-bottom: 1px solid transparent;

            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);

            transition:
                border-color 0.2s ease,
                box-shadow 0.2s ease;
        }

        .site-header.is-scrolled {
            border-bottom-color: var(--border);
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
        }

        .site-nav {
            padding: 42px 0 20px;
        }

        .nav-inner {
            position: relative;

            display: flex;
            justify-content: space-between;
            align-items: center;

            gap: 32px;
        }

        .logo {
            color: var(--accent-strong);

            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: 3px;

            white-space: nowrap;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            position: relative;

            color: var(--muted);

            font-size: 0.95rem;
            font-weight: 600;

            text-decoration: none;

            transition:
                color 0.2s ease,
                background 0.2s ease;
        }

        .nav-links a:hover,
        .nav-links a[aria-current="page"] {
            color: var(--primary);
        }

        .mobile-nav-toggle {
            display: none;

            width: 44px;
            height: 44px;

            align-items: center;
            justify-content: center;

            border: 1px solid var(--border-strong);
            border-radius: 10px;

            background: var(--surface);
            color: var(--primary);
        }

        .mobile-nav-toggle span,
        .mobile-nav-toggle span::before,
        .mobile-nav-toggle span::after {
            display: block;

            width: 20px;
            height: 2px;

            background: currentColor;
            border-radius: 2px;

            transition:
                transform 0.2s ease,
                opacity 0.2s ease;
        }

        .mobile-nav-toggle span {
            position: relative;
        }

        .mobile-nav-toggle span::before,
        .mobile-nav-toggle span::after {
            content: "";
            position: absolute;
            left: 0;
        }

        .mobile-nav-toggle span::before {
            top: -6px;
        }

        .mobile-nav-toggle span::after {
            top: 6px;
        }

        .mobile-nav-toggle[aria-expanded="true"] span {
            background: transparent;
        }

        .mobile-nav-toggle[aria-expanded="true"] span::before {
            transform:
                translateY(6px) rotate(45deg);
        }

        .mobile-nav-toggle[aria-expanded="true"] span::after {
            transform:
                translateY(-6px) rotate(-45deg);
        }

        /* BUTTONS */

        .button-row {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 56px;
            padding: 16px 34px;

            border-radius: var(--radius-sm);

            font-weight: 700;
            text-decoration: none;

            transition:
                transform 0.2s ease,
                background 0.2s ease,
                border-color 0.2s ease;
        }

        .btn-primary {
            background: var(--accent-strong);
            color: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--border-strong);
        }

        .btn-secondary:hover {
            background: var(--white);
        }

        /* HERO */

        .contact-hero {
            padding: 72px 0 110px;
        }

        .contact-hero-grid {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            align-items: center;
            gap: 70px;
        }

        .contact-hero-copy h1 {
            max-width: 800px;

            color: var(--primary);

            font-size: 4rem;
            line-height: 1.04;
            letter-spacing: -2px;

            margin-bottom: 28px;
        }

        .contact-hero-copy h1 span {
            color: var(--accent-strong);
        }

        .contact-hero-copy>p {
            max-width: 700px;

            color: var(--text-soft);

            font-size: 1.1rem;

            margin-bottom: 28px;
        }

        .hero-points {
            display: grid;
            gap: 10px;

            margin: 0 0 34px;
            padding: 0;

            list-style: none;
        }

        .hero-point {
            position: relative;

            color: var(--text-soft);

            font-size: 0.94rem;
            font-weight: 650;

            padding-left: 20px;
        }

        .hero-point::before {
            content: "";

            position: absolute;

            left: 0;
            top: 0.68em;

            width: 7px;
            height: 7px;

            border-radius: 999px;

            background: var(--accent-strong);
        }

        .engagement-panel {
            position: relative;
            overflow: hidden;

            padding: 38px;

            border-radius: var(--radius-xl);

            color: var(--white);

            background:
                linear-gradient(180deg,
                    var(--dark-surface) 0%,
                    var(--dark-surface-soft) 100%);

            box-shadow: var(--shadow-lg);
        }

        .engagement-panel::before {
            content: "";

            position: absolute;
            inset: 0;

            background-image:
                linear-gradient(rgba(255, 255, 255, 0.04) 1px,
                    transparent 1px),
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.04) 1px,
                    transparent 1px);

            background-size: 28px 28px;

            pointer-events: none;
        }

        .engagement-panel-content {
            position: relative;
            z-index: 2;
        }

        .panel-kicker {
            color: var(--accent-soft);

            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 1.8px;

            text-transform: uppercase;

            margin-bottom: 10px;
        }

        .engagement-panel h2 {
            font-size: 1.5rem;
            line-height: 1.2;

            margin-bottom: 10px;
        }

        .engagement-panel-content>p {
            color: var(--muted-light);
            font-size: 0.94rem;
            margin-bottom: 28px;
        }

        .engagement-flow {
            display: grid;
            gap: 14px;

            list-style: none;
        }

        .engagement-step {
            position: relative;

            display: grid;
            grid-template-columns: auto 1fr;

            gap: 14px;

            background: rgba(255, 255, 255, 0.05);

            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);

            padding: 17px 18px;
        }

        .engagement-step:not(:last-child)::after {
            content: "";

            position: absolute;

            left: 34px;
            bottom: -15px;

            width: 1px;
            height: 15px;

            background: var(--accent-soft);
        }

        .step-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            width: 34px;
            height: 34px;

            border-radius: 999px;

            background: rgba(56, 189, 248, 0.12);
            color: var(--accent-soft);

            font-size: 0.68rem;
            font-weight: 800;
        }

        .engagement-step strong {
            display: block;
            margin-bottom: 3px;
        }

        .engagement-step p {
            color: var(--muted-light);
            font-size: 0.86rem;
        }

        /* TRUST NOTICE */

        .contact-trust {
            background: var(--white);

            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .contact-trust-inner {
            display: grid;
            grid-template-columns: auto 1fr;

            gap: 16px;
            align-items: start;

            padding: 28px 0;
        }

        .trust-mark {
            width: 38px;
            height: 38px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 999px;

            background: #e0f2fe;
            color: var(--accent-dark);

            font-weight: 800;
            font-size: 0.78rem;
        }

        .contact-trust strong {
            display: block;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .contact-trust p {
            color: var(--text-soft);
            font-size: 0.94rem;
        }


        /* ARCHITECTURE REVIEW SCOPE NOTE */

        .contact-scope-note {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

            gap: 28px;
            align-items: center;

            margin-bottom: 28px;
            padding: 28px 30px;

            background: var(--white);

            border: 1px solid var(--border);
            border-radius: var(--radius-lg);

            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
        }

        .contact-scope-copy h3 {
            color: var(--primary);

            font-size: 1.38rem;
            line-height: 1.25;

            margin: 8px 0 10px;
        }

        .contact-scope-copy p {
            color: var(--text-soft);
            font-size: 0.96rem;
        }

        .contact-scope-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));

            gap: 10px;

            margin: 0;
            padding: 0;

            list-style: none;
        }

        .contact-scope-item {
            position: relative;

            min-height: 100%;

            padding: 16px 16px 16px 38px;

            background: var(--surface-soft);

            border: 1px solid var(--border);
            border-radius: 10px;

            color: var(--primary);

            font-size: 0.86rem;
            font-weight: 750;
            line-height: 1.45;
        }

        .contact-scope-item::before {
            content: "";

            position: absolute;

            left: 17px;
            top: 1.55em;

            width: 8px;
            height: 8px;

            border-radius: 999px;

            background: var(--accent-strong);
        }


        /* WORKSPACE */

        .contact-workspace {
            padding: 110px 0;
        }

        .workspace-heading {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;

            gap: 60px;
            align-items: end;

            margin-bottom: 44px;
        }

        .workspace-heading h2 {
            max-width: 780px;

            color: var(--primary);

            font-size: 3rem;
            line-height: 1.08;
            letter-spacing: -1px;
        }

        .workspace-heading>p {
            max-width: 640px;

            color: var(--text-soft);
            font-size: 1rem;
        }

        .workspace-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);

            gap: 28px;
            align-items: start;
        }

        .form-panel,
        .review-panel {
            background: var(--white);

            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
        }

        .form-panel {
            padding: 36px;
        }

        .form-panel-heading {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;

            gap: 24px;

            padding-bottom: 26px;

            border-bottom: 1px solid var(--border);
        }

        .form-panel-heading h3 {
            color: var(--primary);
            font-size: 1.45rem;
            margin-top: 6px;
        }

        .form-state {
            display: inline-flex;
            align-items: center;

            min-height: 32px;

            padding: 6px 11px;

            border-radius: 999px;

            background: var(--surface-soft);
            color: var(--muted);

            border: 1px solid var(--border);

            font-size: 0.75rem;
            font-weight: 800;
        }

        .form-state.is-active {
            background: #e0f2fe;
            color: var(--accent-dark);
            border-color: #bae6fd;
        }

        .form-state.is-submitting {
            background: #fef3c7;
            color: #92400e;
            border-color: #fde68a;
        }

        .form-section {
            border: 0;

            padding: 28px 0;

            border-bottom: 1px solid var(--border);
        }

        .form-section legend {
            color: var(--primary);

            font-size: 1.06rem;
            font-weight: 800;

            margin-bottom: 18px;
        }

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

            gap: 20px;
        }

        .field-group {
            min-width: 0;
        }

        .field-group[hidden] {
            display: none !important;
        }

        .required-indicator[hidden] {
            display: none;
        }

        .mode-note {
            margin-top: 14px;
            padding: 12px 14px;

            border: 1px solid var(--info-border);
            border-radius: 10px;

            background: var(--info-bg);
            color: var(--text-soft);

            font-size: 0.84rem;
        }

        .field-group+.field-group {
            margin-top: 20px;
        }

        .field-grid .field-group+.field-group {
            margin-top: 0;
        }

        .field-group label,
        .field-label {
            display: block;

            color: var(--primary);

            font-size: 0.9rem;
            font-weight: 750;

            margin-bottom: 8px;
        }

        .field-group label span {
            color: var(--danger);
        }

        .field-help {
            color: var(--muted);
            font-size: 0.84rem;
            margin: -3px 0 12px;
        }

        input,
        select,
        textarea {
            width: 100%;

            border: 1px solid var(--border-strong);
            border-radius: 10px;

            background: var(--surface);
            color: var(--text);

            padding: 13px 14px;

            transition:
                border-color 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
        }

        input,
        select {
            min-height: 50px;
        }

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

        input:hover,
        select:hover,
        textarea:hover {
            border-color: #94a3b8;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--accent-strong);
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
            outline: 0;
        }

        input[aria-invalid="true"],
        select[aria-invalid="true"],
        textarea[aria-invalid="true"] {
            border-color: var(--danger);
            background: var(--danger-bg);
        }

        .field-error {
            min-height: 1.2em;

            color: var(--danger);

            font-size: 0.78rem;
            font-weight: 650;

            margin-top: 6px;
        }

        .field-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;

            gap: 14px;
        }

        .character-count {
            color: var(--muted);
            font-size: 0.76rem;
            white-space: nowrap;
            margin-top: 6px;
        }

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

            gap: 10px;
        }

        .check-card {
            position: relative;

            display: flex !important;
            align-items: center;

            gap: 10px;

            min-height: 48px;

            padding: 11px 12px;

            border: 1px solid var(--border);
            border-radius: 10px;

            background: var(--surface-soft);
            color: var(--text-soft) !important;

            font-size: 0.85rem !important;
            font-weight: 700 !important;

            cursor: pointer;
        }

        .check-card:has(input:checked) {
            border-color: var(--accent-strong);
            background: #eaf7ff;
            color: var(--primary) !important;
        }

        .check-card input {
            width: 18px;
            height: 18px;
            min-height: auto;
            padding: 0;

            accent-color: var(--accent-strong);
        }

        .submission-boundary {
            padding: 28px 0 10px;
        }

        .consent-row {
            display: grid;

            grid-template-columns: auto 1fr;

            gap: 12px;
            align-items: start;

            color: var(--text-soft);

            font-size: 0.88rem;
        }

        .consent-row input {
            width: 19px;
            height: 19px;
            min-height: auto;
            margin-top: 3px;
            padding: 0;

            accent-color: var(--accent-strong);
        }

        .consent-error {
            margin-left: 31px;
        }

        .privacy-note {
            color: var(--muted);
            font-size: 0.82rem;
            margin: 8px 0 0 31px;
        }

        .privacy-note a {
            color: var(--accent-dark);
            font-weight: 700;
        }

        .form-alert {
            border-radius: 10px;

            padding: 14px 16px;

            font-size: 0.9rem;
            font-weight: 650;

            margin: 14px 0 0;
        }

        .form-alert.is-error {
            background: var(--danger-bg);
            border: 1px solid var(--danger-border);
            color: var(--danger);
        }

        .form-alert.is-success {
            background: var(--success-bg);
            border: 1px solid var(--success-border);
            color: var(--success);
        }

        .form-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;

            padding-top: 22px;
        }

        .submit-button,
        .reset-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 52px;

            border-radius: 9px;

            font-weight: 750;
        }

        .submit-button {
            min-width: 250px;

            padding: 14px 24px;

            border: 1px solid var(--accent-strong);

            background: var(--accent-strong);
            color: var(--white);

            box-shadow: var(--shadow-sm);
        }

        .submit-button:hover:not(:disabled) {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }

        .submit-button:disabled {
            opacity: 0.72;
            cursor: wait;
        }

        .reset-button {
            padding: 14px 20px;

            border: 1px solid var(--border-strong);

            background: transparent;
            color: var(--primary);
        }

        .reset-button:hover {
            background: var(--surface-soft);
        }

        .button-spinner {
            display: none;

            width: 17px;
            height: 17px;

            margin-left: 10px;

            border: 2px solid rgba(255, 255, 255, 0.45);
            border-top-color: var(--white);
            border-radius: 999px;

            animation: spin 0.75s linear infinite;
        }

        .submit-button.is-loading .button-spinner {
            display: block;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .honeypot {
            position: absolute !important;

            width: 1px !important;
            height: 1px !important;

            overflow: hidden !important;

            clip: rect(1px, 1px, 1px, 1px) !important;
            clip-path: inset(50%) !important;

            white-space: nowrap !important;
        }

        /* REVIEW PANEL */

        .review-panel {
            position: sticky;
            top: calc(var(--site-header-height) + 24px);

            overflow: hidden;
        }

        .review-panel-heading {
            background: var(--primary);
            color: var(--white);

            padding: 28px;
        }

        .review-panel-heading .panel-label {
            color: var(--accent-soft);
        }

        .review-panel-heading h3 {
            font-size: 1.28rem;
            margin: 7px 0;
        }

        .review-panel-heading p {
            color: var(--muted-light);
            font-size: 0.87rem;
        }

        .summary-list {
            display: grid;
        }

        .summary-item {
            padding: 18px 22px;

            border-bottom: 1px solid var(--border);
        }

        .summary-item span {
            display: block;

            color: var(--muted);

            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 1px;

            text-transform: uppercase;

            margin-bottom: 4px;
        }

        .summary-item strong {
            display: block;

            color: var(--primary);

            font-size: 0.92rem;
            overflow-wrap: anywhere;
        }

        .readiness-block {
            padding: 22px;

            border-bottom: 1px solid var(--border);
        }

        .readiness-heading {
            display: flex;
            justify-content: space-between;

            gap: 18px;

            color: var(--primary);

            font-size: 0.84rem;
            font-weight: 750;

            margin-bottom: 10px;
        }

        .readiness-track {
            overflow: hidden;

            height: 9px;

            border-radius: 999px;

            background: #e2e8f0;
        }

        .readiness-track span {
            display: block;

            width: 0;
            height: 100%;

            border-radius: inherit;

            background: linear-gradient(90deg,
                    var(--accent-strong),
                    var(--accent-soft));

            transition: width 0.25s ease;
        }

        .expected-output {
            padding: 22px;

            border-bottom: 1px solid var(--border);
        }

        .expected-output ul {
            display: grid;
            gap: 8px;

            margin-top: 13px;

            list-style: none;
        }

        .expected-output li {
            position: relative;

            color: var(--text-soft);

            font-size: 0.86rem;

            padding-left: 18px;
        }

        .expected-output li::before {
            content: "";

            position: absolute;

            left: 0;
            top: 0.64em;

            width: 6px;
            height: 6px;

            border-radius: 999px;

            background: var(--accent-strong);
        }

        .direct-contact {
            padding: 22px;

            background: var(--surface-soft);
        }

        .direct-contact span {
            display: block;

            color: var(--muted);

            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 1px;

            text-transform: uppercase;

            margin-bottom: 4px;
        }

        .direct-contact a {
            color: var(--accent-dark);

            font-size: 0.94rem;
            font-weight: 800;

            text-decoration: none;
        }

        .direct-contact p {
            color: var(--muted);
            font-size: 0.8rem;
            margin-top: 6px;
        }

        /* SUCCESS */

        .success-panel {
            padding: 54px 16px 22px;
            text-align: center;
        }

        .success-mark {
            width: 58px;
            height: 58px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin: 0 auto 20px;

            border-radius: 999px;

            background: var(--success-bg);
            color: var(--success);

            border: 1px solid var(--success-border);

            font-size: 1.45rem;
            font-weight: 900;
        }

        .success-panel h3 {
            color: var(--primary);
            font-size: 2rem;
            line-height: 1.15;
            margin: 8px 0 14px;
        }

        .success-panel>p {
            max-width: 570px;

            color: var(--text-soft);

            margin: 0 auto;
        }

        .reference-box {
            max-width: 500px;

            display: grid;
            gap: 5px;

            margin: 26px auto;

            padding: 18px;

            border: 1px solid var(--border);
            border-radius: var(--radius-md);

            background: var(--surface-soft);
        }

        .reference-box span {
            color: var(--muted);

            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1px;

            text-transform: uppercase;
        }

        .reference-box strong {
            color: var(--primary);
            font-size: 0.92rem;
            overflow-wrap: anywhere;
        }

        .success-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .link-button {
            text-decoration: none;
        }

        /* CONTEXT */

        .engagement-context {
            padding: 0 0 120px;
        }

        .context-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);

            gap: 20px;
        }

        .context-card {
            background: var(--white);

            border: 1px solid var(--border);
            border-radius: var(--radius-lg);

            padding: 26px;
        }

        .context-card span {
            display: block;

            color: var(--accent-strong);

            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 1.1px;

            text-transform: uppercase;

            margin-bottom: 7px;
        }

        .context-card h3 {
            color: var(--primary);
            font-size: 1.08rem;
            margin-bottom: 9px;
        }

        .context-card p {
            color: var(--text-soft);
            font-size: 0.9rem;
        }

        /* FOOTER */

        .footer {
            background: #eef2f7;

            border-top: 1px solid var(--border);

            padding: 54px 0 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;

            gap: 50px;

            padding-bottom: 36px;
        }

        .footer-brand h2 {
            color: var(--primary);

            font-size: 1rem;
            letter-spacing: 2px;

            margin-bottom: 12px;
        }

        .footer-brand p {
            max-width: 420px;

            color: var(--muted);

            font-size: 0.9rem;
        }

        .footer-column h3 {
            color: var(--primary);

            font-size: 0.78rem;
            letter-spacing: 1.2px;

            text-transform: uppercase;

            margin-bottom: 14px;
        }

        .footer-links {
            display: grid;
            gap: 9px;
        }

        .footer-links a {
            color: var(--muted);

            font-size: 0.9rem;

            text-decoration: none;
        }

        .footer-links a:hover,
        .footer-links a[aria-current="page"] {
            color: var(--accent-strong);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;

            gap: 20px;
            flex-wrap: wrap;

            padding-top: 24px;

            border-top: 1px solid var(--border);
        }

        .footer-bottom p {
            color: var(--muted);
            font-size: 0.84rem;
        }

        .footer-bottom a {
            color: var(--accent-strong);

            font-weight: 700;

            text-decoration: none;
        }

        .noscript-notice {
            position: fixed;
            z-index: 1000;

            left: 16px;
            right: 16px;
            bottom: 16px;

            max-width: 760px;
            margin: auto;

            padding: 14px 18px;

            border-radius: 10px;

            background: var(--primary);
            color: var(--white);

            box-shadow: var(--shadow-lg);

            font-size: 0.9rem;
        }

        /* RESPONSIVE */

        @media(max-width:1100px) {

            .contact-hero-grid,
            .workspace-heading,
            .contact-scope-note {
                grid-template-columns: 1fr;
            }

            .contact-hero-copy h1 {
                font-size: 3.4rem;
            }

            .engagement-panel {
                max-width: 760px;
            }

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

            .review-panel {
                position: static;
            }

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

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media(max-width:768px) {

            .site-nav {
                padding: 28px 0 18px;
            }

            .mobile-nav-toggle {
                display: inline-flex;
            }

            .nav-links {
                display: none;

                position: absolute;

                top: 56px;
                right: 0;

                width: min(320px, 92vw);

                flex-direction: column;
                align-items: stretch;

                gap: 0;

                background: var(--white);

                border: 1px solid var(--border);
                border-radius: var(--radius-md);

                box-shadow: var(--shadow-md);

                padding: 10px;
            }

            .nav-links[data-open="true"] {
                display: flex;
            }

            .nav-links a {
                padding: 12px 14px;
                border-radius: 8px;
            }

            .nav-links a:hover {
                background: var(--surface-soft);
            }

            .nav-links a[aria-current="page"] {
                color: var(--primary);
                background: #eaf7ff;
            }

            .contact-hero,
            .contact-workspace {
                padding: 82px 0;
            }

            .contact-hero-copy h1 {
                font-size: 2.45rem;
                letter-spacing: -1px;
            }

            .workspace-heading h2,
            .section-heading h2 {
                font-size: 2.2rem;
            }

            .engagement-panel {
                padding: 28px 24px;
            }

            .form-panel {
                padding: 26px 22px;
            }

            .field-grid,
            .checkbox-grid,
            .contact-scope-list {
                grid-template-columns: 1fr;
            }

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

            .footer-main {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: auto;
            }
        }

        @media(max-width:520px) {

            .container {
                width: 92%;
            }

            .button-row,
            .form-actions,
            .success-actions {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary,
            .submit-button,
            .reset-button {
                width: 100%;
            }

            .form-panel-heading {
                flex-direction: column;
            }

            .contact-scope-note {
                padding: 24px 20px;
            }
        }

        @media(prefers-reduced-motion:reduce) {

            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
