:root {
    --ink: #0d1526;
    --panel: #111c31;
    --panel-soft: #f6f8fb;
    --line: rgba(15, 23, 42, 0.12);
    --text: #172033;
    --muted: #64748b;
    --white: #ffffff;
    --orange: #ff7a3d;
    --orange-dark: #e95f22;
    --blue: #23b7e8;
    --green: #20b486;
    --shadow: 0 24px 70px rgba(13, 21, 38, 0.14);
}

@keyframes heroScreenFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes softPulse {
    0%, 100% { box-shadow: 0 14px 28px rgba(255, 122, 61, 0.24); }
    50% { box-shadow: 0 18px 40px rgba(255, 122, 61, 0.36); }
}

@keyframes stickyCtaIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

a {
    text-decoration: none;
}

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

.navbar-prime {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar-prime.scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.nav-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

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

.nav-links a {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--orange-dark);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.language-switcher button {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher button:hover,
.language-switcher button.active {
    color: #fff;
    background: var(--orange);
}

.btn {
    min-height: 46px;
    border-radius: 8px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    will-change: transform;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 122, 61, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 122, 61, 0.34);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(15, 23, 42, 0.14);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #f8fafc;
    color: var(--ink);
}

.btn-lg-main {
    min-height: 54px;
    padding-inline: 28px;
    font-size: 1.05rem;
    animation: softPulse 3.2s ease-in-out infinite;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 104px;
    background:
        radial-gradient(circle at 78% 22%, rgba(35, 183, 232, 0.18), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 42%, #edf7fb 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% 45%;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 122, 61, 0.18), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    color: var(--orange-dark);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(2.8rem, 6.3vw, 5.45rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
}

h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

h3 {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
}

.hero-copy p {
    max-width: 650px;
    color: #46566f;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.hero-metrics div {
    min-height: 84px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    color: var(--ink);
    font-size: 1rem;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.86rem;
}

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

.hero-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow);
    animation: heroScreenFloat 6s ease-in-out infinite;
}

.hero-logo {
    position: absolute;
    width: clamp(116px, 22vw, 190px);
    right: -18px;
    bottom: 8px;
    padding: 18px;
    background: rgba(13, 21, 38, 0.92);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 48px rgba(13, 21, 38, 0.22);
    transition: transform 0.25s ease;
}

.hero-visual:hover .hero-logo {
    transform: translateY(-4px) rotate(1deg);
}

.section {
    padding: 96px 0;
}

.muted {
    background: var(--panel-soft);
}

.split,
.kaizen-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.section-text p,
.kaizen p,
.final-cta p {
    color: var(--muted);
    font-size: 1.08rem;
}

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

.problem-section {
    background: #fff;
}

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

.pain-grid article {
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pain-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 61, 0.26);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.pain-grid i {
    color: var(--orange-dark);
    font-size: 1.25rem;
    flex: 0 0 auto;
}

.pain-grid span {
    color: #334155;
    font-weight: 700;
    line-height: 1.45;
}

.proof-section {
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

.proof-grid,
.roi-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: center;
    gap: 52px;
}

.proof-grid p,
.roi-grid p {
    color: var(--muted);
    font-size: 1.08rem;
}

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

.proof-cards article,
.roi-cards article {
    min-height: 132px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.proof-cards article:hover,
.roi-cards article:hover {
    transform: translateY(-4px);
    border-color: rgba(35, 183, 232, 0.24);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.proof-cards strong,
.proof-cards span,
.roi-cards strong,
.roi-cards span {
    display: block;
}

.proof-cards strong,
.roi-cards strong {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 800;
}

.proof-cards span,
.roi-cards span {
    color: var(--muted);
}

.roi-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 61, 0.12), transparent 34%),
        linear-gradient(135deg, #0d1526, #17233b);
    color: #fff;
}

.roi-section h2,
.roi-section .eyebrow {
    color: #fff;
}

.roi-section .eyebrow {
    color: #7dd9f3;
}

.roi-grid p {
    color: #c7d2e1;
    margin-bottom: 24px;
}

.roi-cards article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.roi-cards strong {
    color: #fff;
}

.roi-cards span {
    color: #c7d2e1;
}

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

.card-prime,
.plan-card,
.screen-card,
.steps article,
.kaizen-panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.card-prime {
    min-height: 286px;
    padding: 30px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card-prime:hover,
.steps article:hover,
.screen-card:hover,
.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 122, 61, 0.22);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.11);
}

.card-prime i {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 8px;
    font-size: 1.2rem;
}

.card-prime p,
.steps p,
.plan-card p,
.screen-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.card-prime h3 {
    font-size: 1.16rem;
    line-height: 1.3;
}

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

.steps article {
    padding: 26px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.steps span {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--orange-dark);
    background: rgba(255, 122, 61, 0.12);
    font-weight: 800;
}

.kaizen {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(13, 21, 38, 0.94), rgba(17, 28, 49, 0.98)),
        radial-gradient(circle at 80% 20%, rgba(35, 183, 232, 0.3), transparent 32%);
}

.kaizen h2,
.kaizen .eyebrow {
    color: #fff;
}

.kaizen .eyebrow {
    color: #7dd9f3;
}

.kaizen p {
    color: #c6d3e2;
}

.kaizen-panel {
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.kaizen-panel div {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    color: #edf7fb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kaizen-panel div:last-child {
    border-bottom: 0;
}

.kaizen-panel i {
    color: #63e6be;
}

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

.screen-card {
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.screen-card.large {
    grid-column: 1 / -1;
}

.screen-card img {
    width: 100%;
    aspect-ratio: 16 / 8.6;
    object-fit: cover;
    object-position: top center;
    background: var(--ink);
    cursor: zoom-in;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.screen-card:hover img,
.screen-card img:focus {
    transform: scale(1.025);
    filter: saturate(1.06) contrast(1.02);
    outline: none;
}

.screen-card div {
    padding: 22px;
}

.screen-card.large div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.screen-card.large h3 {
    font-size: 1.35rem;
}

.demo-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.demo-highlight h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.demo-highlight p {
    margin: 0;
    color: var(--muted);
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-lightbox.show {
    pointer-events: auto;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 12, 22, 0.82);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: min(1120px, 94vw);
    margin: 0;
    transform: translateY(14px) scale(0.96);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.image-lightbox.show .lightbox-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lightbox-content img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    background: #0d1526;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-content figcaption {
    width: fit-content;
    max-width: 100%;
    margin: 12px auto 0;
    padding: 8px 12px;
    border-radius: 8px;
    color: #eaf4ff;
    background: rgba(13, 21, 38, 0.78);
    font-weight: 700;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.plans {
    background: #fff;
}

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

.plan-card {
    position: relative;
    padding: 28px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plan-card.featured {
    border-color: rgba(255, 122, 61, 0.5);
    box-shadow: 0 22px 60px rgba(255, 122, 61, 0.16);
}

.plan-card h3 {
    font-size: 1.35rem;
}

.plan-card ul {
    padding-left: 18px;
    margin: 22px 0 26px;
    color: #334155;
}

.plan-card li {
    margin-bottom: 8px;
}

.plan-image-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 14px;
    background: #fff;
}

.plan-image-card.featured {
    padding-top: 14px;
}

.plan-image-button {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.plan-image-button:hover,
.plan-image-button:focus {
    transform: translateY(-4px);
    filter: saturate(1.04) contrast(1.02);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    outline: none;
}

.plan-image-button img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--orange-dark);
    background: rgba(255, 122, 61, 0.12);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #0d1526, #17233b);
    color: #fff;
}

.final-box {
    text-align: center;
}

.final-box h2 {
    color: #fff;
    max-width: 820px;
    margin: 0 auto 16px;
}

.final-box p {
    max-width: 660px;
    margin: 0 auto 28px;
    color: #c7d2e1;
}

.footer-prime {
    padding: 28px 20px;
    color: #c7d2e1;
    text-align: center;
    background: #0d1526;
}

.footer-prime p {
    margin-bottom: 10px;
}

.footer-prime a {
    margin: 0 8px;
    color: #c7d2e1;
    font-size: 1.25rem;
}

.modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    background: #111c31;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-plan {
    display: block;
    margin-top: 4px;
    color: #8bdcf4;
    font-size: 0.88rem;
}

.modal-body {
    padding: 24px;
}

.success-modal {
    text-align: center;
}

.success-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 36px 26px 26px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    font-size: 1.7rem;
    box-shadow: 0 16px 34px rgba(32, 180, 134, 0.26);
}

.success-modal h5 {
    max-width: 300px;
    margin: 0 auto 10px;
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
}

.success-modal p {
    max-width: 310px;
    margin: 0 auto 24px;
    color: #c7d2e1;
    font-size: 0.98rem;
    line-height: 1.55;
}

.success-modal .btn {
    width: min(100%, 260px) !important;
}

label {
    margin-bottom: 6px;
    color: #c7d2e1;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-control {
    min-height: 46px;
    color: #fff;
    background: #0d1526;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.form-control:focus {
    color: #fff;
    background: #0d1526;
    border-color: var(--blue);
    box-shadow: 0 0 0 0.2rem rgba(35, 183, 232, 0.18);
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }

    .nav-inner {
        gap: 12px;
    }

    .hero-grid,
    .split,
    .kaizen-grid,
    .proof-grid,
    .roi-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 720px) {
    body {
        padding-bottom: 86px;
    }

    .container,
    .nav-inner {
        width: min(100% - 28px, 1160px);
    }

    .navbar-prime {
        padding: 10px 0;
    }

    .brand span {
        font-size: 0.98rem;
    }

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

    .language-switcher {
        margin-left: auto;
    }

    .language-switcher button {
        min-width: 31px;
        height: 28px;
        padding: 0 6px;
        font-size: 0.72rem;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 102px 0 64px;
    }

    h1 {
        font-size: clamp(2.45rem, 12vw, 3.45rem);
        line-height: 1.04;
    }

    h2 {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }

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

    .hero-metrics,
    .benefits-grid,
    .steps,
    .screens-grid,
    .plans-grid,
    .pain-grid,
    .proof-cards,
    .roi-cards {
        grid-template-columns: 1fr;
    }

    .demo-highlight,
    .screen-card.large div {
        display: block;
    }

    .demo-highlight .btn {
        width: 100%;
        margin-top: 18px;
    }

    .hero-metrics div {
        min-height: auto;
    }

    .hero-logo {
        width: 112px;
        right: 12px;
        bottom: -28px;
        padding: 12px;
    }

    .section {
        padding: 68px 0;
    }

    .screen-card.large {
        grid-column: auto;
    }

    .screen-card img {
        aspect-ratio: 4 / 3;
    }

    .card-prime,
    .pain-grid article {
        min-height: auto;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        display: block;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.9);
        border-top: 1px solid rgba(15, 23, 42, 0.1);
        box-shadow: 0 -16px 40px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(16px);
        animation: stickyCtaIn 0.45s ease both;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        min-height: 52px;
    }
}

@media (hover: none) {
    .card-prime:hover,
    .steps article:hover,
    .screen-card:hover,
    .plan-card:hover,
    .pain-grid article:hover,
    .proof-cards article:hover,
    .roi-cards article:hover,
    .plan-image-button:hover,
    .screen-card:hover img {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
