




:root {
    --orange: #ec6928;
    --orange-700: #c2410c;
    --orange-500: #ec6928;
    --blue: var(--orange);
    --blue-700: var(--orange-700);
    --navy: #111315;
    --ink: #17191f;
    --muted: #667085;
    --muted-2: #8792a2;
    --line: #e5e7eb;
    --soft: #fafafa;
    --paper: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.demo-page {
    background: var(--soft);
}

body::selection {
    color: #ffffff;
    background: var(--blue);
}

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

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 16px clamp(18px, 5vw, 76px);
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 116px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
}

.brand img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    color: #303746;
    font-size: 14px;
    font-weight: 500;
}

.main-nav a {
    padding: 8px 0;
}

.main-nav a:hover,
.login-link:hover,
.site-footer a:hover {
    color: var(--blue);
}

.header-actions,
.hero-actions,
.cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.login-link {
    color: #303746;
    font-size: 14px;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: var(--ink);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: none;
}

.btn-primary {
    color: #ffffff;
    background: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-700);
}

.btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
    color: #ffffff;
    background: var(--ink);
}

.btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: transparent;
}

.btn-large {
    min-height: 52px;
    padding: 15px 24px;
    font-size: 15px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    color: #fed7aa;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    min-height: 680px;
    padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 76px);
    overflow: hidden;
    color: #ffffff;
    background: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(124, 45, 18, 0.78);
}

.hero::after {
    content: none;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 760px;
}

.hero h1,
.section-intro h2,
.platform-copy h2,
.audience-copy h2,
.final-cta h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.08;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(32px, 4.4vw, 48px);
}

.hero-copy p {
    max-width: 650px;
    margin: 20px 0 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.6vw, 18px);
}

.assurance-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.assurance-row span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 400;
}

.hero-visual {
    min-height: 460px;
}

.screen-shell {
    position: absolute;
    right: 0;
    bottom: 38px;
    width: min(100%, 720px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: #ffffff;
}

.screen-shell img,
.phone-layer,
.person-image,
.audience-visual img,
.featured-module img {
    object-fit: cover;
}

.screen-shell img {
    width: 100%;
    height: 360px;
}

.phone-layer {
    position: absolute;
    right: -20px;
    top: -4px;
    width: min(36vw, 255px);
    aspect-ratio: 4 / 5;
    max-width: 39%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    filter: none;
}

.hero-metric {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 5px;
    min-width: 192px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
}

.hero-metric span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-metric strong {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.hero-metric small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.metric-bottom {
    right: 34px;
    bottom: 10px;
}

.module-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    padding: 24px clamp(18px, 5vw, 76px) 36px;
    background: #ffffff;
}

.module-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #344054;
    background: #ffffff;
    font-weight: 500;
}

.certification-section {
    background: #ffffff;
}

.certification-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 8px;
    background: #ffffff;
}

.certification-mark {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 8px;
    background: #ffffff;
}

.certification-mark img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.certification-copy .eyebrow {
    margin-bottom: 10px;
    color: var(--muted);
}

.certification-copy h2 {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: 0;
}

.certification-copy p {
    max-width: 720px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.certification-copy strong {
    color: var(--ink);
    font-weight: 600;
}

.certification-number {
    display: grid;
    gap: 6px;
    min-width: 230px;
    padding: 18px 20px;
    border-radius: 8px;
    background: #ffffff;
}

.certification-number span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.certification-number strong {
    color: var(--ink);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
}

.section {
    padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 76px);
}

.section-intro {
    max-width: 930px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-intro.compact {
    max-width: 820px;
}

.section-intro p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 16px;
}

.section-intro .eyebrow,
.platform-copy .eyebrow,
.audience-copy .eyebrow {
    color: var(--orange);
}

.section-intro h2,
.platform-copy h2,
.audience-copy h2,
.final-cta h2 {
    font-size: clamp(28px, 3.6vw, 42px);
}

.problem-section,
.modules-section,
.faq-section {
    background: var(--soft);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.problem-grid article,
.module-card,
.role-list article,
.timeline article,
.faq-grid article {
    border: 1px solid var(--line);
    background: #ffffff;
}

.problem-grid article {
    min-height: 310px;
    padding: 24px;
    border-radius: 8px;
}

.problem-grid span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: var(--orange);
    font-weight: 500;
}

.problem-grid article:nth-child(2) span {
    color: var(--orange);
}

.problem-grid article:nth-child(3) span {
    color: var(--orange);
}

.problem-grid h3,
.module-card h3,
.role-list h3,
.timeline h3,
.faq-grid h3 {
    margin: 20px 0 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.problem-grid p,
.platform-copy p,
.module-card p,
.role-list p,
.timeline p,
.faq-grid p,
.audience-copy p,
.final-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.platform-section {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
    align-items: center;
    gap: clamp(34px, 6vw, 92px);
    background: #ffffff;
}

.platform-copy {
    max-width: 710px;
}

.platform-copy p {
    margin: 22px 0 24px;
    font-size: 16px;
}

.platform-copy .value-lead {
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 600;
}

.value-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.value-list span {
    position: relative;
    padding-left: 30px;
    color: #344054;
    font-weight: 400;
}

.value-list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--orange);
}

.platform-media {
    position: relative;
    min-height: 560px;
}

.person-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(100%, 720px);
    height: 460px;
    border-radius: 8px;
}

.results-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 clamp(18px, 5vw, 76px);
    background: var(--ink);
}

.results-section {
    background: var(--ink);
}

.results-intro {
    padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 76px) 8px;
    color: #ffffff;
}

.results-intro h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0;
}

.results-band div {
    min-height: 140px;
    padding: 28px 24px;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.results-band div:last-child {
    border-right: 0;
}

.results-band strong {
    display: block;
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    line-height: 1;
}

.results-band span {
    display: block;
    max-width: 220px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

.module-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr 0.88fr;
    gap: 18px;
}

.module-card {
    min-height: 260px;
    padding: 24px;
    border-radius: 8px;
}

.featured-module {
    grid-row: span 2;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding-bottom: 0;
}

.featured-module img {
    width: calc(100% + 36px);
    max-width: none;
    margin: 24px -18px 0;
    height: 280px;
    border-radius: 8px 8px 0 0;
}

.module-kicker {
    display: inline-flex;
    width: max-content;
    min-height: 34px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.module-card:nth-child(3n) .module-kicker {
    color: var(--orange);
}

.module-card:nth-child(4n) .module-kicker {
    color: var(--orange);
}

.audience-section {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 6vw, 92px);
    align-items: center;
    background: #ffffff;
}

.audience-visual {
    position: relative;
    min-height: 540px;
}

.audience-visual img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(100%, 700px);
    height: 450px;
    border-radius: 8px;
}

.audience-copy {
    max-width: 760px;
}

.role-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.role-list article {
    padding: 18px 20px;
    border-radius: 8px;
}

.role-list h3 {
    margin-top: 0;
}

.implementation-section {
    position: relative;
    background: url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
    color: #ffffff;
}

.implementation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 19, 21, 0.78);
}

.implementation-section > * {
    position: relative;
    z-index: 1;
}

.implementation-section .eyebrow {
    color: #fed7aa;
}

.implementation-section .section-intro h2 {
    color: #ffffff;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.timeline article {
    min-height: 260px;
    padding: 24px;
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline span {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    color: var(--orange-700);
    background: #ffffff;
    font-weight: 500;
}

.timeline p {
    color: rgba(255, 255, 255, 0.74);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(17, 19, 21, 0.06);
}

.faq-grid article {
    min-height: auto;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
}

.faq-grid article:last-child {
    border-bottom: 0;
}

.faq-grid h3 {
    margin: 0;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: 0;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
    background: #fff7f2;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    margin: 0;
    padding: 0 24px;
    overflow: hidden;
    color: var(--muted);
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 180px;
    padding: 0 24px 20px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item {
    background: #ffffff;
}

.final-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 76px);
    color: #ffffff;
    background: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(124, 45, 18, 0.82);
}

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

.final-cta .eyebrow {
    color: #fed7aa;
}

.final-cta p {
    max-width: 760px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.site-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px clamp(18px, 5vw, 76px);
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.site-footer .brand {
    min-width: 0;
    font-size: 20px;
}

.site-footer .brand img {
    width: 38px;
    height: 38px;
}

.footer-brand-block {
    display: grid;
    gap: 10px;
    max-width: 460px;
}

.footer-brand-block p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    color: #344054;
    font-weight: 400;
}

.demo-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    min-height: calc(100vh - 79px);
    padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 76px);
    background: linear-gradient(90deg, rgba(124, 45, 18, 0.9), rgba(124, 45, 18, 0.72)), url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=82") center / cover no-repeat;
}

.demo-copy {
    position: sticky;
    top: 110px;
    max-width: 680px;
    color: #ffffff;
}

.demo-copy h1 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: 0;
}

.demo-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.5vw, 18px);
}

.demo-form {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 19, 21, 0.18);
}

.form-section-title {
    display: grid;
    gap: 4px;
}

.form-section-title strong {
    font-size: 18px;
    font-weight: 600;
}

.form-section-title span {
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.demo-form label {
    display: grid;
    gap: 8px;
}

.demo-form label > span {
    color: #344054;
    font-size: 14px;
    font-weight: 500;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #ffffff;
    font: inherit;
    outline: none;
}

.demo-form textarea {
    resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(236, 105, 40, 0.14);
}

.demo-form small {
    color: #b42318;
    font-size: 12px;
}

.form-wide,
.message-field {
    grid-column: 1 / -1;
}

.form-alert {
    padding: 13px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-alert.success {
    color: #05603a;
    border: 1px solid #abefc6;
    background: #ecfdf3;
}

.form-alert.error {
    color: #b42318;
    border: 1px solid #fecdca;
    background: #fef3f2;
}

@media (max-width: 1180px) {
    .hero,
    .platform-section,
    .audience-section,
    .final-cta,
    .demo-hero {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        max-width: 900px;
    }

    .hero-visual {
        min-height: 590px;
    }

    .phone-layer {
        width: 220px;
    }

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

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

    .results-band div:nth-child(2n) {
        border-right: 0;
    }

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

    .demo-copy {
        position: static;
        max-width: 880px;
    }

    .featured-module {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .site-header {
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .main-nav {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #ffffff;
    }

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

    .main-nav a {
        padding: 13px 10px;
    }

    .certification-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .certification-number {
        width: 100%;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .header-actions .btn,
    .login-link {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .hero-visual {
        min-height: 520px;
    }

    .screen-shell {
        width: 100%;
        right: 0;
        bottom: 48px;
        border-width: 7px;
        border-radius: 8px;
    }

    .screen-shell img {
        height: 360px;
    }

    .phone-layer {
        width: 170px;
        right: -4px;
        top: 18px;
    }

    .metric-bottom {
        right: 16px;
        bottom: 0;
    }

    .platform-media,
    .audience-visual {
        min-height: 470px;
    }

    .person-image,
    .audience-visual img {
        height: 430px;
    }

    .problem-grid,
    .timeline,
    .faq-grid,
    .module-grid {
        grid-template-columns: 1fr;
    }

    .results-band {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .results-band div {
        min-height: 138px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .results-band div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .site-header,
    .hero,
    .section,
    .demo-hero,
    .final-cta,
    .site-footer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand {
        font-size: 22px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .btn,
    .btn-large {
        width: 100%;
        min-height: 54px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-copy p,
    .platform-copy p,
    .problem-grid p,
    .module-card p,
    .role-list p,
    .timeline p,
    .faq-grid p,
    .final-cta p {
        font-size: 16px;
    }

    .assurance-row span {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
    }

    .screen-shell {
        bottom: 54px;
        border-width: 5px;
        border-radius: 8px;
    }

    .screen-shell img {
        height: 300px;
    }

    .phone-layer {
        width: 122px;
        max-width: none;
    }

    .hero-metric {
        min-width: 150px;
        padding: 13px 14px;
        border-radius: 8px;
    }

    .hero-metric strong {
        font-size: 22px;
    }

    .hero-metric small {
        font-size: 12px;
    }

    .metric-bottom {
        bottom: 8px;
    }

    .module-strip {
        justify-content: flex-start;
        padding-right: 16px;
        padding-left: 16px;
    }

    .module-strip span {
        min-height: 40px;
        padding: 10px 13px;
        font-size: 14px;
    }

    .section-intro h2,
    .platform-copy h2,
    .audience-copy h2,
    .demo-copy h1,
    .final-cta h2 {
        font-size: 28px;
    }

    .demo-nav {
        display: none;
    }

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

    .demo-form {
        padding: 20px;
    }

    .problem-grid article,
    .module-card,
    .timeline article,
    .faq-grid article {
        min-height: auto;
        padding: 24px;
        border-radius: 8px;
    }

    .faq-grid article {
        padding: 0;
        border-radius: 0;
    }

    .faq-question {
        padding: 18px 16px;
    }

    .faq-answer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .faq-item.is-open .faq-answer {
        padding-right: 16px;
        padding-left: 16px;
    }

    .platform-media,
    .audience-visual {
        min-height: 390px;
    }

    .person-image,
    .audience-visual img {
        height: 360px;
    }

    .featured-module img {
        width: calc(100% + 24px);
        margin-right: -12px;
        margin-left: -12px;
    }

    .site-footer {
        display: grid;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}
