:root {
    color-scheme: light;
    --bg: #fbfefc;
    --bg-2: #eef9ef;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --surface-soft: #eef8ec;
    --ink: #102521;
    --muted: #5c706a;
    --line: #dcefe4;
    --brand: #1eb9a2;
    --brand-strong: #118675;
    --brand-dark: #0b4c43;
    --grass: #8ccf7e;
    --grass-soft: #eef8ec;
    --accent: #e3f7dc;
    --blue: #3b82c4;
    --danger: #b42318;
    --shadow: 0 24px 70px rgba(16, 37, 33, 0.11);
    --glow: 0 0 34px rgba(30, 185, 162, 0.16);
    --radius: 8px;
}

body[data-theme="dark"] {
    color-scheme: dark;
    --bg: #050807;
    --bg-2: #090f0e;
    --surface: rgba(14, 19, 18, 0.92);
    --surface-solid: #0e1312;
    --surface-soft: rgba(30, 185, 162, 0.08);
    --ink: #f3f7f5;
    --muted: #9aa7a3;
    --line: rgba(216, 242, 238, 0.11);
    --brand: #1eb9a2;
    --brand-strong: #37c5b2;
    --brand-dark: #c6f7ee;
    --grass: #8ccf7e;
    --grass-soft: rgba(140, 207, 126, 0.12);
    --accent: #d8f2ee;
    --blue: #8bc7ff;
    --danger: #ffb4a8;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
    --glow: 0 0 30px rgba(30, 185, 162, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(
            ellipse at 15% 0%,
            rgba(140, 207, 126, 0.18),
            transparent 28rem
        ),
        radial-gradient(
            ellipse at 88% 10%,
            rgba(30, 185, 162, 0.1),
            transparent 24rem
        ),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 54%, var(--bg) 100%);
    color: var(--ink);
    font-family:
        Manrope,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
}

body[data-theme="dark"] {
    background:
        radial-gradient(
            ellipse 70% 46% at 22% -10%,
            rgba(30, 185, 162, 0.24),
            transparent 68%
        ),
        radial-gradient(
            ellipse 60% 44% at 86% 8%,
            rgba(140, 207, 126, 0.13),
            transparent 64%
        ),
        radial-gradient(
            ellipse 50% 38% at 50% 106%,
            rgba(59, 130, 196, 0.12),
            transparent 66%
        ),
        linear-gradient(180deg, #050807 0%, #07100e 48%, #050807 100%);
    background-attachment: fixed;
}

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

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

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

.site-shell {
    min-height: 100vh;
    overflow-x: clip;
}

.container {
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 253, 252, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(30, 185, 162, 0.18);
    box-shadow: 0 16px 42px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .site-header {
    border-bottom-color: rgba(198, 247, 238, 0.09);
    background:
        linear-gradient(180deg, rgba(5, 12, 11, 0.9), rgba(5, 12, 11, 0.72));
    box-shadow: inset 0 -1px 0 rgba(198, 247, 238, 0.035);
}

body[data-theme="dark"] .site-header.is-scrolled {
    border-bottom-color: rgba(126, 231, 215, 0.15);
    background:
        linear-gradient(180deg, rgba(5, 12, 11, 0.96), rgba(6, 18, 16, 0.88));
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.32),
        inset 0 -1px 0 rgba(198, 247, 238, 0.04);
}

.nav {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: var(--ink);
    font-weight: 900;
    line-height: 1;
}

.brand-logo {
    display: block;
    width: clamp(170px, 22vw, 252px);
    height: auto;
    filter: drop-shadow(0 12px 26px rgba(30, 185, 162, 0.14));
}

body[data-theme="dark"] .brand-logo {
    filter: brightness(1.1) contrast(1.03) drop-shadow(0 12px 26px rgba(30, 185, 162, 0.2));
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle,
.theme-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

body[data-theme="dark"] .nav-toggle,
body[data-theme="dark"] .theme-toggle {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 255, 247, 0.9);
}

body[data-theme="dark"] .nav-toggle:hover,
body[data-theme="dark"] .theme-toggle:hover {
    border-color: rgba(126, 231, 215, 0.24);
    background: rgba(30, 185, 162, 0.1);
}

.nav-toggle svg,
.theme-toggle svg {
    width: 22px;
    height: 22px;
}

.theme-toggle .sun-icon,
body[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

body[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

.nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    padding: 10px;
    box-shadow: var(--shadow);
}

body[data-theme="dark"] .nav-menu {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        radial-gradient(circle at 14% 0%, rgba(30, 185, 162, 0.12), transparent 14rem),
        linear-gradient(180deg, rgba(8, 24, 21, 0.98), rgba(5, 12, 11, 0.98));
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
}

.nav-menu.is-open {
    display: flex;
}

.nav-link {
    border-radius: 999px;
    padding: 12px 14px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: var(--surface-soft);
    color: var(--ink);
}

body[data-theme="dark"] .nav-link {
    color: rgba(214, 229, 225, 0.72);
}

body[data-theme="dark"] .nav-link:hover,
body[data-theme="dark"] .nav-link.is-active {
    background: rgba(198, 247, 238, 0.075);
    color: rgba(238, 248, 245, 0.96);
}

.nav-cta {
    display: none;
}

.nav-call {
    display: none;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(30, 185, 162, 0.32);
    border-radius: 999px;
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(30, 185, 162, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--brand-strong);
    background: linear-gradient(135deg, var(--brand-strong), #0b6f64);
    box-shadow: 0 18px 38px rgba(30, 185, 162, 0.28);
}

.button.secondary {
    border-color: var(--brand);
    background: transparent;
    color: var(--brand-dark);
    box-shadow: none;
}

.button.secondary:hover {
    background: var(--brand-dark);
    color: #ffffff;
}

.button.call-now {
    gap: 9px;
    border-color: rgba(30, 185, 162, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-dark);
    box-shadow: 0 12px 28px rgba(16, 37, 33, 0.08);
}

.button.call-now:hover {
    border-color: rgba(30, 185, 162, 0.38);
    background: #ffffff;
    color: var(--brand-dark);
    box-shadow: 0 16px 34px rgba(16, 37, 33, 0.12);
}

body[data-theme="dark"] .button.call-now {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 255, 247, 0.88);
    box-shadow: none;
}

body[data-theme="dark"] .button.call-now:hover {
    border-color: rgba(126, 231, 215, 0.25);
    background: rgba(30, 185, 162, 0.1);
    color: #7ee7d7;
}

.call-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(140, 207, 126, 0.26), rgba(30, 185, 162, 0.16));
    color: var(--brand-strong);
}

body[data-theme="dark"] .call-icon {
    background: rgba(30, 185, 162, 0.12);
    color: #7ee7d7;
}

.call-icon svg {
    width: 16px;
    height: 16px;
}

.button svg {
    width: 18px;
    height: 18px;
}

.page-section {
    padding: 76px 0;
}

.page-section.tight {
    padding-top: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--brand-strong);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 7px rgba(30, 185, 162, 0.14);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family:
        "Plus Jakarta Sans",
        Manrope,
        system-ui,
        sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 780px;
    margin-bottom: 20px;
    font-size: clamp(38px, 5.2vw, 70px);
    line-height: 1.08;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.12;
}

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

.lead {
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(18px, 3vw, 21px);
    line-height: 1.65;
}

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

.hero {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 76px 0 66px;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -120px -12% -150px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 72% 22%, rgba(140, 207, 126, 0.22), transparent 20rem),
        radial-gradient(circle at 84% 78%, rgba(30, 185, 162, 0.12), transparent 18rem),
        linear-gradient(135deg, rgba(238, 248, 236, 0.72), transparent 44%);
    mask-image: linear-gradient(180deg, transparent, #000 14%, #000 78%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 78%, transparent);
}

body[data-theme="dark"] .hero::before {
    background:
        radial-gradient(circle at 18% 10%, rgba(30, 185, 162, 0.18), transparent 24rem),
        radial-gradient(circle at 84% 24%, rgba(140, 207, 126, 0.1), transparent 22rem),
        radial-gradient(circle at 72% 84%, rgba(59, 130, 196, 0.1), transparent 21rem);
}

.hero-title {
    max-width: 760px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.1;
}

.hero-grid,
.split-grid,
.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 42px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.feature-grid,
.metrics-grid,
.story-grid,
.mini-contact-grid,
.form-grid {
    display: grid;
    gap: 16px;
}

.metric,
.feature,
.story-card,
.intake-panel,
.form-panel,
.mini-card {
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 14px 42px rgba(16, 37, 33, 0.06);
}

body[data-theme="dark"] .metric,
body[data-theme="dark"] .feature,
body[data-theme="dark"] .story-card,
body[data-theme="dark"] .intake-panel,
body[data-theme="dark"] .form-panel,
body[data-theme="dark"] .mini-card {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(180deg, rgba(14, 27, 24, 0.82), rgba(8, 18, 16, 0.72));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.check-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #06201d;
    font-size: 13px;
    font-weight: 900;
}

.visual-stage {
    position: relative;
    min-height: 610px;
    overflow: visible;
}

.visual-stage::after {
    content: "";
    position: absolute;
    inset: 82px 64px 70px;
    border: 1px dashed rgba(30, 185, 162, 0.28);
    border-radius: 999px;
    transform: rotate(-9deg);
    pointer-events: none;
}

.visual-orbit {
    display: none;
}

.hero-orbit-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: min(78%, 240px);
    border: 1px solid rgba(30, 185, 162, 0.2);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 236, 0.9));
    padding: 10px 12px 10px 10px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(16, 37, 33, 0.12);
    backdrop-filter: blur(12px);
    animation: floatSignal 5.5s ease-in-out infinite;
}

.orbit-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 16px;
    background: rgba(140, 207, 126, 0.16);
    color: var(--brand-strong);
}

.orbit-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-orbit-card strong {
    white-space: nowrap;
}

body[data-theme="dark"] .hero-orbit-card {
    border-color: rgba(198, 247, 238, 0.12);
    background:
        linear-gradient(135deg, rgba(14, 33, 30, 0.92), rgba(8, 18, 16, 0.84));
    color: rgba(214, 255, 247, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .orbit-icon {
    background: rgba(30, 185, 162, 0.12);
    color: #7ee7d7;
}

body[data-theme="dark"] .hero-chat-bubbles span,
body[data-theme="dark"] .hero-chat-bubbles span::after {
    border-color: rgba(198, 247, 238, 0.18);
    background: rgba(198, 247, 238, 0.035);
}

.orbit-chat {
    top: 0;
    left: 24px;
}

.orbit-checklist {
    top: 106px;
    right: -165px;
    animation-delay: 0.75s;
}

.orbit-doc {
    left: -59px;
    bottom: -55px;
    animation-delay: 1.5s;
}

.orbit-alert {
    right: 18px;
    bottom: -50px;
    animation-delay: 2.1s;
}

.hero-chat-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-chat-bubbles span {
    position: absolute;
    display: block;
    border: 1.5px solid rgba(30, 185, 162, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.hero-chat-bubbles span::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    border-left: 1.5px solid rgba(30, 185, 162, 0.28);
    border-bottom: 1.5px solid rgba(30, 185, 162, 0.28);
    background: rgba(255, 255, 255, 0.48);
    transform: rotate(-25deg);
}

.hero-chat-bubbles span:nth-child(1) {
    width: 58px;
    height: 34px;
    left: 7%;
    top: 36%;
}

.hero-chat-bubbles span:nth-child(2) {
    width: 44px;
    height: 28px;
    right: 12%;
    top: 42%;
}

.hero-chat-bubbles span:nth-child(3) {
    width: 52px;
    height: 30px;
    right: 28%;
    bottom: 18%;
}

@keyframes floatSignal {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -10px, 0);
    }
}

.ai-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 530px;
    margin: 78px auto 40px;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: 34px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(30, 185, 162, 0.7), rgba(140, 207, 126, 0.45), rgba(59, 130, 196, 0.34)) border-box;
    box-shadow:
        0 32px 82px rgba(16, 37, 33, 0.18),
        0 0 0 10px rgba(30, 185, 162, 0.045);
    overflow: hidden;
}

.ai-window::before,
.chat-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(30, 185, 162, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 185, 162, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
    opacity: 0.65;
}

.hero-chat-window {
    /* transform: rotate(-0.8deg); */
    /* animation: chatWindowFloat 7s ease-in-out infinite; */
}

body[data-theme="dark"] .ai-window {
    background:
        linear-gradient(#0b1210, #0b1210) padding-box,
        linear-gradient(135deg, rgba(30, 185, 162, 0.58), rgba(140, 207, 126, 0.3), rgba(59, 130, 196, 0.26)) border-box;
    box-shadow:
        0 22px 62px rgba(0, 0, 0, 0.38),
        0 0 0 10px rgba(30, 185, 162, 0.04);
}

body[data-theme="dark"] .ai-window::before,
body[data-theme="dark"] .chat-preview::before {
    background:
        linear-gradient(90deg, rgba(198, 247, 238, 0.045) 1px, transparent 1px),
        linear-gradient(0deg, rgba(198, 247, 238, 0.035) 1px, transparent 1px);
    opacity: 0.5;
}

.window-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(11, 76, 67, 0.98), rgba(30, 185, 162, 0.96) 58%, rgba(140, 207, 126, 0.92)),
        var(--brand);
    padding: 18px 20px;
}

.window-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 900;
}

.window-title > span:last-child {
    display: grid;
    gap: 2px;
    overflow: hidden;
}

.window-title strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}

.window-title small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.ai-spark {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.16);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.ai-spark svg {
    width: 17px;
    height: 17px;
    color: #ffffff;
}

.window-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    padding: 7px 10px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
}

body[data-theme="dark"] .window-status {
    background: rgba(255, 255, 255, 0.06);
}

.window-status span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--grass);
    box-shadow: 0 0 0 5px rgba(140, 207, 126, 0.2);
}

.chat-body {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 22px 20px 18px;
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(30, 185, 162, 0.14),
            transparent 16rem
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(140, 207, 126, 0.14),
            transparent 13rem
        ),
        linear-gradient(180deg, #f7fcfb, #ffffff 68%);
}

body[data-theme="dark"] .chat-body {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.13),
            transparent 18rem
        ),
        radial-gradient(
            circle at 96% 18%,
            rgba(140, 207, 126, 0.07),
            transparent 14rem
        ),
        linear-gradient(180deg, #0b1210, #07100e);
}

body[data-theme="dark"] .chat-avatar {
    border-color: rgba(198, 247, 238, 0.12);
    background: rgba(30, 185, 162, 0.1);
    color: #b9fff3;
}

.chat-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.chat-line.user-line {
    justify-content: flex-end;
}

.chat-avatar {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(30, 185, 162, 0.14), rgba(140, 207, 126, 0.14));
    color: var(--brand-dark);
    font-size: 10px;
    font-weight: 900;
}

.chat-bubble {
    position: relative;
    width: fit-content;
    max-width: 84%;
    margin: 0;
    border-radius: 20px;
    padding: 12px 15px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 12px 24px rgba(16, 37, 33, 0.08);
}

.chat-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 14px;
    height: 14px;
}

.chat-bubble.user,
.chat-bubble.from-client {
    justify-self: end;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
    border-bottom-right-radius: 6px;
}

.chat-bubble.user::after,
.chat-bubble.from-client::after {
    right: -7px;
    border-bottom-left-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.chat-bubble.ai,
.chat-bubble.from-ai {
    justify-self: start;
    border: 1px solid rgba(30, 185, 162, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-dark);
    border-bottom-left-radius: 6px;
}

.chat-bubble.ai::after,
.chat-bubble.from-ai::after {
    left: -7px;
    border-bottom-right-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

body[data-theme="dark"] .chat-bubble.ai,
body[data-theme="dark"] .chat-bubble.from-ai {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(198, 247, 238, 0.07);
    color: rgba(238, 248, 245, 0.92);
}

body[data-theme="dark"] .chat-bubble.ai::after,
body[data-theme="dark"] .chat-bubble.from-ai::after {
    background: rgba(198, 247, 238, 0.07);
}

.chat-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 16px 16px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 245, 0.86));
    padding: 13px 16px 13px 18px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.chat-input svg {
    width: 18px;
    height: 18px;
    color: var(--brand);
}

.chat-checklist {
    position: relative;
    display: grid;
    gap: 12px;
    width: min(100%, 420px);
    margin-left: 40px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(238, 248, 236, 0.96), rgba(234, 248, 245, 0.92)),
        #ffffff;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(16, 37, 33, 0.08);
}

.chat-checklist.compact {
    width: 100%;
    margin-left: 0;
    padding: 13px;
}

.chat-checklist-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-checklist-head > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: rgba(30, 185, 162, 0.12);
    color: var(--brand-strong);
}

.chat-checklist-head svg {
    width: 19px;
    height: 19px;
}

.chat-checklist-head strong,
.chat-checklist-head small {
    display: block;
}

.chat-checklist-head strong {
    color: var(--brand-dark);
    font-size: 13px;
    line-height: 1.15;
}

.chat-checklist-head small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.chat-checklist-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.chat-checklist-items p {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    margin: 0;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    padding: 8px 9px;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
}

.chat-checklist-items p span {
    display: inline-grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    font-size: 10px;
    line-height: 1;
}

.chat-checklist-items .is-complete span {
    background: rgba(30, 185, 162, 0.16);
    color: var(--brand-strong);
}

.chat-checklist-items .is-missing {
    border-color: rgba(59, 130, 196, 0.2);
    color: #285f82;
}

.chat-checklist-items .is-missing span {
    background: rgba(59, 130, 196, 0.12);
    color: #2d6f99;
}

body[data-theme="dark"] .chat-checklist {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.12), rgba(140, 207, 126, 0.07)),
        rgba(8, 18, 16, 0.72);
}

body[data-theme="dark"] .chat-checklist-head strong {
    color: rgba(214, 255, 247, 0.92);
}

body[data-theme="dark"] .chat-checklist-head small {
    color: rgba(214, 229, 225, 0.66);
}

body[data-theme="dark"] .chat-checklist-items p {
    border-color: rgba(198, 247, 238, 0.08);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 255, 247, 0.9);
}

body[data-theme="dark"] .chat-checklist-items .is-missing {
    border-color: rgba(139, 199, 255, 0.16);
    color: #b8dcff;
}

@keyframes chatWindowFloat {
    0%,
    100% {
        transform: rotate(-0.8deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-0.4deg) translate3d(0, -8px, 0);
    }
}

.document-card {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: #ffffff;
}

body[data-theme="dark"] .document-card {
    background: rgba(255, 255, 255, 0.06);
}

.line {
    height: 8px;
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.16);
}

.line.short {
    width: 58%;
}

.section-head {
    max-width: 880px;
    margin-bottom: 36px;
}

.section-head.centered {
    margin-inline: auto;
    text-align: center;
}

.section-head.centered .eyebrow {
    justify-content: center;
}

.section-head.centered .lead {
    margin-inline: auto;
}

.feature,
.metric,
.story-card,
.intake-panel,
.form-panel,
.mini-card {
    padding: 26px;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--brand-strong);
}

.feature-icon svg {
    width: 25px;
    height: 25px;
}

.metric strong {
    display: block;
    color: var(--brand-dark);
    font-size: 31px;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 700;
}

.how-it-works {
    overflow: visible;
}

.how-it-works-inner {
    display: grid;
    gap: 24px;
}

.intake-flow {
    display: grid;
    gap: 34px;
    max-width: 1120px;
    margin-inline: auto;
}

.intake-flow-step {
    position: relative;
    overflow: visible;
    display: grid;
    gap: 18px;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.intake-flow-step::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: -28px;
    width: 1px;
    background: linear-gradient(180deg, rgba(30, 185, 162, 0.24), rgba(30, 185, 162, 0));
    pointer-events: none;
}

.intake-flow-step:last-child::before {
    display: none;
}

.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition:
        opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.intake-flow-step.is-featured {
    background: transparent;
}

.intake-flow-copy {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 4px 0 4px 54px;
}

.intake-flow-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background:
        radial-gradient(circle at 34% 30%, rgba(140, 207, 126, 0.28), transparent 45%),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(16, 37, 33, 0.08);
}

.intake-flow-copy h3,
.intake-flow-copy p {
    margin-bottom: 0;
}

.process-number,
.process-label {
    width: fit-content;
    max-width: 100%;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.chat-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: 30px;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, rgba(30, 185, 162, 0.62), rgba(140, 207, 126, 0.36), rgba(59, 130, 196, 0.28)) border-box;
    box-shadow:
        0 24px 58px rgba(16, 37, 33, 0.13),
        0 0 0 8px rgba(30, 185, 162, 0.035);
}

body[data-theme="dark"] .chat-preview {
    border-color: rgba(198, 247, 238, 0.12);
    background:
        linear-gradient(#0b1210, #0b1210) padding-box,
        linear-gradient(135deg, rgba(30, 185, 162, 0.5), rgba(140, 207, 126, 0.24), rgba(59, 130, 196, 0.22)) border-box;
    box-shadow:
        0 24px 56px rgba(0, 0, 0, 0.32),
        0 0 0 8px rgba(30, 185, 162, 0.035);
}

body[data-theme="dark"] .intake-flow-step {
    background: transparent;
    box-shadow: none;
}

body[data-theme="dark"] .intake-flow-step::before {
    background: linear-gradient(180deg, rgba(126, 231, 215, 0.24), rgba(126, 231, 215, 0));
}

body[data-theme="dark"] .intake-flow-step.is-featured {
    background: transparent;
}

body[data-theme="dark"] .intake-flow-copy::before {
    border-color: rgba(198, 247, 238, 0.12);
    background:
        radial-gradient(circle at 34% 30%, rgba(30, 185, 162, 0.26), transparent 48%),
        rgba(198, 247, 238, 0.055);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.chat-preview-header {
    position: relative;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(11, 76, 67, 0.98), rgba(30, 185, 162, 0.96) 58%, rgba(140, 207, 126, 0.92)),
        var(--brand);
    color: #ffffff;
}

.chat-preview-header .window-title {
    flex: 1;
}

.chat-preview-header .window-status {
    flex: 0 0 auto;
}

.chat-preview-body {
    position: relative;
    display: grid;
    gap: 16px;
    min-height: 310px;
    align-content: start;
    padding: 20px;
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(30, 185, 162, 0.14),
            transparent 16rem
        ),
        radial-gradient(
            circle at 92% 18%,
            rgba(140, 207, 126, 0.14),
            transparent 13rem
        ),
        linear-gradient(180deg, #f7fcfb, #ffffff 68%);
}

body[data-theme="dark"] .chat-preview-body {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.13),
            transparent 18rem
        ),
        radial-gradient(
            circle at 96% 18%,
            rgba(140, 207, 126, 0.07),
            transparent 14rem
        ),
        linear-gradient(180deg, #0b1210, #07100e);
}

.chat-preview-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.chat-preview-line .chat-bubble {
    max-width: min(calc(100% - 36px), 340px);
}

.chat-preview-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 16px 16px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(234, 248, 245, 0.74));
    padding: 13px 16px 13px 18px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.chat-preview-input span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-preview-input span:last-child {
    color: var(--brand);
    font-size: 22px;
    line-height: 1;
}

body[data-theme="dark"] .chat-preview-input,
body[data-theme="dark"] .chat-input {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 255, 247, 0.9);
}

.chat-date {
    justify-self: center;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    padding: 6px 16px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 700;
}

body[data-theme="dark"] .chat-date {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(198, 247, 238, 0.07);
    color: rgba(214, 255, 247, 0.88);
}

body[data-theme="dark"] .chat-bubble.from-ai {
    color: #eef8f5;
}

.centered-metrics {
    max-width: 930px;
    width: 100%;
    margin: 10px auto 0;
}

.single-column {
    grid-template-columns: 1fr;
}

.form-grid-spaced {
    margin-top: 16px;
}

.soft-band {
    border-block: 0;
    background: transparent;
}

body[data-theme="dark"] .soft-band {
    background: transparent;
}

.workflow-section {
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: -150px 0 -150px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 18%, rgba(30, 185, 162, 0.07), transparent 24rem),
        radial-gradient(circle at 86% 20%, rgba(59, 130, 196, 0.045), transparent 22rem);
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

body[data-theme="dark"] .workflow-section::before {
    background:
        radial-gradient(circle at 18% 14%, rgba(30, 185, 162, 0.1), transparent 23rem),
        radial-gradient(circle at 86% 24%, rgba(59, 130, 196, 0.065), transparent 22rem);
    opacity: 0.68;
}

.workflow-section .container {
    position: relative;
    z-index: 1;
}

.workflow-section .section-head {
    max-width: 860px;
    margin-bottom: 38px;
}

.workflow-grid {
    position: relative;
    max-width: 1080px;
    margin-inline: auto;
    gap: 0;
}

.workflow-grid::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    width: auto;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 185, 162, 0.28),
        rgba(59, 130, 196, 0.22),
        transparent
    );
    display: none;
}

.workflow-grid .feature {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 28px 64px;
    box-shadow: none;
}

.workflow-grid .feature::after {
    content: "";
    position: absolute;
    left: 64px;
    right: 0;
    bottom: 14px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(30, 185, 162, 0.26),
        rgba(30, 185, 162, 0)
    );
}

.workflow-grid .feature:last-child {
    padding-bottom: 0;
}

.workflow-grid .feature:last-child::after {
    display: none;
}

body[data-theme="dark"] .workflow-grid .feature {
    box-shadow: none;
}

.workflow-grid .feature-icon {
    position: absolute;
    left: 0;
    top: 2px;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 1px solid rgba(30, 185, 162, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 245, 0.92));
    box-shadow: 0 12px 26px rgba(16, 37, 33, 0.08);
}

body[data-theme="dark"] .workflow-grid .feature-icon {
    border-color: rgba(216, 242, 238, 0.12);
    background:
        linear-gradient(180deg, rgba(18, 38, 35, 0.96), rgba(14, 23, 21, 0.96));
}

.workflow-grid .feature h3 {
    margin-bottom: 8px;
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.18;
}

.workflow-grid .feature p {
    max-width: 31rem;
}

.workflow-showcase {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 1120px;
    margin-inline: auto;
}

.workflow-persona {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 185, 162, 0.16);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 236, 0.76));
    padding: 24px;
    box-shadow: 0 22px 56px rgba(16, 37, 33, 0.08);
}

.workflow-persona::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 999px;
}

.workflow-persona.is-team {
    background:
        linear-gradient(135deg, rgba(234, 248, 245, 0.92), rgba(255, 255, 255, 0.96));
}

body[data-theme="dark"] .workflow-persona,
body[data-theme="dark"] .workflow-persona.is-team {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(135deg, rgba(14, 27, 24, 0.82), rgba(8, 18, 16, 0.7));
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.26);
}

body[data-theme="dark"] .workflow-persona::after {
    border-color: rgba(198, 247, 238, 0.08);
}

.workflow-persona-label {
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.08);
    padding: 7px 11px;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.workflow-persona-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 22px 0 18px;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(140, 207, 126, 0.22), rgba(30, 185, 162, 0.14));
    color: var(--brand-strong);
}

body[data-theme="dark"] .workflow-persona-icon {
    background: linear-gradient(135deg, rgba(30, 185, 162, 0.16), rgba(140, 207, 126, 0.09));
    color: #7ee7d7;
}

.workflow-persona-icon svg {
    width: 30px;
    height: 30px;
}

.workflow-persona h3 {
    max-width: 430px;
    margin-bottom: 10px;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.12;
}

.workflow-persona p {
    max-width: 520px;
}

.workflow-mini-list {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.workflow-mini-list span {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    padding: 9px 11px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

body[data-theme="dark"] .workflow-mini-list span {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 255, 247, 0.88);
}

.workflow-mini-list b {
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.13);
    color: var(--brand-strong);
    font-size: 11px;
}

.workflow-bridge {
    display: grid;
    place-items: center;
    gap: 8px;
    color: var(--brand-strong);
    text-align: center;
}

.workflow-bridge span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--grass);
    box-shadow: 0 0 0 8px rgba(140, 207, 126, 0.16);
}

.workflow-bridge svg {
    display: none;
}

.workflow-bridge strong {
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body[data-theme="dark"] .workflow-bridge strong {
    color: rgba(214, 255, 247, 0.9);
}

body[data-theme="dark"] .workflow-bridge svg {
    color: rgba(126, 231, 215, 0.76);
}

.sketch-wrap {
    min-height: 340px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 24px;
}

.brand-sketch {
    position: relative;
    color: var(--brand-strong);
}

.brand-sketch svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.sketch-main,
.sketch-accent,
.sketch-dash {
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sketch-main {
    stroke: currentColor;
    stroke-width: 3;
}

.sketch-accent {
    stroke: var(--grass);
    stroke-width: 4;
}

.sketch-dash {
    stroke: rgba(59, 130, 196, 0.56);
    stroke-width: 2.5;
    stroke-dasharray: 7 9;
}

.sketch-soft-fill {
    fill: rgba(30, 185, 162, 0.09);
}

body[data-theme="dark"] .sketch-soft-fill {
    fill: rgba(30, 185, 162, 0.13);
}

.brand-sketch-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 520px;
    margin-top: 26px;
}

.brand-sketch-row .brand-sketch,
.contact-hero-sketch,
.contact-panel-sketch {
    border-radius: var(--radius);
    padding: 12px;
}

.contact-hero-sketch {
    width: min(100%, 420px);
    margin-top: 26px;
}

.contact-panel-sketch {
    width: min(100%, 340px);
    margin-top: 22px;
    padding: 10px;
}

.about-card-sketch {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-strong);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-card-sketch svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body[data-theme="dark"] .about-card-sketch {
    background: rgba(14, 19, 18, 0.86);
}

.contact-hero {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 66px 0 46px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: -130px 0 -140px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 10%, rgba(30, 185, 162, 0.16), transparent 26rem),
        radial-gradient(circle at 88% 12%, rgba(140, 207, 126, 0.12), transparent 24rem),
        linear-gradient(180deg, rgba(30, 185, 162, 0.05), transparent 86%);
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
}

body[data-theme="dark"] .contact-hero::before {
    background:
        radial-gradient(circle at 12% 8%, rgba(30, 185, 162, 0.16), transparent 26rem),
        radial-gradient(circle at 88% 10%, rgba(59, 130, 196, 0.09), transparent 22rem),
        linear-gradient(180deg, rgba(5, 8, 7, 0.56), rgba(7, 16, 14, 0.28));
}

.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
    align-items: center;
}

.contact-hero-copy h1 {
    max-width: 840px;
    font-size: clamp(34px, 9vw, 62px);
}

.contact-hero-copy .eyebrow,
.contact-hero-copy h1 {
    color: var(--ink);
}

body[data-theme="dark"] .contact-hero-copy .eyebrow,
body[data-theme="dark"] .contact-hero-copy h1 {
    color: #ffffff;
}

.contact-hero-copy .eyebrow::before {
    background: var(--grass);
    box-shadow: 0 0 0 7px rgba(140, 207, 126, 0.2);
}

.contact-hero-copy .lead {
    color: rgba(92, 112, 106, 0.92);
}

body[data-theme="dark"] .contact-hero-copy .lead {
    color: rgba(255, 255, 255, 0.82);
}

.contact-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

.contact-hero-actions .call-number {
    width: fit-content;
    border: 1px solid rgba(30, 185, 162, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-theme="dark"] .contact-hero-actions .call-number {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
}

.contact-status-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 245, 0.86));
    box-shadow: 0 28px 74px rgba(5, 20, 18, 0.18);
}

.contact-status-card::after {
    content: none;
}

body[data-theme="dark"] .contact-status-card {
    border-color: rgba(198, 247, 238, 0.11);
    background:
        linear-gradient(145deg, rgba(14, 27, 24, 0.86), rgba(8, 18, 16, 0.76));
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .contact-status-card::after {
    content: none;
}

body[data-theme="dark"] .contact-status-media {
    border: 1px solid rgba(198, 247, 238, 0.08);
}

body[data-theme="dark"] .contact-status-badge {
    border-color: rgba(198, 247, 238, 0.12);
    background: rgba(30, 185, 162, 0.11);
    color: #7ee7d7;
}

body[data-theme="dark"] .contact-status-top p,
body[data-theme="dark"] .contact-status-steps small,
body[data-theme="dark"] .contact-status-note p {
    color: rgba(214, 229, 225, 0.7);
}

.contact-status-media {
    position: relative;
    overflow: hidden;
    margin: 14px 14px 0;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
}

.contact-status-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 18, 0.04), rgba(5, 20, 18, 0.32));
}

.contact-status-media img,
.contact-intake-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-status-media img {
    object-position: center 34%;
}

.contact-status-top {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 24px 24px 18px;
}

.contact-status-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.1);
    padding: 7px 10px;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-status-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand);
}

.contact-status-top strong {
    color: var(--ink);
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.08;
}

.contact-status-top p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.contact-status-steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 4px 24px 18px;
}

.contact-status-steps div {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    padding: 13px;
}

body[data-theme="dark"] .contact-status-steps div {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(198, 247, 238, 0.055);
}

.contact-status-steps p {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.2;
}

.contact-status-steps small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-step-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: 16px;
    background: var(--surface-soft);
    color: var(--brand-strong);
}

body[data-theme="dark"] .contact-step-icon,
body[data-theme="dark"] .contact-note-icon {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(30, 185, 162, 0.1);
    color: #7ee7d7;
}

.contact-step-icon svg {
    width: 20px;
    height: 20px;
}

.contact-status-note {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 12px;
    margin: 0 24px 24px;
    border: 1px solid rgba(30, 185, 162, 0.18);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(30, 185, 162, 0.12), rgba(140, 207, 126, 0.1));
    padding: 14px;
}

body[data-theme="dark"] .contact-status-note {
    border-color: rgba(198, 247, 238, 0.1);
    background: linear-gradient(135deg, rgba(30, 185, 162, 0.1), rgba(59, 130, 196, 0.06));
}

.contact-note-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: rgba(30, 185, 162, 0.11);
    color: var(--brand-strong);
}

.contact-note-icon svg {
    width: 19px;
    height: 19px;
}

.contact-status-note p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-form-section {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 44px 0 86px;
    background: transparent;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    inset: -120px 0 -140px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 0%, rgba(30, 185, 162, 0.055), transparent 24rem),
        radial-gradient(circle at 90% 52%, rgba(59, 130, 196, 0.035), transparent 22rem);
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

body[data-theme="dark"] .contact-form-section {
    background: transparent;
}

body[data-theme="dark"] .contact-form-section::before {
    background:
        radial-gradient(circle at 16% 0%, rgba(30, 185, 162, 0.075), transparent 24rem),
        radial-gradient(circle at 90% 52%, rgba(59, 130, 196, 0.055), transparent 22rem);
}

.contact-intake-panel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(11, 76, 67, 0.96), rgba(17, 134, 117, 0.88));
    color: #ffffff;
}

body[data-theme="dark"] .contact-intake-panel {
    border-color: rgba(198, 247, 238, 0.11);
    background:
        radial-gradient(circle at 92% 0%, rgba(140, 207, 126, 0.11), transparent 18rem),
        linear-gradient(145deg, rgba(14, 44, 39, 0.9), rgba(8, 18, 16, 0.86));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.contact-intake-panel::after {
    content: none;
}

.contact-intake-panel > * {
    position: relative;
    z-index: 1;
}

.contact-intake-panel .eyebrow,
.contact-intake-panel h2,
.contact-intake-panel .muted,
.contact-intake-panel .intake-list li {
    color: #ffffff;
}

.contact-intake-panel .muted,
.contact-intake-panel .intake-list li {
    color: rgba(255, 255, 255, 0.78);
}

.contact-intake-panel .check-icon {
    background: rgba(140, 207, 126, 0.22);
    color: #ffffff;
}

.contact-intake-image {
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    aspect-ratio: 16 / 10;
}

.contact-mini-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.contact-mini-metrics div {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    padding: 14px;
}

body[data-theme="dark"] .contact-mini-metrics div {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(198, 247, 238, 0.055);
}

.contact-mini-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.contact-mini-metrics span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.contact-form-panel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 251, 0.94));
}

body[data-theme="dark"] .contact-form-panel {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(180deg, rgba(14, 27, 24, 0.82), rgba(8, 18, 16, 0.72));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.contact-form-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.09), transparent 32%),
        linear-gradient(315deg, rgba(140, 207, 126, 0.09), transparent 34%);
}

body[data-theme="dark"] .contact-form-panel::before {
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.09), transparent 32%),
        linear-gradient(315deg, rgba(59, 130, 196, 0.07), transparent 34%);
}

.form-panel-head {
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
}

.form-panel-head h2 {
    margin-bottom: 0;
    font-size: clamp(27px, 6vw, 38px);
}

.about-redesign {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 72px 0 58px;
    background: transparent;
}

.about-redesign::before {
    content: "";
    position: absolute;
    inset: -130px 0 -140px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 4%, rgba(30, 185, 162, 0.08), transparent 22rem),
        radial-gradient(circle at 92% 14%, rgba(140, 207, 126, 0.1), transparent 24rem);
    mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

body[data-theme="dark"] .about-redesign::before {
    background:
        radial-gradient(circle at 12% 8%, rgba(30, 185, 162, 0.18), transparent 24rem),
        radial-gradient(circle at 88% 6%, rgba(140, 207, 126, 0.1), transparent 23rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 45%);
}

.about-redesign::after,
.about-story-section::after {
    content: none;
}

body[data-theme="dark"] .about-redesign {
    background: transparent;
}

body[data-theme="dark"] .about-redesign::after,
body[data-theme="dark"] .about-story-section::after {
    content: none;
}

.about-redesign-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 42px;
    align-items: center;
}

.about-redesign-copy h1 {
    max-width: 860px;
    font-size: clamp(34px, 8vw, 56px);
}

.about-redesign-copy .lead {
    max-width: 740px;
    color: rgba(92, 112, 106, 0.9);
}

body[data-theme="dark"] .about-redesign-copy .lead {
    color: rgba(214, 229, 225, 0.72);
}

.about-redesign-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.about-redesign-media {
    position: relative;
    overflow: visible;
    min-height: 360px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}

.about-redesign-media > img {
    display: block;
    width: 100%;
    min-height: 360px;
    height: 100%;
    border: 1px solid rgba(30, 185, 162, 0.16);
    border-radius: 34px;
    object-fit: cover;
    object-position: center 34%;
    box-shadow:
        0 28px 70px rgba(16, 37, 33, 0.12),
        0 0 0 10px rgba(255, 255, 255, 0.46);
}

.about-redesign-media::after {
    content: "";
    position: absolute;
    inset: auto -16px -18px 42px;
    z-index: -1;
    height: 72%;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.14), rgba(140, 207, 126, 0.12));
    pointer-events: none;
}

body[data-theme="dark"] .about-redesign-media > img {
    border-color: rgba(198, 247, 238, 0.12);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.38),
        0 0 0 10px rgba(198, 247, 238, 0.035);
}

body[data-theme="dark"] .about-redesign-media::after {
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.2), rgba(59, 130, 196, 0.1));
}

.about-floating-image {
    display: none;
}

.about-media-panel {
    position: absolute;
    left: 22px;
    right: auto;
    bottom: 22px;
    z-index: 1;
    display: grid;
    gap: 4px;
    width: min(calc(100% - 44px), 330px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(7, 49, 44, 0.92), rgba(17, 134, 117, 0.82));
    padding: 16px;
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.about-signal-strip {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.about-signal-strip article {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 7px;
    align-items: center;
    min-height: 100%;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 251, 0.72));
    padding: 18px 18px 18px 16px;
    box-shadow: 0 16px 42px rgba(16, 37, 33, 0.06);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.about-signal-strip article::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(30, 185, 162, 0.055), transparent 46%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.about-signal-strip article:hover {
    border-color: rgba(30, 185, 162, 0.24);
    box-shadow: 0 20px 48px rgba(16, 37, 33, 0.09);
    transform: translateY(-2px);
}

.about-signal-strip article:hover::after {
    opacity: 1;
}

body[data-theme="dark"] .about-signal-strip article {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(135deg, rgba(14, 27, 24, 0.82), rgba(8, 18, 16, 0.68));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .about-signal-strip article:hover {
    border-color: rgba(126, 231, 215, 0.24);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.about-signal-icon {
    display: grid;
    place-items: center;
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.13), rgba(140, 207, 126, 0.1));
    color: var(--brand);
}

body[data-theme="dark"] .about-signal-icon {
    border-color: rgba(198, 247, 238, 0.08);
    background:
        linear-gradient(135deg, rgba(30, 185, 162, 0.16), rgba(140, 207, 126, 0.1));
    color: #7ee7d7;
}

.about-signal-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-signal-strip strong,
.about-signal-strip span {
    position: relative;
    z-index: 1;
    display: block;
}

.about-signal-strip strong {
    color: var(--brand-dark);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.12;
}

.about-signal-strip span {
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.48;
}

body[data-theme="dark"] .about-signal-strip span {
    color: rgba(214, 229, 225, 0.72);
}

.about-media-panel span,
.about-media-panel small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.about-media-panel strong {
    color: #ffffff;
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.1;
}

.about-story-section,
.about-compliance-section {
    padding: 58px 0;
}

.about-compliance-section {
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.about-compliance-section::before {
    content: "";
    position: absolute;
    inset: -120px 0 -150px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 12%, rgba(30, 185, 162, 0.07), transparent 20rem),
        radial-gradient(circle at 82% 88%, rgba(140, 207, 126, 0.08), transparent 22rem);
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

body[data-theme="dark"] .about-compliance-section::before {
    background:
        radial-gradient(circle at 12% 4%, rgba(30, 185, 162, 0.12), transparent 22rem),
        radial-gradient(circle at 82% 80%, rgba(59, 130, 196, 0.08), transparent 20rem);
}

.about-story-section {
    position: relative;
    isolation: isolate;
    overflow: visible;
    background: transparent;
}

.about-story-section::before {
    content: "";
    position: absolute;
    inset: -130px 0 -150px;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 4%, rgba(30, 185, 162, 0.055), transparent 18rem),
        radial-gradient(circle at 92% 20%, rgba(59, 130, 196, 0.035), transparent 21rem);
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

body[data-theme="dark"] .about-story-section {
    background: transparent;
}

body[data-theme="dark"] .about-story-section::before {
    background:
        radial-gradient(circle at 14% 0%, rgba(30, 185, 162, 0.1), transparent 23rem),
        radial-gradient(circle at 92% 20%, rgba(59, 130, 196, 0.07), transparent 21rem);
}

.about-story-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.about-story-intro {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 22px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    padding: 24px;
    box-shadow: 0 14px 42px rgba(16, 37, 33, 0.055);
}

.about-story-intro::after {
    content: "";
    position: absolute;
    right: -96px;
    top: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.035);
    opacity: 1;
    pointer-events: none;
}

body[data-theme="dark"] .about-story-intro {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(135deg, rgba(14, 27, 24, 0.82), rgba(8, 18, 16, 0.72));
    box-shadow: 0 22px 66px rgba(0, 0, 0, 0.24);
}

body[data-theme="dark"] .about-story-intro::after {
    border-color: rgba(198, 247, 238, 0.08);
    background: rgba(30, 185, 162, 0.06);
}

.about-story-intro > * {
    position: relative;
    z-index: 1;
}

.about-story-intro h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(29px, 8vw, 48px);
    color: var(--ink);
}

.about-story-summary {
    display: grid;
    gap: 16px;
}

.about-story-intro .lead {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(92, 112, 106, 0.94);
    font-size: clamp(16px, 4.5vw, 20px);
    line-height: 1.65;
}

body[data-theme="dark"] .about-story-intro .lead {
    color: rgba(214, 229, 225, 0.74);
}

.about-story-intro .eyebrow {
    color: var(--brand-strong);
}

.about-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-story-tags span {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(30, 185, 162, 0.14);
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.07);
    padding: 8px 11px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

body[data-theme="dark"] .about-story-tags span {
    border-color: rgba(198, 247, 238, 0.11);
    background: rgba(30, 185, 162, 0.09);
    color: rgba(214, 255, 247, 0.9);
}

.about-story-grid {
    position: relative;
    display: grid;
    gap: 16px;
}

.about-story-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    padding: 14px;
    box-shadow: 0 14px 42px rgba(16, 37, 33, 0.06);
}

.about-story-card::before {
    content: "";
    position: absolute;
    inset: 14px 14px auto;
    z-index: 2;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(30, 185, 162, 0.7), rgba(140, 207, 126, 0.55), rgba(59, 130, 196, 0.38));
}

body[data-theme="dark"] .about-story-card {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(180deg, rgba(14, 27, 24, 0.8), rgba(8, 18, 16, 0.7));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

body[data-theme="dark"] .about-story-card::before {
    background: linear-gradient(90deg, rgba(30, 185, 162, 0.72), rgba(140, 207, 126, 0.42), rgba(139, 199, 255, 0.34));
}

.about-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
    border: 1px solid rgba(30, 185, 162, 0.1);
    border-radius: 20px;
    background: var(--surface-soft);
}

.about-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 18, 0), rgba(5, 20, 18, 0.14));
    pointer-events: none;
}

.about-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body[data-theme="dark"] .about-card-media {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(30, 185, 162, 0.06);
}

.about-story-card:hover .about-card-media img {
    transform: scale(1.04);
}

.about-card-body {
    display: grid;
    gap: 9px;
    padding: 18px 4px 4px;
}

.about-card-kicker {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(30, 185, 162, 0.075);
    padding: 7px 10px;
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
}

.about-story-card h3 {
    margin-bottom: 0;
    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.05;
}

.about-story-card .muted {
    margin-bottom: 0;
    line-height: 1.55;
}

.about-card-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 3;
    border: 1px solid rgba(30, 185, 162, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-strong);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(16, 37, 33, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body[data-theme="dark"] .about-card-number {
    border-color: rgba(198, 247, 238, 0.15);
    background: rgba(8, 18, 16, 0.9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

body[data-theme="dark"] .about-card-kicker {
    background: rgba(30, 185, 162, 0.11);
    color: #7ee7d7;
}

.about-compliance-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    align-items: start;
}

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

.about-compliance-item {
    display: flex;
    gap: 14px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    padding: 20px;
    box-shadow: 0 12px 34px rgba(16, 37, 33, 0.055);
}

body[data-theme="dark"] .about-compliance-item {
    border-color: rgba(198, 247, 238, 0.1);
    background:
        linear-gradient(180deg, rgba(14, 27, 24, 0.78), rgba(8, 18, 16, 0.68));
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.about-compliance-item h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.about-compliance-item p {
    margin-bottom: 0;
}

.page-hero {
    padding: 70px 0 36px;
}

.story-card p:last-child,
.feature p:last-child,
.intake-panel p:last-child,
.mini-card p:last-child {
    margin-bottom: 0;
}

.contact-grid {
    align-items: start;
}

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

.intake-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface-solid);
    padding: 12px 13px;
    color: var(--ink);
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

body[data-theme="dark"] .field input,
body[data-theme="dark"] .field select,
body[data-theme="dark"] .field textarea {
    border-color: rgba(198, 247, 238, 0.1);
    background: rgba(5, 12, 11, 0.72);
    color: rgba(238, 248, 245, 0.94);
}

body[data-theme="dark"] .field input::placeholder,
body[data-theme="dark"] .field textarea::placeholder {
    color: rgba(214, 229, 225, 0.45);
}

.contact-form-panel form {
    position: relative;
    z-index: 1;
}

.field textarea {
    min-height: 124px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(30, 185, 162, 0.72);
    box-shadow: 0 0 0 4px rgba(30, 185, 162, 0.14);
}

body[data-theme="dark"] .field input:focus,
body[data-theme="dark"] .field select:focus,
body[data-theme="dark"] .field textarea:focus {
    border-color: rgba(126, 231, 215, 0.58);
    box-shadow: 0 0 0 4px rgba(30, 185, 162, 0.16);
}

.form-error {
    margin-top: 7px;
    color: var(--danger);
    font-size: 13px;
    font-weight: 800;
}

.notice {
    margin-bottom: 18px;
    border: 1px solid rgba(30, 185, 162, 0.24);
    border-radius: var(--radius);
    background: var(--surface-soft);
    padding: 13px 14px;
    color: var(--brand-dark);
    font-weight: 800;
}

body[data-theme="dark"] .notice {
    border-color: rgba(198, 247, 238, 0.12);
    background: rgba(30, 185, 162, 0.1);
    color: rgba(214, 255, 247, 0.92);
}

.progress-wrapper {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 24px;
    box-shadow: 0 14px 44px rgba(16, 37, 33, 0.08);
}

.progress-charts + .progress-charts {
    margin-top: 18px;
}

.progress-charts .heading {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
}

.progress {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-soft);
}

.progress-bar {
    position: relative;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brand), var(--grass));
    transition: width 0.7s ease;
}

.percent-label {
    position: absolute;
    right: 0;
    bottom: calc(100% + 7px);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
}

.site-footer {
    position: relative;
    isolation: isolate;
    overflow: visible;
    border-top: 0;
    background: transparent;
    padding: 64px 0 30px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -140px 0 0;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 20%, #000 100%);
}

body[data-theme="dark"] .site-footer {
    background: transparent;
}

body[data-theme="dark"] .site-footer::before {
    background:
        radial-gradient(
            circle at 12% 0%,
            rgba(30, 185, 162, 0.14),
            transparent 24rem
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(59, 130, 196, 0.07),
            transparent 22rem
        ),
        linear-gradient(180deg, transparent, rgba(7, 16, 14, 0.52) 34%, rgba(4, 8, 7, 0.82));
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(30, 185, 162, 0.2);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(11, 76, 67, 0.96), rgba(30, 185, 162, 0.88) 58%, rgba(140, 207, 126, 0.72));
    padding: 24px;
    box-shadow: 0 28px 72px rgba(16, 37, 33, 0.14);
}

body[data-theme="dark"] .footer-cta {
    border-color: rgba(198, 247, 238, 0.12);
    background:
        radial-gradient(circle at 92% 0%, rgba(140, 207, 126, 0.16), transparent 18rem),
        linear-gradient(135deg, rgba(10, 44, 39, 0.94), rgba(13, 96, 84, 0.78) 58%, rgba(18, 35, 32, 0.92));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.footer-cta::after {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

body[data-theme="dark"] .footer-cta::after {
    border-color: rgba(198, 247, 238, 0.13);
}

.footer-cta > * {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: clamp(26px, 4vw, 42px);
}

.footer-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-cta .eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.footer-cta .eyebrow::before {
    background: var(--grass);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

.footer-cta .button {
    background: #ffffff;
    color: var(--brand-dark);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 38px rgba(5, 20, 18, 0.16);
}

body[data-theme="dark"] .footer-cta .button {
    background: rgba(238, 248, 245, 0.94);
    color: #07312c;
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.footer-main {
    display: grid;
    gap: 30px;
    border-bottom: 1px solid rgba(30, 185, 162, 0.14);
    padding: 42px 0 30px;
}

body[data-theme="dark"] .footer-main {
    border-bottom-color: rgba(198, 247, 238, 0.1);
}

.footer-brand-block {
    max-width: 440px;
}

.footer-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.footer-columns {
    display: grid;
    gap: 26px;
}

.footer-columns > div {
    position: relative;
    min-width: 0;
}

.footer-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer-title::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--grass));
    box-shadow: 0 0 0 5px rgba(30, 185, 162, 0.1);
}

.footer-links {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

body[data-theme="dark"] .footer-note,
body[data-theme="dark"] .footer-links,
body[data-theme="dark"] .footer-bottom {
    color: rgba(214, 229, 225, 0.7);
}

.footer-links a {
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 7px 0;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-strong);
    transform: translateX(3px);
}

body[data-theme="dark"] .footer-links a:hover,
body[data-theme="dark"] .footer-bottom-links a:hover {
    color: #7ee7d7;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(30, 185, 162, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    padding: 9px 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

body[data-theme="dark"] .footer-contact {
    border-color: rgba(198, 247, 238, 0.09);
    background: rgba(198, 247, 238, 0.055);
    color: rgba(214, 229, 225, 0.74);
}

body[data-theme="dark"] .footer-contact:hover {
    border-color: rgba(126, 231, 215, 0.26);
    background: rgba(30, 185, 162, 0.1);
    color: #7ee7d7;
}

.footer-contact:hover {
    border-color: rgba(30, 185, 162, 0.26);
    color: var(--brand-strong);
    transform: translateY(-2px);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--brand);
    margin-top: 2px;
}

body[data-theme="dark"] .footer-contact svg {
    color: #7ee7d7;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 48px, 1280px);
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .contact-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .about-redesign-actions {
        flex-direction: row;
        align-items: center;
    }

    .brand-sketch-row {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    }

    .about-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-card:last-child {
        grid-column: 1 / -1;
    }

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

    .feature-grid,
    .story-grid,
    .mini-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 44px;
        max-width: 1080px;
    }

    .workflow-grid::before {
        display: block;
    }

    .workflow-grid .feature {
        min-height: 128px;
        padding: 0 0 0 68px;
    }

    .workflow-grid .feature::after {
        left: 68px;
        bottom: -17px;
    }

    .workflow-grid .feature:nth-last-child(-n + 2)::after {
        display: none;
    }

    .single-column {
        grid-template-columns: 1fr;
    }

    .form-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }

    body[data-theme="dark"] .nav-menu {
        background: transparent;
    }

    .nav-cta {
        display: inline-flex;
    }

    .nav-call {
        display: inline-flex;
        min-height: 46px;
        padding: 8px 14px 8px 8px;
        background: rgba(238, 248, 236, 0.7);
        box-shadow: none;
    }

    body[data-theme="dark"] .nav-call {
        border-color: rgba(198, 247, 238, 0.1);
        background: rgba(198, 247, 238, 0.055);
        color: rgba(214, 255, 247, 0.88);
    }

    .hero {
        padding: 64px 0;
    }

    .hero-grid,
    .split-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(430px, 0.78fr);
        align-items: center;
        gap: 78px;
    }

    .contact-hero {
        padding: 92px 0 58px;
    }

    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.62fr);
        gap: 72px;
    }

    .contact-status-card {
        transform: translateY(18px);
    }

    .contact-form-section {
        padding: 46px 0 92px;
    }

    .about-redesign {
        padding: 96px 0 84px;
    }

    .about-redesign-grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.8fr);
        gap: 82px;
    }

    .brand-sketch-row {
        max-width: 560px;
    }

    .about-redesign-media,
    .about-redesign-media > img {
        min-height: 560px;
    }

    .about-signal-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 880px;
    }

    .about-media-panel {
        left: 24px;
        right: 24px;
        bottom: 24px;
        padding: 20px;
    }

    .about-story-section,
    .about-compliance-section {
        padding: 92px 0;
    }

    .about-story-wrap {
        gap: 36px;
    }

    .about-story-intro {
        grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
        align-items: center;
        padding: 44px;
    }

    .about-story-summary {
        justify-items: start;
    }

    .about-story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 24px;
    }

    .about-story-grid::before {
        content: "";
        position: absolute;
        left: 10%;
        right: 10%;
        top: 49px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(30, 185, 162, 0.18), transparent);
        pointer-events: none;
    }

    .about-story-card {
        padding: 18px;
    }

    .about-card-media {
        aspect-ratio: 16 / 10.8;
    }

    .about-card-body {
        padding: 20px 6px 6px;
    }

    .about-story-card:last-child {
        grid-column: auto;
    }

    .about-compliance-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
        gap: 82px;
    }

    .contact-grid {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 42px;
    }

    .feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .workflow-section .section-head {
        margin-bottom: 46px;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 70px;
    }

    .workflow-grid .feature {
        min-height: 134px;
        padding-left: 76px;
    }

    .workflow-grid .feature-icon {
        width: 54px;
        height: 54px;
    }

    .workflow-grid .feature::after {
        left: 76px;
        bottom: -23px;
    }

    .workflow-showcase {
        grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
        align-items: stretch;
        gap: 24px;
    }

    .workflow-bridge {
        align-self: center;
    }

    .workflow-bridge svg {
        display: block;
        width: 86px;
        height: 26px;
    }

    .workflow-mini-list {
        grid-template-columns: 1fr;
    }

    .intake-flow {
        gap: 46px;
    }

    .intake-flow-step {
        grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.76fr);
        gap: 42px;
        padding: 0;
    }

    .intake-flow-step::before {
        left: calc(42% - 1px);
        top: calc(100% - 14px);
        bottom: auto;
        width: 2px;
        height: 50px;
    }

    .intake-flow-step:nth-child(even) {
        grid-template-columns: minmax(360px, 0.76fr) minmax(0, 0.84fr);
    }

    .intake-flow-step:nth-child(even) .intake-flow-copy {
        order: 2;
    }

    .intake-flow-step:nth-child(even) .chat-preview {
        order: 1;
    }

    .intake-flow-copy {
        padding: 10px 10px 10px 64px;
    }

    .intake-flow-step:nth-child(even) .intake-flow-copy::before {
        left: 0;
    }

    .chat-preview-body {
        min-height: 350px;
        padding: 20px;
    }

    .single-column {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        grid-template-columns: 1fr auto;
        padding: 30px;
    }

    .footer-main {
        grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
        align-items: start;
        gap: 64px;
    }

    .hero-grid .visual-stage {
        transform: translateX(18px);
    }
}

@media (min-width: 900px) and (max-width: 1240px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
        gap: 42px;
    }

    .hero-grid .visual-stage {
        transform: translateX(18px);
    }

    .orbit-chat {
        left: 10px;
    }

    .orbit-checklist {
        right: 0;
    }
}

@media (max-width: 899px) {
    .nav {
        min-height: 66px;
        gap: 10px;
    }

    .brand-logo {
        width: clamp(148px, 44vw, 190px);
    }

    .nav-actions {
        gap: 7px;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-toggle,
    .theme-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-toggle svg,
    .theme-toggle svg {
        width: 19px;
        height: 19px;
    }

    .nav-menu {
        top: 66px;
        left: 12px;
        right: 12px;
        padding: 8px;
    }
}

@media (max-width: 520px) {
    .nav {
        min-height: 64px;
    }

    .nav-menu {
        top: 64px;
    }

    .brand-logo {
        width: clamp(138px, 43vw, 172px);
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-toggle,
    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .button {
        width: 100%;
        padding-inline: 12px;
    }

    .contact-hero {
        padding-top: 46px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(31px, 9vw, 40px);
    }

    .contact-form-section {
        padding: 28px 0 58px;
    }

    .contact-mini-metrics {
        grid-template-columns: 1fr;
    }

    .brand-sketch-row {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-top: 20px;
    }

    .brand-sketch-row .brand-sketch-document {
        display: none;
    }

    .contact-hero-sketch {
        width: min(100%, 310px);
        margin-top: 20px;
        padding: 10px;
    }

    .contact-panel-sketch {
        width: min(100%, 280px);
        margin-top: 18px;
    }

    .about-card-sketch {
        width: 46px;
        height: 46px;
    }

    .about-card-sketch svg {
        width: 29px;
        height: 29px;
    }

    .contact-status-top,
    .contact-status-steps {
        padding: 18px;
    }

    .contact-status-note {
        margin: 0 18px 18px;
    }

    .about-redesign {
        padding-top: 46px;
    }

    .about-redesign-copy h1 {
        font-size: clamp(31px, 9vw, 40px);
    }

    .about-redesign-media,
    .about-redesign-media > img {
        min-height: 330px;
    }

    .about-floating-image {
        display: none;
    }

    .about-media-panel {
        padding: 14px;
    }

    .about-signal-strip {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .contact-status-media,
    .contact-intake-image {
        border-radius: 20px;
    }

    .about-story-section,
    .about-compliance-section {
        padding: 46px 0;
    }

    .about-story-intro {
        padding: 20px;
    }

    .about-story-card,
    .about-compliance-item {
        padding: 18px;
    }

    .about-compliance-item {
        align-items: flex-start;
    }

    .hero {
        min-height: auto;
    }

    .visual-stage {
        min-height: auto;
        transform: none;
        display: grid;
        gap: 12px;
    }

    .visual-stage::after,
    .hero-chat-bubbles {
        display: none;
    }

    .hero-chat-window {
        animation: none;
        transform: none;
        order: 1;
    }

    .ai-window {
        width: 100%;
        margin-top: 48px;
        border-radius: 24px;
    }

    .hero-orbit-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin: 0;
        animation: none;
    }

    .orbit-chat {
        margin-top: 12px;
        order: 2;
    }

    .orbit-checklist {
        order: 3;
    }

    .orbit-doc {
        order: 4;
    }

    .orbit-alert {
        order: 5;
    }

    .chat-preview {
        border-radius: 18px;
    }

    .chat-preview-header {
        min-height: 54px;
        gap: 8px;
        padding: 12px;
    }

    .chat-preview-body {
        min-height: 280px;
        padding: 12px;
    }

    .chat-preview-input {
        margin: 0 10px 10px;
        padding: 12px;
        font-size: 12px;
    }

    .chat-checklist {
        margin-left: 0;
    }

    .chat-checklist-items {
        grid-template-columns: 1fr;
    }

    .chat-bubble {
        max-width: 94%;
        padding: 10px 11px;
        font-size: 13px;
    }

    .hero-title {
        font-size: clamp(31px, 9vw, 40px);
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 24px, 1280px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-chat-window {
        animation: none;
    }
}

/* Quimigrate clean landing refresh */
:root {
    --bg: #ffffff;
    --bg-2: #f7faf9;
    --surface: #ffffff;
    --surface-solid: #ffffff;
    --surface-soft: #eefaf8;
    --ink: #071622;
    --muted: #4c5b63;
    --line: #e5eceb;
    --brand: #13bda7;
    --brand-strong: #0caa98;
    --brand-dark: #052331;
    --shadow: 0 18px 42px rgba(7, 22, 34, 0.08);
    --radius: 8px;
}

body,
body[data-theme="dark"] {
    background: #ffffff;
    color: var(--ink);
    font-family:
        Inter,
        Manrope,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body[data-theme="dark"] {
    color-scheme: light;
}

h1,
h2,
h3,
.hero-title {
    color: var(--ink);
    font-family:
        "Playfair Display",
        Georgia,
        serif;
    font-weight: 800;
    letter-spacing: 0;
}

.container {
    width: min(100% - 32px, 1150px);
}

.site-header,
body[data-theme="dark"] .site-header,
.site-header.is-scrolled,
body[data-theme="dark"] .site-header.is-scrolled {
    border-bottom: 1px solid #eef2f1;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: none;
}

.nav {
    min-height: 66px;
}

.brand-logo,
body[data-theme="dark"] .brand-logo {
    width: clamp(158px, 23vw, 224px);
    filter: none;
}

.nav-link,
body[data-theme="dark"] .nav-link {
    color: #1e2c34;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 14px;
}

.nav-link:hover,
.nav-link.is-active,
body[data-theme="dark"] .nav-link:hover,
body[data-theme="dark"] .nav-link.is-active {
    background: transparent;
    color: var(--brand-strong);
}

.nav-menu,
body[data-theme="dark"] .nav-menu {
    border-color: #e8eeed;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(7, 22, 34, 0.08);
}

.nav-toggle,
body[data-theme="dark"] .nav-toggle {
    border-color: #dce7e5;
    background: #ffffff;
    color: var(--ink);
}

.button {
    min-height: 48px;
    border: 1px solid var(--brand-strong);
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(19, 189, 167, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 14px 28px;
}

.button:hover {
    background: var(--brand-strong);
    box-shadow: 0 18px 32px rgba(19, 189, 167, 0.22);
}

.button.secondary {
    border-color: var(--brand);
    background: transparent;
    box-shadow: none;
    color: var(--brand-dark);
}

.button.secondary:hover {
    border-color: var(--brand-dark);
    background: var(--brand-dark);
    color: #ffffff;
}

.qm-hero .button.secondary {
    border-color: rgba(255, 255, 255, 0.82);
    color: #ffffff;
}

.qm-hero .button.secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.nav-cta {
    display: none;
    min-height: 46px;
    padding-inline: 27px;
}

.qm-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100svh - 66px);
    padding: 58px 0 64px;
    background:
        linear-gradient(90deg, rgba(5, 24, 38, 0.93), rgba(5, 24, 38, 0.82)),
        url("/reeni/assets/images/bg/bg-image-9.jpg") center / cover no-repeat;
}

.qm-hero-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.qm-hero-copy {
    max-width: 620px;
    color: #ffffff;
}

.qm-hero h1 {
    max-width: 620px;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.98;
}

.qm-hero p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.qm-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.qm-chat-card {
    display: grid;
    gap: 15px;
    width: min(100%, 460px);
    border-radius: 18px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.qm-message {
    width: fit-content;
    max-width: 92%;
    border-radius: 8px;
    padding: 14px 16px;
    color: #31434a;
    font-size: 13px;
    line-height: 1.5;
}

.qm-message-ai {
    background: #e6faf6;
}

.qm-message-user {
    justify-self: end;
    background: #f6f7f8;
}

.qm-checklist {
    border-radius: 8px;
    background: #f5f7fa;
    padding: 16px;
    color: #17232b;
}

.qm-checklist strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.qm-checklist div {
    display: grid;
    gap: 8px;
    color: #536167;
    font-size: 12px;
}

.qm-section {
    padding: 64px 0;
}

.qm-section-head {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
}

.qm-section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
}

.qm-section-head p {
    margin: 0 auto;
    max-width: 560px;
    color: #56656d;
    font-size: 14px;
    line-height: 1.65;
}

.qm-feature-grid {
    display: grid;
    gap: 18px;
}

.qm-feature-card {
    overflow: hidden;
    border: 1px solid #edf1f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(7, 22, 34, 0.07);
    text-align: center;
}

.qm-feature-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9.2;
    object-fit: cover;
}

.qm-feature-card > div {
    padding: 24px 20px 26px;
}

.qm-card-icon,
.qm-audience-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    place-items: center;
    color: var(--brand);
}

.qm-card-icon svg,
.qm-audience-icon svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qm-feature-card h3,
.qm-audience-item h3 {
    margin: 0 0 8px;
    font-family:
        Inter,
        Manrope,
        system-ui,
        sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.qm-feature-card p,
.qm-audience-item p {
    margin: 0 auto;
    max-width: 300px;
    color: #536167;
    font-size: 13px;
    line-height: 1.55;
}

.qm-audience {
    padding-top: 34px;
}

.qm-audience-row {
    position: relative;
    display: grid;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}

.qm-audience-item {
    text-align: center;
}

.qm-audience-icon {
    position: relative;
    border-radius: 999px;
    background: #f3fbfa;
    box-shadow: 0 12px 28px rgba(7, 22, 34, 0.05);
}

.qm-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 66px 0;
    background:
        linear-gradient(rgba(5, 24, 38, 0.86), rgba(5, 24, 38, 0.86)),
        url("/reeni/assets/images/bg/bg-image-3.jpg") center / cover no-repeat;
    text-align: center;
}

.qm-final-cta h2 {
    max-width: 780px;
    margin: 0 auto 10px;
    color: #ffffff;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.1;
}

.qm-final-cta p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer,
body[data-theme="dark"] .site-footer {
    padding: 56px 0 28px;
    background: #f4f7fb;
    color: var(--ink);
}

.qm-footer-inner {
    display: grid;
    gap: 28px;
}

.qm-footer-main {
    display: grid;
    gap: 30px;
    align-items: center;
}

.qm-footer-nav {
    display: grid;
    gap: 18px;
}

.qm-footer-links,
.qm-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    align-items: center;
    justify-content: center;
}

.qm-footer-links {
    border-bottom: 1px solid #dbe3e6;
    padding-bottom: 14px;
}

.qm-footer-links a,
.qm-footer-contact a {
    color: #263740;
    font-size: 13px;
    font-weight: 500;
}

.qm-footer-contact a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.qm-footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--brand);
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qm-footer-bottom {
    border-top: 1px solid #dbe3e6;
    padding-top: 20px;
    color: #5d6970;
    font-size: 13px;
    text-align: center;
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 48px, 1150px);
    }

    .qm-hero-actions {
        flex-direction: row;
    }

    .button {
        width: auto;
    }

    .qm-checklist div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .nav {
        min-height: 80px;
    }

    .nav-menu {
        display: flex;
        gap: 36px;
    }

    .nav-link {
        padding-inline: 0;
    }

    .nav-cta {
        display: inline-flex;
    }

    .qm-hero {
        min-height: calc(100vh - 80px);
        padding: 90px 0;
    }

    .qm-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
        gap: 74px;
    }

    .qm-hero h1 {
        font-size: clamp(52px, 5.8vw, 70px);
    }

    .qm-chat-card {
        justify-self: end;
        padding: 24px;
    }

    .qm-section {
        padding: 84px 0;
    }

    .qm-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 940px;
        margin: 0 auto;
    }

    .qm-audience-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 120px;
    }

    .qm-audience-row::before {
        content: "";
        position: absolute;
        left: 24%;
        right: 24%;
        top: 24px;
        height: 1px;
        background: var(--brand);
        opacity: 0.55;
    }

    .qm-final-cta {
        padding: 76px 0;
    }

    .qm-footer-main {
        grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
        gap: 70px;
    }

    .qm-footer-links,
    .qm-footer-contact {
        justify-content: flex-end;
    }
}

@media (max-width: 520px) {
    .brand-logo {
        width: clamp(138px, 47vw, 172px);
    }

    .qm-hero {
        padding: 42px 0 48px;
    }

    .qm-hero h1 {
        font-size: clamp(36px, 12vw, 48px);
    }

    .qm-chat-card {
        padding: 14px;
    }

    .qm-message {
        max-width: 96%;
        padding: 12px;
        font-size: 12px;
    }

    .qm-section {
        padding: 50px 0;
    }

    .qm-feature-card > div {
        padding: 22px 16px 24px;
    }

    .site-footer,
    body[data-theme="dark"] .site-footer {
        padding-top: 44px;
    }
}

/* Quimigrate AI v2 airy redesign */
:root {
    --qm-mint: #0fc6ad;
    --qm-mint-2: #61d7be;
    --qm-green: #57c77d;
    --qm-ink: #061925;
    --qm-text: #243640;
    --qm-muted: #63747b;
    --qm-line: #dcebea;
    --qm-soft: #f2fbf8;
    --qm-sky: #eaf8ff;
}

body,
body[data-theme="dark"] {
    background:
        linear-gradient(180deg, #fbfffd 0%, #ffffff 42%, #f8fbff 100%);
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

h1,
h2,
h3,
.hero-title,
.qm-hero h1,
.qm-section-head h2,
.qm-final-cta h2 {
    font-family:
        "Space Grotesk",
        Inter,
        sans-serif;
    font-weight: 700;
}

.container {
    width: min(100% - 32px, 1320px);
}

.site-header,
body[data-theme="dark"] .site-header,
.site-header.is-scrolled,
body[data-theme="dark"] .site-header.is-scrolled {
    border-bottom-color: rgba(15, 198, 173, 0.12);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav {
    min-height: 76px;
}

.brand-logo,
body[data-theme="dark"] .brand-logo {
    width: clamp(166px, 18vw, 238px);
}

.nav-menu {
    gap: 34px;
}

.nav-link,
body[data-theme="dark"] .nav-link {
    color: #273942;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.button {
    min-height: 50px;
    border-color: var(--qm-mint);
    background: linear-gradient(135deg, var(--qm-mint), #09aa98);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(15, 198, 173, 0.2);
}

.button:hover {
    border-color: #079986;
    background: linear-gradient(135deg, #10bca6, #078e80);
}

.qm-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 198, 173, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    padding: 8px 13px;
    color: #067f73;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.qm-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--qm-mint), var(--qm-green));
}

.qm-hero-v2 {
    min-height: auto;
    padding: 52px 0 78px;
    background:
        radial-gradient(circle at 20% 16%, rgba(97, 215, 190, 0.18), transparent 24rem),
        radial-gradient(circle at 88% 10%, rgba(87, 199, 125, 0.16), transparent 22rem),
        linear-gradient(180deg, #fbfffd 0%, #effaf7 100%);
}

.qm-hero-v2 .qm-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
}

.qm-hero-v2 .qm-hero-copy {
    max-width: 720px;
    color: var(--qm-ink);
}

.qm-hero-v2 h1 {
    max-width: 760px;
    margin: 18px 0 18px;
    color: var(--qm-ink);
    font-size: clamp(38px, 10.5vw, 62px);
    line-height: 1.03;
}

.qm-hero-v2 .qm-hero-copy > p {
    max-width: 620px;
    color: var(--qm-text);
    font-size: 17px;
    line-height: 1.72;
}

.qm-hero-v2 .button.secondary {
    border-color: rgba(6, 25, 37, 0.18);
    background: #ffffff;
    color: var(--qm-ink);
}

.qm-hero-v2 .button.secondary:hover {
    border-color: var(--qm-mint);
    background: #f4fffc;
    color: #067f73;
}

.qm-proof-row {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.qm-proof-row span {
    position: relative;
    overflow: visible;
    display: flex;
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
    padding: 16px 17px;
    color: var(--qm-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 14px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.qm-proof-row span::before,
.qm-proof-row span::after {
    display: none;
}

.qm-proof-row i {
    display: inline-flex;
    width: fit-content;
    border: 1px solid rgba(15, 198, 173, 0.32);
    border-radius: 999px;
    background: rgba(15, 198, 173, 0.11);
    padding: 4px 8px;
    color: #bffdf2;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.06em;
}

.qm-proof-row strong {
    position: relative;
    z-index: 1;
    color: var(--qm-ink);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 17px;
    line-height: 1;
}

.qm-proof-row small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0;
    color: #64747b;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.42;
}

.qm-hero-visual {
    position: relative;
    min-height: 470px;
}

.qm-hero-visual > img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(6, 25, 37, 0.14);
}

.qm-hero-visual::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    pointer-events: none;
}

.qm-chat-card {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    margin: -150px auto 0;
    gap: 13px;
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 20px;
    padding: 18px;
    box-shadow:
        0 26px 60px rgba(6, 25, 37, 0.16),
        0 0 0 8px rgba(255, 255, 255, 0.48);
}

.qm-chat-card-head {
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #e8f1ef;
    padding-bottom: 13px;
}

.qm-chat-logo {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--qm-mint), var(--qm-green));
    color: #ffffff;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-weight: 800;
}

.qm-chat-card-head strong,
.qm-chat-card-head small {
    display: block;
    line-height: 1.2;
}

.qm-chat-card-head strong {
    color: var(--qm-ink);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 15px;
}

.qm-chat-card-head small {
    margin-top: 2px;
    color: var(--qm-muted);
    font-size: 12px;
    font-weight: 700;
}

.qm-message {
    border-radius: 14px;
    padding: 13px 15px;
    font-size: 13px;
    font-weight: 600;
}

.qm-message-ai {
    background: #e9fbf7;
    color: #173a35;
}

.qm-message-user {
    border: 1px solid #eef2f4;
    background: #f8fafb;
    color: #3a4b53;
}

.qm-checklist {
    border: 1px solid #e8f1ef;
    background: linear-gradient(180deg, #fbfefd, #f5fbff);
}

.qm-checklist-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.qm-checklist-top strong,
.qm-checklist-top span {
    font-family:
        Outfit,
        Manrope,
        sans-serif;
}

.qm-checklist-top span {
    color: #087f73;
    font-weight: 800;
}

.qm-progress {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: #e6efef;
}

.qm-progress span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--qm-mint), var(--qm-green));
}

.qm-checklist-items {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    color: #4a5c63;
    font-size: 12px;
    font-weight: 700;
}

.qm-section {
    padding: 72px 0;
}

.qm-section-head {
    max-width: 760px;
    margin-bottom: 38px;
}

.qm-section-head .qm-pill {
    margin: 0 auto 14px;
}

.qm-section-head h2 {
    color: var(--qm-ink);
    font-size: clamp(34px, 8vw, 54px);
}

.qm-section-head p {
    color: var(--qm-muted);
    font-size: 16px;
}

.qm-journey-grid {
    display: grid;
    gap: 16px;
}

.qm-journey-grid article {
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 18px;
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(6, 25, 37, 0.055);
}

.qm-journey-grid span,
.qm-use-card span {
    color: #078f82;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.qm-journey-grid h3,
.qm-use-card h3 {
    margin: 10px 0 8px;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    color: var(--qm-ink);
    font-size: 22px;
    line-height: 1.16;
}

.qm-journey-grid p,
.qm-use-card p,
.qm-workspace-copy p {
    margin: 0;
    color: var(--qm-muted);
    font-size: 15px;
    line-height: 1.65;
}

.qm-workspace-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(15, 198, 173, 0.12), transparent 22rem),
        linear-gradient(180deg, #f8fdfb, #ffffff);
}

.qm-workspace-grid {
    display: grid;
    gap: 26px;
    align-items: center;
}

.qm-workspace-copy {
    max-width: 620px;
}

.qm-workspace-copy h2 {
    margin: 18px 0 14px;
    color: var(--qm-ink);
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1;
}

.qm-workspace-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.qm-workspace-list span {
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 999px;
    background: #ffffff;
    padding: 11px 14px;
    color: #234047;
    font-size: 14px;
    font-weight: 800;
}

.qm-workspace-panel {
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 251, 248, 0.94));
    padding: 18px;
    box-shadow: 0 30px 70px rgba(6, 25, 37, 0.09);
}

.qm-panel-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #e4eeee;
    padding: 4px 4px 16px;
}

.qm-panel-top strong {
    color: var(--qm-ink);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 24px;
}

.qm-panel-top span {
    color: #078f82;
    font-size: 13px;
    font-weight: 800;
}

.qm-panel-columns {
    display: grid;
    gap: 14px;
    padding-top: 16px;
}

.qm-panel-columns > div {
    display: grid;
    gap: 10px;
    border-radius: 18px;
    background: #ffffff;
    padding: 15px;
    box-shadow: 0 12px 28px rgba(6, 25, 37, 0.05);
}

.qm-panel-columns small {
    color: #7b8b91;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.qm-panel-columns span {
    border: 1px solid #e9f0f0;
    border-radius: 12px;
    background: #fbfdfd;
    padding: 10px 11px;
    color: #243740;
    font-size: 13px;
    font-weight: 800;
}

.qm-use-cases {
    background: #ffffff;
}

.qm-use-case-grid {
    display: grid;
    gap: 22px;
}

.qm-use-card {
    overflow: hidden;
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(6, 25, 37, 0.07);
}

.qm-use-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.qm-use-card div {
    padding: 22px;
}

.qm-final-cta-v2 {
    background:
        radial-gradient(circle at 20% 20%, rgba(97, 215, 190, 0.16), transparent 20rem),
        linear-gradient(135deg, #052332, #063b42 54%, #086e67);
}

.qm-final-cta-v2 .qm-pill {
    margin-bottom: 18px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #dffff9;
}

.qm-final-cta-v2 h2 {
    max-width: 820px;
    font-size: clamp(34px, 9vw, 58px);
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 48px, 1320px);
    }

    .qm-proof-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 680px;
    }

    .qm-checklist-items,
    .qm-panel-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .qm-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .nav {
        min-height: 86px;
    }

    .qm-hero-v2 {
        padding: 70px 0 94px;
    }

    .qm-hero-v2 .qm-hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
        gap: 58px;
    }

    .qm-hero-v2 h1 {
        font-size: clamp(52px, 4.8vw, 72px);
    }

    .qm-hero-v2 .qm-hero-copy > p {
        font-size: 18px;
    }

    .qm-hero-visual {
        min-height: 620px;
    }

    .qm-hero-visual > img {
        min-height: 580px;
    }

    .qm-chat-card {
        position: absolute;
        right: 28px;
        bottom: -22px;
        margin: 0;
        padding: 22px;
    }

    .qm-section {
        padding: 96px 0;
    }

    .qm-journey-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .qm-workspace-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
        gap: 70px;
    }

    .qm-workspace-panel {
        padding: 24px;
    }

    .qm-use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1180px) {
    .qm-hero-v2 .qm-hero-grid {
        grid-template-columns: minmax(0, 0.78fr) minmax(660px, 1.22fr);
        gap: 72px;
    }
}

@media (max-width: 520px) {
    .qm-hero-v2 h1 {
        font-size: clamp(36px, 11.5vw, 48px);
    }

    .qm-hero-visual {
        min-height: auto;
    }

    .qm-hero-visual > img {
        min-height: 320px;
    }

    .qm-chat-card {
        margin-top: -72px;
    }

    .qm-proof-row span {
        min-height: 84px;
        padding: 16px;
    }

    .qm-panel-columns {
        grid-template-columns: 1fr;
    }
}

/* Hero AI chatbox polish */
.qm-chat-card {
    gap: 14px;
    border: 1px solid rgba(15, 198, 173, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 253, 0.96));
    padding: 18px;
}

.qm-chat-card-head {
    align-items: center;
    border-bottom: 1px solid rgba(15, 198, 173, 0.12);
    padding-bottom: 14px;
}

.qm-chat-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
    box-shadow: 0 12px 22px rgba(15, 198, 173, 0.22);
}

.qm-chat-card-head small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.qm-chat-card-head small span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--qm-green);
    box-shadow: 0 0 0 4px rgba(87, 199, 125, 0.16);
}

.qm-chat-card-head em {
    margin-left: auto;
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 999px;
    background: #f1fbf8;
    padding: 7px 10px;
    color: #067f73;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    white-space: nowrap;
}

.qm-chat-thread {
    display: grid;
    gap: 11px;
}

.qm-chat-row {
    display: flex;
    align-items: flex-end;
    gap: 9px;
}

.qm-chat-row-user {
    justify-content: flex-end;
}

.qm-chat-avatar {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(15, 198, 173, 0.18);
    border-radius: 10px;
    background: #effcf8;
    color: #078f82;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 11px;
    font-weight: 900;
}

.qm-message {
    max-width: min(86%, 360px);
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.48;
    box-shadow: none;
}

.qm-message-ai {
    border: 1px solid rgba(15, 198, 173, 0.12);
    border-bottom-left-radius: 6px;
    background: #ecfbf7;
    color: #173d38;
}

.qm-message-user {
    border: 1px solid #e9eef0;
    border-bottom-right-radius: 6px;
    background: #ffffff;
    color: #35474f;
    box-shadow: 0 10px 20px rgba(6, 25, 37, 0.05);
}

.qm-checklist {
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(15, 198, 173, 0.08), transparent 9rem),
        linear-gradient(180deg, #ffffff, #f6fcfb);
    padding: 15px;
}

.qm-checklist-top {
    margin-bottom: 11px;
}

.qm-checklist-top div {
    display: grid;
    gap: 2px;
}

.qm-checklist-top strong {
    color: var(--qm-ink);
    font-size: 14px;
}

.qm-checklist-top small {
    color: var(--qm-muted);
    font-size: 11px;
    font-weight: 800;
}

.qm-progress {
    height: 9px;
    background: #e5f0ef;
}

.qm-checklist-items {
    grid-template-columns: 1fr;
    gap: 8px;
}

.qm-checklist-items span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    border: 1px solid #e8f0ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 9px 10px;
    color: #40525a;
}

.qm-checklist-items b {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
}

.qm-checklist-items .is-done b {
    background: rgba(15, 198, 173, 0.13);
    color: #078f82;
}

.qm-checklist-items .is-active {
    border-color: rgba(15, 198, 173, 0.26);
    background: #f4fffc;
    color: #17413b;
}

.qm-checklist-items .is-active b {
    background: var(--qm-mint);
    color: #ffffff;
}

.qm-checklist-items .is-next b {
    background: #eef3f5;
    color: #5f7078;
}

.qm-chat-input {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #e3ecec;
    border-radius: 999px;
    background: #ffffff;
    padding: 11px 12px 11px 16px;
    color: #829198;
    font-size: 12px;
    font-weight: 700;
}

.qm-chat-input b {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--qm-mint), #09aa98);
    color: #ffffff;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 12px;
}

@media (min-width: 640px) {
    .qm-checklist-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .qm-chat-card {
        width: min(100%, 560px);
        right: 34px;
        bottom: -30px;
        padding: 22px;
    }
}

@media (max-width: 520px) {
    .qm-chat-card {
        gap: 12px;
        padding: 14px;
    }

    .qm-chat-card-head {
        align-items: flex-start;
    }

    .qm-chat-card-head em {
        display: none;
    }

    .qm-message {
        max-width: 88%;
        font-size: 12px;
    }

    .qm-checklist-items {
        grid-template-columns: 1fr;
    }
}

/* Dark airy hero mood */
.qm-hero-v2 {
    background:
        linear-gradient(90deg, rgba(4, 20, 31, 0.92), rgba(5, 35, 45, 0.76) 48%, rgba(5, 45, 50, 0.52)),
        radial-gradient(circle at 19% 14%, rgba(15, 198, 173, 0.2), transparent 24rem),
        radial-gradient(circle at 84% 9%, rgba(87, 199, 125, 0.15), transparent 22rem),
        url("/assets/quimigrate/home-hero-ai-workspace-v2.png") center / cover no-repeat;
}

.qm-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
        radial-gradient(circle at 12% 74%, rgba(15, 198, 173, 0.14), transparent 20rem);
}

.qm-hero-v2 .qm-pill {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #dffff8;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.qm-hero-v2 .qm-hero-copy,
.qm-hero-v2 h1 {
    color: #ffffff;
}

.qm-hero-v2 .qm-hero-copy > p {
    color: rgba(235, 250, 247, 0.86);
}

.qm-hero-v2 .button.secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.qm-hero-v2 .button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.qm-hero-v2 .qm-hero-visual > img {
    opacity: 0.82;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.qm-proof-row span {
    color: rgba(225, 244, 240, 0.76);
}

.qm-proof-row strong {
    color: #ffffff;
}

.qm-proof-row small {
    color: rgba(225, 244, 240, 0.74);
}

.qm-chat-card {
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 253, 250, 0.92));
    box-shadow:
        0 30px 76px rgba(0, 0, 0, 0.28),
        0 0 0 8px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 899px) {
    .qm-hero-v2 {
        background:
            linear-gradient(180deg, rgba(4, 20, 31, 0.93), rgba(5, 35, 45, 0.78)),
            radial-gradient(circle at 20% 12%, rgba(15, 198, 173, 0.18), transparent 18rem),
            url("/assets/quimigrate/home-hero-ai-workspace-v2.png") center / cover no-repeat;
    }

    .qm-hero-v2 .qm-hero-visual > img {
        opacity: 0.92;
    }
}

/* Navigation, footer, and intake demo refinements */
.site-header .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
}

.site-header .nav-menu,
body[data-theme="dark"] .site-header .nav-menu {
    position: static;
    justify-self: center;
    display: none;
    width: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.site-header .nav-link {
    position: relative;
    padding: 9px 0;
    color: #1c3039;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--qm-mint);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after {
    transform: scaleX(1);
}

.site-header .nav-actions {
    gap: 10px;
    justify-self: end;
}

.nav-phone {
    display: none;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(15, 198, 173, 0.18);
    border-radius: 999px;
    background: #ffffff;
    padding: 8px 15px 8px 9px;
    color: #12303a;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(6, 25, 37, 0.06);
}

.nav-phone span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    background: #eafbf7;
    color: #078f82;
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qm-intake-demo {
    display: grid;
    gap: 24px;
    align-items: center;
    margin-top: 36px;
    border: 1px solid rgba(15, 198, 173, 0.13);
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 198, 173, 0.1), transparent 18rem),
        linear-gradient(135deg, #ffffff, #f5fcfa);
    padding: 20px;
    box-shadow: 0 24px 56px rgba(6, 25, 37, 0.07);
}

.qm-intake-demo-copy h3 {
    margin: 16px 0 10px;
    color: var(--qm-ink);
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.08;
}

.qm-intake-demo-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--qm-muted);
    font-size: 15px;
    line-height: 1.7;
}

.qm-sliding-chatbox {
    overflow: hidden;
    border: 1px solid rgba(15, 198, 173, 0.16);
    border-radius: 22px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 18px 42px rgba(6, 25, 37, 0.08);
}

.qm-sliding-chat-head {
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid #e7f0ef;
    padding-bottom: 14px;
}

.qm-sliding-chat-head > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--qm-mint), var(--qm-green));
    color: #ffffff;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-weight: 900;
}

.qm-sliding-chat-head strong,
.qm-sliding-chat-head small {
    display: block;
    line-height: 1.25;
}

.qm-sliding-chat-head strong {
    color: var(--qm-ink);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
}

.qm-sliding-chat-head small {
    color: var(--qm-muted);
    font-size: 12px;
    font-weight: 800;
}

.qm-sliding-window {
    overflow: hidden;
    height: 196px;
    margin-top: 16px;
}

.qm-sliding-track {
    display: grid;
    animation: qmVerticalChat 14s ease-in-out infinite;
}

.qm-slide-step {
    display: grid;
    height: 196px;
    align-content: center;
    gap: 12px;
}

.qm-slide-step p {
    width: fit-content;
    max-width: 86%;
    margin: 0;
    border-radius: 16px;
    padding: 13px 15px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.qm-slide-step .from-ai {
    border-bottom-left-radius: 6px;
    background: #eafbf7;
    color: #173d38;
}

.qm-slide-step .from-user {
    justify-self: end;
    border: 1px solid #e9eef0;
    border-bottom-right-radius: 6px;
    background: #ffffff;
    color: #35474f;
    box-shadow: 0 10px 20px rgba(6, 25, 37, 0.05);
}

.qm-demo-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #e7f0ef;
    padding-top: 14px;
}

.qm-demo-checklist span {
    border: 1px solid #e4eeee;
    border-radius: 999px;
    background: #ffffff;
    padding: 8px 11px;
    color: #4b5d64;
    font-size: 12px;
    font-weight: 900;
}

.qm-demo-checklist .done {
    border-color: rgba(15, 198, 173, 0.2);
    background: #effcf8;
    color: #078f82;
}

.qm-demo-checklist .active {
    background: var(--qm-mint);
    color: #ffffff;
}

@keyframes qmVerticalChat {
    0%,
    17% {
        transform: translateY(0);
    }

    25%,
    42% {
        transform: translateY(-196px);
    }

    50%,
    67% {
        transform: translateY(-392px);
    }

    75%,
    92% {
        transform: translateY(-588px);
    }

    100% {
        transform: translateY(0);
    }
}

.qm-site-footer,
body[data-theme="dark"] .qm-site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 26px;
    background:
        linear-gradient(135deg, rgba(3, 20, 29, 0.95) 0%, rgba(5, 41, 53, 0.88) 48%, rgba(6, 58, 59, 0.84) 100%),
        radial-gradient(circle at 12% 8%, rgba(15, 198, 173, 0.28), transparent 25rem),
        url("/assets/quimigrate/home-hero-ai-workspace-v2.png") center / cover no-repeat,
        linear-gradient(135deg, #03141d 0%, #052935 48%, #063a3b 100%);
    color: #ffffff;
}

.qm-site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
        linear-gradient(90deg, rgba(3, 20, 29, 0.18), rgba(3, 20, 29, 0.48)),
        radial-gradient(circle at 52% 36%, rgba(255, 255, 255, 0.055), transparent 26rem);
}

.qm-site-footer > .container {
    position: relative;
    z-index: 1;
}

.qm-footer-cta {
    display: grid;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
    padding: 24px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.qm-footer-cta span {
    color: #8af2df;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.qm-footer-cta h2 {
    max-width: 720px;
    margin: 8px 0 0;
    color: #ffffff;
    font-size: clamp(30px, 7vw, 48px);
    line-height: 1.08;
}

.qm-footer-grid {
    display: grid;
    gap: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 42px 0 34px;
}

.qm-footer-brand p {
    max-width: 360px;
    margin: 16px 0 0;
    color: rgba(238, 255, 251, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.qm-site-footer .brand-logo {
    filter: brightness(1.08) drop-shadow(0 16px 32px rgba(0, 0, 0, 0.18));
}

.qm-footer-col {
    display: grid;
    gap: 10px;
    align-content: start;
}

.qm-footer-col h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.qm-footer-col a {
    width: fit-content;
    color: rgba(238, 255, 251, 0.76);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.qm-footer-col a:hover {
    color: #8af2df;
    transform: translateX(3px);
}

.qm-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.qm-footer-contact svg {
    width: 16px;
    height: 16px;
    color: #8af2df;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.qm-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 22px;
    color: rgba(238, 255, 251, 0.66);
    font-size: 13px;
    font-weight: 700;
}

@media (min-width: 900px) {
    .site-header .nav-menu {
        display: flex;
    }

    .nav-phone {
        display: inline-flex;
    }

    .qm-intake-demo {
        grid-template-columns: minmax(0, 0.84fr) minmax(430px, 0.76fr);
        gap: 42px;
        padding: 30px;
    }

    .qm-footer-cta {
        grid-template-columns: 1fr auto;
        padding: 30px;
    }

    .qm-footer-grid {
        grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(150px, 0.6fr));
        gap: 42px;
    }

    .qm-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 899px) {
    .site-header .nav {
        grid-template-columns: auto auto;
    }

    .site-header .nav-menu.is-open {
        position: absolute;
        top: 66px;
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        border: 1px solid #e8eeed;
        border-radius: 14px;
        background: #ffffff;
        padding: 10px;
        box-shadow: 0 18px 34px rgba(7, 22, 34, 0.08);
    }

    .site-header .nav-link {
        padding: 11px 12px;
    }

    .site-header .nav-link::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .qm-sliding-track {
        animation: none;
    }
}

/* About page redesign */
.qa-about-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 86px;
    background:
        linear-gradient(90deg, rgba(4, 20, 31, 0.94), rgba(5, 35, 45, 0.82) 48%, rgba(5, 61, 60, 0.68)),
        radial-gradient(circle at 18% 10%, rgba(15, 198, 173, 0.18), transparent 24rem),
        url("/assets/quimigrate/home-hero-ai-workspace-v2.png") center / cover no-repeat;
}

.qa-about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 12%, rgba(87, 199, 125, 0.13), transparent 22rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.qa-about-hero-grid {
    display: grid;
    gap: 34px;
    align-items: center;
}

.qa-about-hero-copy {
    max-width: 720px;
}

.qa-about-hero .qm-pill,
.qa-about-cta .qm-pill {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.09);
    color: #dffff8;
}

.qa-about-hero h1 {
    max-width: 780px;
    margin: 18px 0;
    color: #ffffff;
    font-size: clamp(42px, 10vw, 76px);
    line-height: 1.02;
}

.qa-about-hero p {
    max-width: 630px;
    margin: 0;
    color: rgba(235, 250, 247, 0.84);
    font-size: 17px;
    line-height: 1.75;
}

.qa-about-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.qa-about-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.qa-about-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.qa-about-hero-card img {
    display: block;
    width: 100%;
    min-height: 390px;
    border-radius: 20px;
    object-fit: cover;
}

.qa-hero-note {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(4, 20, 31, 0.72);
    padding: 18px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.qa-hero-note span,
.qa-principles-grid span,
.qa-process-list span {
    color: #8af2df;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.qa-hero-note strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 17px;
    line-height: 1.35;
}

.qa-about-section {
    padding: 78px 0;
}

.qa-mission-grid,
.qa-process-grid,
.qa-trust-grid {
    display: grid;
    gap: 28px;
}

.qa-mission-grid h2,
.qa-section-head h2,
.qa-process-copy h2,
.qa-trust-grid h2,
.qa-about-cta h2 {
    margin: 16px 0 0;
    color: var(--qm-ink);
    font-size: clamp(34px, 8vw, 56px);
    line-height: 1.04;
}

.qa-mission-copy {
    display: grid;
    gap: 16px;
}

.qa-mission-copy p,
.qa-section-head p,
.qa-process-list p,
.qa-trust-grid p,
.qa-trust-cards span {
    margin: 0;
    color: var(--qm-muted);
    font-size: 15px;
    line-height: 1.75;
}

.qa-section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.qa-section-head .qm-pill {
    margin-inline: auto;
}

.qa-section-head p {
    margin-top: 14px;
}

.qa-principles-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(15, 198, 173, 0.09), transparent 22rem),
        linear-gradient(180deg, #f8fdfb, #ffffff);
}

.qa-principles-grid {
    display: grid;
    gap: 16px;
}

.qa-principles-grid article {
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 22px;
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 16px 36px rgba(6, 25, 37, 0.06);
}

.qa-principles-grid h3,
.qa-process-list h3,
.qa-trust-cards strong {
    margin: 12px 0 8px;
    color: var(--qm-ink);
    font-family:
        Outfit,
        Manrope,
        sans-serif;
    font-size: 21px;
    line-height: 1.2;
}

.qa-principles-grid p {
    margin: 0;
    color: var(--qm-muted);
    font-size: 14px;
    line-height: 1.65;
}

.qa-process-section {
    background: #ffffff;
}

.qa-process-visual {
    overflow: hidden;
    border: 1px solid rgba(15, 198, 173, 0.15);
    border-radius: 28px;
    box-shadow: 0 28px 68px rgba(6, 25, 37, 0.1);
}

.qa-process-visual img {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.qa-process-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.qa-process-list article {
    border: 1px solid rgba(15, 198, 173, 0.13);
    border-radius: 18px;
    background: #f9fdfc;
    padding: 18px;
}

.qa-process-list article p {
    margin-top: 6px;
}

.qa-trust-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(87, 199, 125, 0.1), transparent 24rem),
        linear-gradient(180deg, #f8fbff, #ffffff);
}

.qa-trust-grid > div:first-child p {
    margin-top: 16px;
}

.qa-trust-cards {
    display: grid;
    gap: 14px;
}

.qa-trust-cards article {
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 16px 34px rgba(6, 25, 37, 0.055);
}

.qa-trust-cards strong {
    display: block;
    margin: 0 0 8px;
}

.qa-about-cta {
    padding: 82px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(97, 215, 190, 0.16), transparent 20rem),
        linear-gradient(135deg, #052332, #063b42 54%, #086e67);
    text-align: center;
}

.qa-about-cta .qm-pill {
    margin-bottom: 18px;
}

.qa-about-cta h2 {
    max-width: 820px;
    margin: 0 auto 24px;
    color: #ffffff;
}

@media (min-width: 640px) {
    .qa-about-actions {
        flex-direction: row;
    }

    .qa-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .qa-about-hero {
        padding: 92px 0 110px;
    }

    .qa-about-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.82fr);
        gap: 70px;
    }

    .qa-about-hero h1 {
        font-size: clamp(58px, 5.2vw, 82px);
    }

    .qa-about-section {
        padding: 98px 0;
    }

    .qa-mission-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
        gap: 72px;
    }

    .qa-principles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .qa-process-grid {
        grid-template-columns: minmax(460px, 0.9fr) minmax(0, 0.82fr);
        gap: 72px;
    }

    .qa-trust-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.78fr);
        gap: 70px;
    }
}

@media (max-width: 520px) {
    .qa-about-hero h1 {
        font-size: clamp(38px, 11vw, 50px);
    }

    .qa-about-hero-card img {
        min-height: 300px;
    }

    .qa-hero-note {
        position: static;
        margin-top: 12px;
    }
}

/* Stable home hero and dark nav */
.site-header,
body[data-theme="dark"] .site-header,
.site-header.is-scrolled,
body[data-theme="dark"] .site-header.is-scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: rgba(4, 20, 31, 0.86);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.site-header .nav-link,
body[data-theme="dark"] .site-header .nav-link {
    color: rgba(237, 250, 247, 0.84);
}

.site-header .nav-link:hover,
.site-header .nav-link.is-active,
body[data-theme="dark"] .site-header .nav-link:hover,
body[data-theme="dark"] .site-header .nav-link.is-active {
    color: #8af2df;
}

.site-header .nav-menu,
body[data-theme="dark"] .site-header .nav-menu {
    background: transparent;
}

.nav-phone {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.nav-phone span {
    background: rgba(15, 198, 173, 0.16);
    color: #8af2df;
}

.qm-hero-v2 {
    display: flex;
    min-height: calc(100svh - 78px);
    align-items: center;
    padding: 62px 0 86px;
}

.qm-hero-v2 .qm-hero-copy {
    max-width: 620px;
}

.qm-hero-v2 h1 {
    max-width: 640px;
    font-size: clamp(38px, 9vw, 56px);
    line-height: 1.08;
}

.qm-hero-v2 .qm-hero-copy > p {
    max-width: 560px;
    font-size: 16px;
}

.qm-hero-visual {
    justify-self: end;
    width: min(100%, 720px);
}

.qm-hero-visual > img {
    min-height: 420px;
    border-radius: 22px;
}

.qm-chat-card {
    width: min(100%, 480px);
}

@media (min-width: 900px) {
    .qm-hero-v2 {
        padding: 76px 0 96px;
    }

    .qm-hero-v2 .qm-hero-grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(500px, 0.94fr);
        gap: 56px;
    }

    .qm-hero-v2 h1 {
        font-size: clamp(48px, 4.25vw, 66px);
    }

    .qm-hero-visual {
        min-height: 540px;
        transform: translateX(10px);
    }

    .qm-hero-visual > img {
        min-height: 500px;
    }

    .qm-chat-card {
        right: 24px;
        bottom: -18px;
        width: min(100%, 500px);
        padding: 18px;
    }
}

@media (min-width: 1180px) {
    .qm-hero-v2 .qm-hero-grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1fr);
        gap: 66px;
    }
}

@media (max-width: 899px) {
    .site-header .nav-menu.is-open {
        background: rgba(4, 20, 31, 0.96);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .qm-hero-visual {
        width: 100%;
    }
}

/* Modern business-tech typography */
body,
body[data-theme="dark"] {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

h1,
h2,
h3,
.hero-title,
.qm-hero h1,
.qm-section-head h2,
.qm-final-cta h2,
.qa-about-hero h1,
.qa-mission-grid h2,
.qa-section-head h2,
.qa-process-copy h2,
.qa-trust-grid h2,
.qa-about-cta h2 {
    font-family:
        "Space Grotesk",
        Inter,
        system-ui,
        sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.nav-link,
.button,
.qm-pill,
.qm-chat-card,
.qm-checklist,
.qm-sliding-chatbox,
.qm-footer-col h3,
.qa-principles-grid h3,
.qa-process-list h3,
.qa-trust-cards strong {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

/* Contact page focused layout */
.contact-hero {
    overflow: hidden;
    padding: 86px 0 62px;
}

.contact-hero::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 20, 31, 0.93), rgba(5, 40, 49, 0.78)),
        radial-gradient(circle at 18% 18%, rgba(15, 198, 173, 0.18), transparent 24rem),
        radial-gradient(circle at 82% 8%, rgba(87, 199, 125, 0.12), transparent 22rem);
    mask-image: none;
    -webkit-mask-image: none;
}

.contact-hero-grid {
    grid-template-columns: minmax(0, 1fr);
}

.contact-hero-copy {
    max-width: 980px;
}

.contact-hero-copy .eyebrow,
.contact-hero-copy h1 {
    color: #ffffff;
}

.contact-hero-copy h1 {
    max-width: 900px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.02;
}

.contact-hero-copy .lead {
    max-width: 760px;
    color: rgba(235, 250, 247, 0.84);
    font-size: 17px;
}

.contact-hero-actions .call-number {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(235, 250, 247, 0.88);
}

.contact-hero-sketch {
    opacity: 0.7;
}

.contact-intake-panel {
    border: 1px solid rgba(138, 242, 223, 0.18);
    background:
        linear-gradient(145deg, rgba(3, 18, 27, 0.98), rgba(5, 45, 50, 0.94)),
        radial-gradient(circle at 88% 8%, rgba(15, 198, 173, 0.22), transparent 18rem);
    box-shadow: 0 28px 76px rgba(4, 20, 31, 0.2);
}

.contact-intake-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 28%),
        radial-gradient(circle at 12% 16%, rgba(138, 242, 223, 0.14), transparent 18rem);
}

.contact-intake-panel .eyebrow {
    width: fit-content;
    border: 1px solid rgba(138, 242, 223, 0.22);
    border-radius: 999px;
    background: rgba(138, 242, 223, 0.1);
    padding: 8px 12px;
    color: #8af2df;
}

.contact-intake-panel h2 {
    max-width: 520px;
    color: #ffffff;
}

.contact-intake-panel .muted {
    max-width: 560px;
    color: rgba(235, 250, 247, 0.76);
}

.contact-intake-image {
    display: none;
}

.contact-intake-panel .intake-list {
    gap: 10px;
    margin-top: 26px;
}

.contact-intake-panel .intake-list li {
    align-items: flex-start;
    border: 1px solid rgba(138, 242, 223, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    padding: 13px 14px;
    color: rgba(235, 250, 247, 0.82);
}

.contact-intake-panel .check-icon {
    flex: 0 0 auto;
    background: rgba(15, 198, 173, 0.22);
    color: #8af2df;
}

@media (min-width: 900px) {
    .contact-hero {
        padding: 104px 0 74px;
    }

    .contact-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 520px) {
    .contact-hero {
        padding: 58px 0 46px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(38px, 11vw, 52px);
    }
}

/* About page process visual fix */
.qa-process-visual {
    display: flex;
    min-height: 100%;
}

.qa-process-visual img {
    height: 100%;
    min-height: 0;
}

@media (max-width: 899px) {
    .qa-process-visual {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }
}

/* Contact page light hero and refined form */
.contact-hero {
    padding: 86px 0 58px;
    background:
        radial-gradient(circle at 14% 10%, rgba(15, 198, 173, 0.1), transparent 24rem),
        radial-gradient(circle at 86% 4%, rgba(87, 199, 125, 0.08), transparent 22rem),
        linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
}

.contact-hero::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 82% 42%, rgba(15, 198, 173, 0.08), transparent 26rem);
}

.contact-hero-copy {
    max-width: 100%;
}

.contact-hero-copy .eyebrow {
    color: #067f73;
}

.contact-hero-copy h1 {
    max-width: 1240px;
    color: var(--qm-ink);
}

.contact-hero-copy .lead {
    max-width: 1040px;
    color: var(--qm-muted);
}

.contact-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.contact-hero-actions .call-number {
    border-color: rgba(15, 198, 173, 0.18);
    background: rgba(255, 255, 255, 0.84);
    color: var(--qm-ink);
    box-shadow: 0 12px 28px rgba(6, 25, 37, 0.06);
}

.contact-hero-sketch {
    width: min(100%, 440px);
    margin-top: 26px;
    opacity: 0.55;
}

.contact-form-section {
    padding: 64px 0 98px;
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 198, 173, 0.08), transparent 24rem),
        linear-gradient(180deg, #f7fcfb 0%, #ffffff 100%);
}

.contact-grid {
    gap: 28px;
    align-items: stretch;
}

.contact-form-panel {
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 254, 253, 0.96));
    padding: 24px;
    box-shadow: 0 28px 70px rgba(6, 25, 37, 0.1);
}

.contact-form-panel::before {
    background:
        linear-gradient(135deg, rgba(15, 198, 173, 0.08), transparent 30%),
        radial-gradient(circle at 96% 0%, rgba(87, 199, 125, 0.1), transparent 18rem);
}

.form-panel-head {
    display: grid;
    gap: 8px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(15, 198, 173, 0.12);
    padding-bottom: 20px;
}

.form-panel-head .eyebrow {
    width: fit-content;
    border: 1px solid rgba(15, 198, 173, 0.18);
    border-radius: 999px;
    background: rgba(15, 198, 173, 0.08);
    padding: 7px 11px;
    color: #067f73;
}

.form-panel-head h2 {
    max-width: 640px;
}

.contact-form-panel form {
    display: grid;
    gap: 18px;
}

.contact-form-panel .form-grid {
    gap: 18px;
}

.contact-form-panel .field label {
    color: var(--qm-ink);
    font-size: 12px;
    letter-spacing: 0;
}

.contact-form-panel .field input,
.contact-form-panel .field select,
.contact-form-panel .field textarea {
    min-height: 54px;
    border-color: rgba(15, 198, 173, 0.16);
    border-radius: 14px;
    background: #f9fdfc;
    padding: 13px 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form-panel .field textarea {
    min-height: 146px;
}

.contact-form-panel .button[type="submit"] {
    min-width: 190px;
    justify-self: start;
    margin-top: 4px;
}

@media (min-width: 900px) {
    .contact-hero {
        padding: 104px 0 70px;
    }

    .contact-grid {
        grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
        gap: 30px;
    }

    .contact-form-panel {
        padding: 34px;
    }
}

@media (min-width: 1180px) {
    .contact-form-panel {
        padding: 40px;
    }

    .contact-grid {
        grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1.42fr);
        gap: 34px;
    }
}

@media (max-width: 520px) {
    .contact-hero-copy h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .contact-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-panel {
        padding: 20px;
    }
}

/* About hero visual card repair */
.qa-about-hero-card {
    width: min(100%, 560px);
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
    aspect-ratio: 4 / 3;
    box-shadow:
        0 28px 76px rgba(0, 0, 0, 0.28),
        0 0 0 10px rgba(255, 255, 255, 0.08);
}

.qa-about-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: inherit;
    object-fit: cover;
}

.qa-hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 18px;
    background: rgba(4, 20, 31, 0.78);
    padding: 16px 18px;
}

@media (max-width: 899px) {
    .qa-about-hero-card {
        justify-self: stretch;
        width: 100%;
        max-width: 620px;
    }
}

@media (max-width: 520px) {
    .qa-about-hero-card {
        aspect-ratio: auto;
    }

    .qa-about-hero-card img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .qa-hero-note {
        position: static;
        margin: 10px;
    }
}

/* Contact hero right-side preview */
.contact-hero-grid {
    align-items: center;
}

.contact-hero-preview {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 198, 173, 0.18);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 253, 250, 0.9));
    padding: 22px;
    box-shadow: 0 28px 70px rgba(6, 25, 37, 0.1);
}

.contact-hero-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 88% 8%, rgba(15, 198, 173, 0.16), transparent 14rem),
        radial-gradient(circle at 10% 90%, rgba(87, 199, 125, 0.12), transparent 16rem);
}

.contact-preview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(15, 198, 173, 0.12);
    padding-bottom: 16px;
}

.contact-preview-head span,
.contact-preview-note span {
    color: #078f82;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-preview-head strong {
    color: var(--qm-ink);
    font-size: 18px;
}

.contact-preview-meter {
    display: grid;
    gap: 12px;
    border: 1px solid rgba(15, 198, 173, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
}

.contact-preview-meter div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.contact-preview-meter span {
    color: var(--qm-muted);
    font-size: 13px;
    font-weight: 700;
}

.contact-preview-meter strong {
    color: #078f82;
    font-size: 28px;
    line-height: 1;
}

.contact-preview-meter i {
    display: block;
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: rgba(15, 198, 173, 0.12);
}

.contact-preview-meter b {
    display: block;
    width: 84%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--qm-mint), var(--qm-green));
}

.contact-preview-list {
    display: grid;
    gap: 10px;
}

.contact-preview-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(15, 198, 173, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
    padding: 12px;
}

.contact-preview-list span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    background: rgba(15, 198, 173, 0.12);
    color: #078f82;
    font-size: 12px;
    font-weight: 900;
}

.contact-preview-list p,
.contact-preview-note p {
    margin: 0;
    color: var(--qm-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.contact-preview-note {
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(5, 35, 45, 0.95), rgba(7, 104, 96, 0.88));
    padding: 16px;
}

.contact-preview-note span {
    color: #8af2df;
}

.contact-preview-note p {
    margin-top: 6px;
    color: rgba(235, 250, 247, 0.84);
}

@media (min-width: 900px) {
    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.54fr);
        gap: 52px;
    }

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

    .contact-hero-copy .lead {
        max-width: 760px;
    }

    .contact-hero-sketch {
        display: none;
    }
}

@media (min-width: 1180px) {
    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.52fr);
        gap: 70px;
    }
}

@media (max-width: 899px) {
    .contact-hero-preview {
        max-width: 560px;
    }
}

/* Contact hero sketch-only right side */
.contact-hero-preview {
    display: none;
}

.contact-hero-sketch {
    display: block;
    justify-self: center;
    width: min(100%, 470px);
    margin-top: 0;
    opacity: 0.72;
}

@media (min-width: 900px) {
    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.5fr);
        gap: 64px;
    }

    .contact-hero-sketch {
        display: block;
        justify-self: end;
    }
}

@media (min-width: 1180px) {
    .contact-hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.48fr);
    }
}
