:root {
    --text: #111827;
    --muted: #5f6b7a;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --blue: #2563eb;
    --purple: #7c3aed;
    --green: #16a34a;
    --radius: 24px;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.narrow {
    width: min(100% - 32px, 900px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

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

.logo,
.nav-links,
.breadcrumbs-inner,
.hero-actions,
.team-note,
.company-head {
    display: flex;
    align-items: center;
}

.logo {
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
}

.logo-mark {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    font-size: 14px;
    font-weight: 900;
}

.nav-links {
    gap: 24px;
}

.nav-links button,
.nav-links a {
    border: 0;
    background: transparent;
    color: #4b5563;
    font: inherit;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.nav-links button:hover,
.nav-links a:hover {
    color: #111827;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #111827;
    border-radius: 3px;
    transition: .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.breadcrumbs {
    background: #f9fafb;
    border-bottom: 1px solid var(--line);
}

.breadcrumbs-inner {
    gap: 10px;
    padding: 12px 0;
    color: #64748b;
    font-size: 14px;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumbs-inner strong {
    color: #111827;
}

.hero,
.section {
    padding: 96px 0;
}

.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 45%, #faf5ff 100%);
}

.hero-grid,
.cta-grid,
.review-card,
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    margin: 0 0 24px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.lead {
    max-width: 640px;
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 21px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 16px;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--blue);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .55;
        transform: scale(1.4);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 14px;
    border: 0;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    box-shadow: 0 15px 30px rgba(37, 99, 235, .24);
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, .32);
}

.btn-secondary {
    color: #111827;
    background: #fff;
    border: 2px solid var(--line);
}

.btn-small {
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 10px;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

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

.check-list li {
    position: relative;
    padding-left: 32px;
    color: #374151;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    color: var(--blue);
    background: #dbeafe;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    font-weight: 900;
}

.team-note {
    gap: 12px;
    width: fit-content;
    margin-top: 32px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.team-note p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.avatars {
    display: flex;
    margin-left: 6px;
}

.avatars span {
    width: 32px;
    height: 32px;
    margin-left: -6px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6, #a855f7);
}

.avatars span:nth-child(2) {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.avatars span:nth-child(3) {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.hero-preview {
    position: relative;
}

.glow {
    position: absolute;
    inset: -16px;
    border-radius: 32px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    filter: blur(36px);
    opacity: .12;
}

.dashboard-card,
.wide-card,
.review-card,
.trust-card {
    position: relative;
    background: #fff;
    border: 1px solid #dfe5ee;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.dashboard-card {
    padding: 24px;
}

.dashboard-head,
.request-top,
.conversion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-head {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.dashboard-head h3,
.request-card p,
.conversion span,
.section-title h2,
.section-title p {
    margin: 0;
}

.dashboard-head span,
.conversion span {
    color: var(--muted);
    font-size: 14px;
}

.request-card {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid;
}

.request-green {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border-color: #bbf7d0;
}

.request-blue {
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    border-color: #bfdbfe;
}

.request-yellow {
    background: linear-gradient(135deg, #fefce8, #fff7ed);
    border-color: #fde68a;
}

.request-top strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.request-top strong span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.request-top em {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    color: #166534;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.request-card p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.conversion {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.conversion strong {
    color: var(--green);
}

.white {
    background: #fff;
}

.soft {
    background: linear-gradient(135deg, #f8fafc 0%, #f9fafb 45%, #eff6ff 100%);
}

.soft-purple {
    background: linear-gradient(135deg, #f8fafc 0%, #f9fafb 45%, #faf5ff 100%);
}

.section-title {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-title p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 20px;
}

.cards-grid,
.journey-grid,
.stats-grid,
.metric-grid,
.testimonial-grid,
.steps-grid {
    display: grid;
    gap: 24px;
}

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

.problem-card,
.feature-card,
.benefit-card,
.case-card,
.journey article,
.stats-grid article,
.metric-grid article,
.testimonial-grid article,
.steps-grid article,
.cta-info article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}

.problem-card,
.feature-card,
.benefit-card {
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.problem-card:hover,
.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, .12);
}

.problem-card h3,
.feature-card h3,
.benefit-card h3,
.case-card h3,
.journey h3,
.wide-card h3,
.review-card h3,
.trust-card h3,
.steps-grid h3 {
    margin: 0 0 10px;
}

.problem-card p,
.feature-card p,
.benefit-card p,
.case-card p,
.journey p,
.stats-grid p,
.metric-grid p,
.steps-grid p,
.cta-info p,
.footer p {
    margin: 0;
    color: var(--muted);
}

.icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
}

.red {
    background: linear-gradient(135deg, #ef4444, #e11d48);
}

.orange {
    background: linear-gradient(135deg, #f97316, #d97706);
}

.amber {
    background: linear-gradient(135deg, #eab308, #f97316);
}

.blue {
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
}

.purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.pink {
    background: linear-gradient(135deg, #ec4899, #e11d48);
}

.green {
    background: linear-gradient(135deg, #22c55e, #059669);
}

.cyan {
    background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.result-box,
.green-box {
    margin-top: 48px;
    padding: 24px;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    color: #374151;
    font-size: 18px;
    text-align: center;
}

.green-box {
    margin-top: 32px;
    border-color: #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.wide-card {
    margin-top: 64px;
    padding: 32px;
}

.wide-card > h3 {
    margin-bottom: 32px;
    text-align: center;
    font-size: 26px;
}

.pipeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
}

.pipeline div {
    position: relative;
    text-align: center;
}

.pipeline div:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -14px;
    top: 20px;
    color: #cbd5e1;
    font-weight: 900;
}

.pipeline span {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
    font-weight: 900;
}

.pipeline p {
    margin: 12px 0 0;
    font-weight: 700;
    font-size: 14px;
}

.journey {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.journey h3 {
    margin-bottom: 32px;
    font-size: 26px;
    text-align: center;
}

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

.journey article {
    padding: 22px;
}

.journey b {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 12px;
}

.journey h4 {
    margin: 0 0 6px;
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
}

.stats-grid article {
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

.stats-grid article:nth-child(2) {
    background: linear-gradient(135deg, #faf5ff, #f5f3ff);
}

.stats-grid article:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.stats-grid strong,
.metric-grid strong,
.launch-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}

.accent-strip {
    margin-top: 48px;
    padding: 32px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    border-radius: var(--radius);
    text-align: center;
}

.accent-strip h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.accent-strip p {
    max-width: 850px;
    margin: 0 auto;
    color: #dbeafe;
    font-size: 18px;
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 8px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

.benefit-card span {
    display: block;
    width: 56px;
    height: 56px;
    margin: 20px 0 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
}

.benefit-card strong {
    display: block;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
    font-size: 27px;
    line-height: 1;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefit-card small,
.metric-grid small,
.launch-card small,
.testimonial-grid small {
    display: block;
    color: #64748b;
}

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

.metric-grid article {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    box-shadow: none;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.case-card {
    overflow: hidden;
    padding: 30px;
    background: linear-gradient(135deg, #f9fafb, #fff);
}

.case-card::before {
    content: "";
    display: block;
    height: 6px;
    margin: -30px -30px 24px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

.role {
    margin-bottom: 24px !important;
    font-size: 14px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.before-after h4 {
    margin: 0 0 14px;
}

.before-after ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.before-after li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    font-size: 14px;
}

.before-after div:first-child li::before,
.before-after div:last-child li::before {
    position: absolute;
    left: 0;
    font-weight: 900;
}

.before-after div:first-child li::before {
    content: "×";
    color: #ef4444;
}

.before-after div:last-child li::before {
    content: "✓";
    color: #16a34a;
}

.centered {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.centered h3 {
    margin: 0 0 12px;
    font-size: 26px;
}

.centered p {
    margin: 0 auto 24px;
    max-width: 720px;
}

.review-card {
    padding: 38px;
    align-items: start;
}

.company-head {
    gap: 16px;
    margin-bottom: 22px;
}

.company-head > span,
.trust-card span {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    font-weight: 900;
}

.stars {
    color: #facc15;
    letter-spacing: 2px;
}

.review-card blockquote {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
    font-style: italic;
}

.review-card aside {
    display: grid;
    gap: 14px;
}

.review-card aside article {
    padding: 18px;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.review-card aside strong {
    color: var(--green);
    font-size: 26px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
}

.testimonial-grid article {
    padding: 24px;
}

.testimonial-grid p {
    color: #374151;
}

.trust-card {
    margin-top: 48px;
    padding: 32px;
    text-align: center;
}

.trust-card > div {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.trust-card span {
    margin: 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(135deg, #f9fafb, #fff);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.faq-list summary {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.faq-list p {
    margin: 0;
    padding: 0 24px 22px;
    color: #374151;
}

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

.steps-grid article {
    padding: 32px;
    text-align: center;
}

.steps-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    font-size: 14px;
    font-weight: 800;
}

.split {
    align-items: stretch;
}

.launch-card {
    padding: 32px;
    border: 1px solid #bfdbfe;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #faf5ff);
    text-align: center;
}

.launch-card strong {
    font-size: 52px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.launch-card p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 18px;
}

.launch-card small {
    margin-top: 8px;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    color: #fff;
    background: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(135deg, #2563eb, #9333ea 52%, #4338ca);
    background-size: 32px 32px, 32px 32px, auto;
}

.light h2,
.light p {
    color: #fff;
}

.light p {
    color: #dbeafe;
}

.light-pill {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
}

.demo-form,
.cta-info article {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 24px;
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(16px);
}

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

.repocrm-embed {
    gap: 22px;
}

.repocrm-embed__head {
    display: grid;
    gap: 8px;
}

.repocrm-embed__head h3 {
    margin: 0;
    color: #fff;
    font-size: 26px;
}

.repocrm-embed__head p {
    margin: 0;
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.55;
    text-align: left;
}

#repocrm-form-na2eoi5q {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

#repocrm-form-na2eoi5q iframe {
    display: block;
    transition: height .2s ease;
}

.demo-form label {
    display: grid;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.demo-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    color: #111827;
    background: rgba(255, 255, 255, .92);
    outline: none;
}

.demo-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
}

.btn-form {
    color: var(--blue);
    background: #fff;
}

.demo-form p {
    margin: 0;
    color: #dbeafe;
    font-size: 13px;
    text-align: center;
}

.cta-info {
    display: grid;
    gap: 22px;
}

.cta-info article {
    box-shadow: none;
}

.cta-info h3,
.cta-info h4 {
    margin: 0 0 18px;
    color: #fff;
}

.cta-info p,
.light-check li {
    color: #e0edff;
}

.light-check li::before {
    color: #16a34a;
    background: rgba(255, 255, 255, .16);
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mini-grid div {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    text-align: center;
}

.mini-grid strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.footer {
    padding: 48px 0 28px;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 36px;
}

.footer-logo {
    margin-bottom: 16px;
    color: #fff;
}

.footer h3 {
    margin: 0 0 16px;
    color: #fff;
}

.footer a {
    display: block;
    margin-bottom: 9px;
    color: #d1d5db;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #1f2937;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .cards-grid,
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pipeline div:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px 24px 24px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    }

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

    .nav-links button {
        text-align: left;
    }

    .hero-grid,
    .cta-grid,
    .review-card,
    .split,
    .cases-grid,
    .before-after {
        grid-template-columns: 1fr;
    }

    .hero,
    .section,
    .cta-section {
        padding: 72px 0;
    }

    .stats-grid,
    .metric-grid,
    .testimonial-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-card > div {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .cards-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title p,
    .lead {
        font-size: 18px;
    }

    .hero-actions,
    .hero-actions .btn,
    .team-note {
        width: 100%;
    }

    .team-note {
        align-items: flex-start;
    }

    .dashboard-card,
    .wide-card,
    .review-card,
    .journey,
    .case-card,
    .demo-form,
    .cta-info article {
        padding: 20px;
    }

    .request-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .mini-grid,
    .trust-card > div {
        grid-template-columns: 1fr 1fr;
    }

    .launch-card strong {
        font-size: 42px;
    }
}
