@font-face {
    font-family: "Urbanist";
    src: url("../fonts/urbanist/Urbanist-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../fonts/urbanist/Urbanist-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../fonts/urbanist/Urbanist-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Urbanist";
    src: url("../fonts/urbanist/Urbanist-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/public/PublicSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/public/PublicSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Public Sans";
    src: url("../fonts/public/PublicSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #fd8b0e;
    --primary-dark: #d96c00;
    --primary-light: #ffb25d;
    --primary-slate: #fff9f3;
    --ink: #142033;
    --muted: #5f6a7c;
    --line: #eee4d7;
    --card: #ffffff;
    --shadow-soft: 0 24px 70px rgba(20, 32, 51, 0.08);
    --shadow-card: 0 18px 40px rgba(20, 32, 51, 0.06);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
    --font-client: "Urbanist", sans-serif;
    --font-admin: "Public Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-client);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(253, 139, 14, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 178, 93, 0.16), transparent 24%),
        linear-gradient(180deg, #fffdfb 0%, #fff8f1 58%, #fff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(30px);
    opacity: 0.65;
}

body::before {
    width: 280px;
    height: 280px;
    top: 140px;
    left: -80px;
    background: rgba(253, 139, 14, 0.12);
}

body::after {
    width: 360px;
    height: 360px;
    bottom: -120px;
    right: -90px;
    background: rgba(255, 178, 93, 0.18);
}

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

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

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

button {
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
}

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

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

.page-shell {
    position: relative;
    isolation: isolate;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 252, 249, 0.8);
    border-bottom: 1px solid rgba(238, 228, 215, 0.8);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(20, 32, 51, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(145deg, var(--primary), #ff9e31);
    box-shadow: 0 18px 30px rgba(253, 139, 14, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

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

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: var(--font-admin);
}

.site-nav a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--primary-dark);
}

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    font-family: var(--font-admin);
    font-size: 0.95rem;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    min-height: 54px;
    padding-inline: 24px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(145deg, var(--primary), #ff9d30);
    box-shadow: 0 16px 28px rgba(253, 139, 14, 0.22);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #ea7f0b, var(--primary-dark));
}

.btn-soft {
    color: var(--primary-dark);
    background: var(--primary-slate);
    border: 1px solid rgba(253, 139, 14, 0.14);
}

.btn-soft:hover {
    background: #fff;
    border-color: rgba(253, 139, 14, 0.24);
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.btn-ghost:hover {
    border-color: rgba(253, 139, 14, 0.24);
    color: var(--primary-dark);
}

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

.hero {
    padding-top: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 36px;
    align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-banner h2 {
    margin: 0;
    font-family: var(--font-client);
    letter-spacing: -0.04em;
    line-height: 0.96;
}

.hero-copy h1 {
    max-width: 10.5ch;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(253, 139, 14, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-admin);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.lead,
.section-heading p,
.feature-panel p,
.module-card p,
.step-card p,
.pricing-note,
.faq-item p,
.cta-banner p,
.site-footer p {
    margin: 0;
    color: var(--muted);
    font-family: var(--font-admin);
    line-height: 1.75;
}

.lead {
    max-width: 62ch;
    margin-top: 22px;
    font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-points li {
    position: relative;
    padding: 16px 16px 16px 42px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
    font-family: var(--font-admin);
    color: var(--ink);
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    box-shadow: 0 0 0 5px rgba(253, 139, 14, 0.12);
}

.trust-row {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card {
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
}

.trust-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.trust-card span {
    color: var(--muted);
    font-family: var(--font-admin);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 640px;
    display: grid;
    place-items: center;
    padding: 34px 0;
}

.floating-card,
.mock-window {
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-soft);
}

.floating-card {
    position: absolute;
    z-index: 2;
    max-width: 220px;
    padding: 18px 18px 16px;
}

.floating-card-top {
    top: 20px;
    left: 14px;
}

.floating-card-bottom {
    right: 18px;
    bottom: 28px;
    max-width: 250px;
}

.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(253, 139, 14, 0.1);
    color: var(--primary-dark);
    font-family: var(--font-admin);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.floating-card strong,
.mock-summary strong,
.chart-note strong,
.step-index,
.pricing-card h3 {
    letter-spacing: -0.04em;
}

.floating-card strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.floating-card p {
    margin: 0;
    color: var(--muted);
    font-family: var(--font-admin);
    line-height: 1.6;
    font-size: 0.92rem;
}

.floating-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.floating-row .dot {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 6px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    box-shadow: 0 0 0 6px rgba(253, 139, 14, 0.12);
}

.mock-window {
    width: min(100%, 520px);
    padding: 16px;
    transform: rotate(2deg);
}

.mock-window-top {
    display: flex;
    gap: 7px;
    margin-bottom: 16px;
}

.mock-window-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ffd1a5;
}

.mock-window-top span:first-child {
    background: #ff6e5e;
}

.mock-window-top span:nth-child(2) {
    background: #ffcf5a;
}

.mock-window-top span:nth-child(3) {
    background: #57c38b;
}

.mock-window-body {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffefc, #fff7ef);
    border: 1px solid rgba(253, 139, 14, 0.08);
}

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

.mock-summary article {
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(238, 228, 215, 0.9);
}

.mock-summary span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-family: var(--font-admin);
    font-size: 0.82rem;
}

.mock-summary strong {
    display: block;
    font-size: 1.15rem;
}

.mock-chart {
    margin-top: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
    align-items: end;
}

.chart-bars {
    height: 240px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(253, 139, 14, 0.06), rgba(255, 255, 255, 0)),
        repeating-linear-gradient(
            180deg,
            rgba(238, 228, 215, 0.35) 0,
            rgba(238, 228, 215, 0.35) 1px,
            transparent 1px,
            transparent 34px
        );
    border: 1px solid rgba(238, 228, 215, 0.88);
}

.chart-bars span {
    flex: 1;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    box-shadow: 0 10px 22px rgba(253, 139, 14, 0.24);
}

.chart-note {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(238, 228, 215, 0.9);
}

.chart-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.chart-note span {
    color: var(--muted);
    font-family: var(--font-admin);
    line-height: 1.7;
}

.mock-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mock-tags span,
.chip-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(253, 139, 14, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-admin);
    font-size: 0.84rem;
    font-weight: 600;
}

.section-alt {
    background: rgba(255, 252, 248, 0.7);
    border-top: 1px solid rgba(238, 228, 215, 0.6);
    border-bottom: 1px solid rgba(238, 228, 215, 0.6);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2,
.cta-banner h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-heading p {
    margin-top: 16px;
    max-width: 64ch;
    font-size: 1rem;
}

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

.feature-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
}

.feature-panel h3 {
    margin: 0 0 12px;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.feature-panel-soft {
    background:
        linear-gradient(180deg, rgba(253, 139, 14, 0.08), transparent 48%),
        rgba(255, 255, 255, 0.82);
}

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

.bullet-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-family: var(--font-admin);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    box-shadow: 0 0 0 5px rgba(253, 139, 14, 0.12);
}

.chip-grid {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.module-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    border-color: rgba(253, 139, 14, 0.28);
    box-shadow: 0 24px 50px rgba(20, 32, 51, 0.09);
}

.module-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--primary), #ff9d30);
    color: #fff;
    box-shadow: 0 18px 28px rgba(253, 139, 14, 0.22);
    margin-bottom: 18px;
}

.module-icon svg {
    width: 28px;
    height: 28px;
}

.module-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.module-card p {
    font-size: 0.95rem;
}

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

.step-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 64px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: var(--primary-dark);
    background: rgba(253, 139, 14, 0.1);
    font-size: 1.4rem;
    font-weight: 700;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

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

.pricing-card {
    position: relative;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: rgba(253, 139, 14, 0.3);
    box-shadow: 0 28px 70px rgba(253, 139, 14, 0.15);
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(253, 139, 14, 0.1);
    font-family: var(--font-admin);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.pricing-note {
    margin-top: 10px;
    font-size: 0.96rem;
}

.pricing-list {
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.pricing-list li {
    position: relative;
    padding-left: 28px;
    font-family: var(--font-admin);
    color: var(--ink);
}

.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
}

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

.faq-item {
    padding: 22px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(238, 228, 215, 0.9);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    list-style: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--primary-dark);
    font-size: 1.25rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding-top: 14px;
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        radial-gradient(circle at top right, rgba(255, 178, 93, 0.2), transparent 34%),
        linear-gradient(145deg, #ffffff, #fff6ea);
    border: 1px solid rgba(238, 228, 215, 0.95);
    box-shadow: var(--shadow-soft);
}

.cta-banner p {
    max-width: 60ch;
    margin-top: 16px;
}

.site-footer {
    padding: 32px 0 54px;
    border-top: 1px solid rgba(238, 228, 215, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: start;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    font-family: var(--font-admin);
}

.footer-links a {
    color: var(--muted);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary-dark);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .hero-grid,
    .split-grid,
    .cta-banner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 880px) {
    .nav-shell {
        min-height: 70px;
    }

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

    .site-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        z-index: 60;
        display: grid;
        gap: 0;
        margin-left: 0;
        padding: 14px;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 14px 10px;
        border-radius: 16px;
    }

    .site-nav a:hover {
        background: var(--primary-slate);
    }

    .nav-actions {
        display: none;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .trust-row,
    .hero-points,
    .module-grid,
    .timeline-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .mock-window {
        width: 100%;
        transform: none;
    }

    .mock-summary,
    .mock-chart {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 56px 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 22px), var(--container));
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
    }

    .section-heading h2,
    .cta-banner h2 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
    }

    .feature-panel,
    .module-card,
    .step-card,
    .pricing-card,
    .faq-item,
    .cta-banner {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn,
    .btn-lg,
    .btn-block {
        width: 100%;
    }

    .floating-card {
        position: static;
        max-width: none;
    }

    .hero-visual {
        padding: 20px 0 0;
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .mock-window {
        order: 2;
    }

    .floating-card-top,
    .floating-card-bottom {
        order: 1;
    }

    .trust-card strong {
        font-size: 1.4rem;
    }
}
