:root {
    --ink: #0f1728;
    --ink-soft: #314158;
    --muted: #66768c;
    --line: #d8e2ee;
    --surface: #ffffff;
    --surface-soft: #f3f7fb;
    --surface-warm: #fbf8ef;
    --navy: #0b1f3a;
    --navy-strong: #061427;
    --navy-soft: #102b4f;
    --cyan: #48c8ff;
    --cyan-soft: #e8f8ff;
    --teal: #117d7b;
    --teal-soft: #e6f6f5;
    --blue: #2e86ff;
    --gold: #f4c534;
    --amber: #d59a16;
    --amber-soft: #fff6dc;
    --success: #079455;
    --danger: #c5362f;
    --shadow-sm: 0 10px 24px rgba(11, 31, 58, 0.08);
    --shadow-md: 0 22px 58px rgba(11, 31, 58, 0.16);
    --shadow-lg: 0 34px 90px rgba(11, 31, 58, 0.26);
    --shadow-premium: 0 42px 110px rgba(4, 16, 32, 0.38);
    --ring: 0 0 0 1px rgba(72, 200, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    --radius: 8px;
    --container: 1180px;
    --header-height: 76px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 44%, #ffffff 100%);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

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

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

button,
input,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(40, 120, 238, 0.42);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy);
}

.skip-link:focus {
    transform: translateY(0);
}

.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(100% - 40px, var(--container));
    margin: 0 auto;
}

.container.narrow {
    max-width: 820px;
}

.section {
    padding: 104px 0;
}

.section-tight {
    padding-top: 56px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    height: var(--header-height);
    border-bottom: 1px solid rgba(216, 226, 238, 0.72);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px) saturate(140%);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 36px rgba(11, 31, 58, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-strong);
    font-weight: 900;
    font-size: 1.28rem;
    letter-spacing: 0;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #101a2a;
    box-shadow: 0 14px 30px rgba(11, 31, 58, 0.18);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(216, 226, 238, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--navy);
    background: linear-gradient(180deg, #f9fbff, #eef6ff);
}

.site-nav .nav-app-link {
    display: none;
}

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

.header-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
}

.header-app {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--navy);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
    color: #fff;
    background:
        linear-gradient(135deg, #2f8cff, #125ee8 46%, #061427 100%);
    box-shadow: 0 18px 42px rgba(46, 134, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
    background:
        linear-gradient(135deg, #4495ff, #2477f0 48%, #12365d 100%);
    box-shadow: 0 20px 44px rgba(46, 134, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
    color: var(--navy);
    border-color: rgba(11, 31, 58, 0.14);
    background:
        linear-gradient(180deg, #ffffff, #f6faff);
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}

.button-secondary:hover {
    border-color: rgba(13, 39, 69, 0.25);
    box-shadow: var(--shadow-sm);
}

.button-ghost {
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button-ghost:hover {
    color: #fff;
    border-color: rgba(72, 200, 255, 0.42);
    background: rgba(72, 200, 255, 0.1);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button-full {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - var(--header-height));
    padding: 78px 0 76px;
    background:
        radial-gradient(circle at 70% 12%, rgba(72, 200, 255, 0.36), transparent 32%),
        radial-gradient(circle at 88% 76%, rgba(244, 197, 52, 0.18), transparent 28%),
        radial-gradient(circle at 28% 20%, rgba(46, 134, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #041020 0%, #0b1f3a 45%, #103760 100%);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 84%, transparent);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 200, 255, 0.35), transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
    align-items: center;
    gap: 64px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    color: var(--navy-strong);
    font-size: 4.85rem;
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    color: var(--navy-strong);
    font-size: 3.15rem;
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    color: var(--navy-strong);
    font-size: 1.1rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.hero-text {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 1.14rem;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(72, 200, 255, 0.22);
    border-radius: 999px;
    color: #aeeaff;
    background: rgba(72, 200, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero h1 {
    color: #fff;
    text-wrap: balance;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-text {
    max-width: 620px;
    color: rgba(231, 241, 252, 0.86);
    font-size: 1.12rem;
}

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

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
    margin: 0 0 18px;
}

.hero-proof div {
    min-height: 68px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 46px rgba(0, 0, 0, 0.18);
}

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

.hero-proof strong {
    color: #fff;
    font-size: 1.36rem;
    line-height: 1.1;
}

.hero-proof span {
    margin-top: 7px;
    color: rgba(231, 241, 252, 0.68);
    font-size: 0.82rem;
    font-weight: 800;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-list li {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 850;
    font-size: 0.9rem;
}

.trust-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--teal);
}

.hero .trust-list li::before {
    background: linear-gradient(180deg, var(--cyan), var(--gold));
    box-shadow: 0 0 0 3px rgba(72, 200, 255, 0.08);
}

.hero-visual {
    position: relative;
    min-height: 735px;
    perspective: 1400px;
}

.hero-orbit {
    position: absolute;
    inset: 1% -10% -2% -2%;
    border: 1px solid rgba(72, 200, 255, 0.18);
    border-radius: 44%;
    transform: rotate(-12deg);
    background:
        radial-gradient(circle at 70% 30%, rgba(72, 200, 255, 0.24), transparent 34%),
        radial-gradient(circle at 24% 80%, rgba(244, 197, 52, 0.16), transparent 28%);
    filter: blur(0);
}

.hero-dashboard {
    position: relative;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
        rgba(6, 20, 39, 0.68);
    box-shadow: var(--shadow-premium), var(--ring);
    transform: rotateY(-7deg) rotateX(2deg) translateZ(0) scale(1.04);
    transform-origin: center;
}

.hero-dashboard::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 68%, rgba(72, 200, 255, 0.1));
}

.hero-dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 46px;
    margin-bottom: 16px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
}

.hero-kpis {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.hero-kpis div {
    min-height: 70px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(72, 200, 255, 0.12), rgba(255, 255, 255, 0.045));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

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

.hero-kpis strong {
    color: #fff;
    font-size: 1rem;
}

.hero-kpis span {
    margin-top: 5px;
    color: rgba(231, 241, 252, 0.66);
    font-size: 0.76rem;
    font-weight: 750;
}

.hero-dashboard-top strong {
    color: #fff;
}

.hero-device-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 178px;
    gap: 14px;
}

.product-frame {
    overflow: hidden;
    border: 1px solid rgba(72, 200, 255, 0.18);
    border-radius: 14px;
    background: var(--navy-strong);
    box-shadow: 0 38px 92px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-frame-main {
    width: min(100%, 430px);
    margin: 0 auto;
}

.frame-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 14px;
    color: #d9e8f6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(7, 23, 38, 0.92);
    font-size: 0.84rem;
    font-weight: 800;
}

.frame-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #426580;
}

.frame-bar strong {
    margin-left: 8px;
}

.product-frame img {
    width: 100%;
    max-height: 635px;
    object-fit: cover;
    object-position: top center;
}

.hero-mini-stack {
    display: grid;
    gap: 12px;
    align-content: center;
}

.hero-mini-stack div {
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

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

.hero-mini-stack span {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-mini-stack strong {
    color: #fff;
    font-size: 0.94rem;
    line-height: 1.25;
}

.hero-panel {
    position: absolute;
    left: -20px;
    bottom: 26px;
    width: min(82%, 384px);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.9));
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.32);
}

.hero-panel span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-panel strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-strong);
    font-size: 1.2rem;
    line-height: 1.2;
}

.hero-panel p {
    margin: 0;
    color: var(--muted);
}

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

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading h2 {
    text-wrap: balance;
}

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

.segment-card,
.feature-card,
.pricing-card,
.story-cards article,
.value-list article,
.steps article,
.contact-proof article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 226, 238, 0.82);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, #ffffff, #f9fbff);
    box-shadow: 0 16px 42px rgba(11, 31, 58, 0.075);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.segment-card::before,
.feature-card::before,
.pricing-card::before,
.value-list article::before,
.steps article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
    opacity: 0;
    transition: opacity 180ms ease;
}

.segment-card:hover,
.feature-card:hover,
.pricing-card:hover,
.value-list article:hover,
.steps article:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 134, 255, 0.2);
    box-shadow: 0 22px 54px rgba(11, 31, 58, 0.12);
}

.segment-card:hover::before,
.feature-card:hover::before,
.pricing-card:hover::before,
.value-list article:hover::before,
.steps article:hover::before {
    opacity: 1;
}

.segment-card {
    padding: 28px;
}

.icon-box {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    color: var(--navy);
    background:
        linear-gradient(135deg, rgba(244, 197, 52, 0.95), rgba(72, 200, 255, 0.35));
    box-shadow: 0 12px 24px rgba(213, 154, 22, 0.18);
    font-weight: 900;
}

.segment-card p,
.feature-card p,
.pricing-card p,
.value-list p,
.steps p,
.story-cards p {
    color: var(--muted);
}

.contrast-band {
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(72, 200, 255, 0.18), transparent 28%),
        radial-gradient(circle at 84% 76%, rgba(244, 197, 52, 0.12), transparent 26%),
        linear-gradient(135deg, var(--navy-strong), var(--navy));
}

.contrast-band h2,
.contrast-band .eyebrow {
    color: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px 44px;
    align-items: start;
}

.compare-list {
    display: grid;
    gap: 10px;
}

.compare-list p {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.compare-list-before p::before,
.compare-list-after p::before {
    display: inline-block;
    width: 22px;
    color: inherit;
    font-weight: 900;
}

.compare-list-before p::before {
    content: "-";
    color: #ffb4a8;
}

.compare-list-after p::before {
    content: "+";
    color: #7fe0b2;
}

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

.feature-card {
    padding: 30px;
    min-height: 252px;
}

.feature-card:first-child {
    grid-column: span 2;
    background:
        radial-gradient(circle at 92% 8%, rgba(72, 200, 255, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #f6faff);
}

.system-bridge,
.interface-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 28px;
    border-radius: 18px;
}

.system-bridge {
    border: 1px solid rgba(46, 134, 255, 0.18);
    background:
        radial-gradient(circle at 92% 20%, rgba(72, 200, 255, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff, #f2f8ff);
    box-shadow: 0 24px 62px rgba(11, 31, 58, 0.1);
}

.system-bridge span,
.interface-cta span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.system-bridge h3,
.interface-cta h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.system-bridge p,
.interface-cta p {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted);
}

.bridge-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--amber-soft);
    font-weight: 900;
}

.screenshots-band {
    color: #fff;
    background:
        radial-gradient(circle at 18% 14%, rgba(72, 200, 255, 0.24), transparent 28%),
        radial-gradient(circle at 78% 42%, rgba(244, 197, 52, 0.11), transparent 22%),
        linear-gradient(180deg, #041020, #0b1f3a 54%, #07182d);
}

.screenshots-band h2,
.screenshots-band .eyebrow {
    color: #fff;
}

.screenshots-band .section-heading p:not(.eyebrow) {
    color: rgba(231, 241, 252, 0.74);
}

.interface-cta {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 85% 18%, rgba(72, 200, 255, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.interface-cta span {
    color: var(--cyan);
}

.interface-cta h3 {
    color: #fff;
}

.interface-cta p {
    color: rgba(231, 241, 252, 0.72);
}

.screenshot-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.screenshot-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.screenshot-card::after {
    content: none;
}

.screenshot-card::before {
    content: attr(data-callout);
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 2;
    max-width: min(72%, 330px);
    padding: 9px 12px;
    border: 1px solid rgba(72, 200, 255, 0.26);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 20, 39, 0.78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.2;
    pointer-events: none;
}

.screenshot-card:hover {
    transform: translateY(-4px);
    border-color: rgba(72, 200, 255, 0.28);
    box-shadow: 0 46px 110px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.screenshot-card > div {
    padding: 22px;
}

.screenshot-card span {
    color: var(--cyan);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.screenshot-card h3 {
    max-width: 520px;
    margin: 8px 0 10px;
    color: #fff;
}

.screenshot-card p {
    max-width: 620px;
    margin: 0;
    color: rgba(231, 241, 252, 0.72);
    font-size: 0.95rem;
}

.screenshot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.screenshot-card .screenshot-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(72, 200, 255, 0.2);
    border-radius: 999px;
    color: #dff6ff;
    background: rgba(72, 200, 255, 0.1);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: none;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 620px;
    object-fit: contain;
    object-position: top center;
    background:
        linear-gradient(180deg, rgba(72, 200, 255, 0.08), transparent),
        #071726;
}

.shot-phone img {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 0 18px 22px;
    object-fit: contain;
    object-position: top center;
}

.shot-agenda img {
    object-position: left top;
}

.screenshot-large {
    min-height: 0;
}

.screenshot-large:hover {
    transform: translateY(-4px);
}

.screenshot-large img {
    object-fit: contain;
    object-position: center top;
    padding: 0 18px 22px;
}

.screenshot-layout > .screenshot-card:not(.screenshot-large) img {
    object-fit: contain;
}

.screenshot-layout > .screenshot-card:not(.screenshot-large):not(.desktop-shot):not(.plan-shot) img {
    object-position: center top;
}

.desktop-shot img {
    object-position: top left;
    max-height: 420px;
}

.desktop-shot {
    min-height: 0;
}

.desktop-shot:hover {
    transform: translateY(-4px);
}

.plan-shot img,
.plan-crop img {
    object-position: center top;
    max-height: 520px;
}

.plan-shot {
    min-height: 0;
}

@media (min-width: 981px) {
    .screenshot-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
        grid-template-rows: 420px 340px auto;
        gap: 22px;
    }

    .screenshot-card {
        grid-template-rows: auto minmax(0, 1fr);
    }

    .screenshot-card > div {
        min-height: 138px;
        padding: 24px 24px 0;
    }

    .screenshot-card img {
        width: 100%;
        height: 100%;
        max-height: none;
    }

    .shot-phone img {
        width: min(100%, 390px);
        height: 100%;
        padding: 0 22px 24px;
        object-fit: contain;
    }

    .screenshot-large {
        grid-row: 1 / span 2;
    }

    .screenshot-large img {
        padding: 0 28px 28px;
    }

    .screenshot-layout > .screenshot-card:not(.screenshot-large) img {
        object-fit: cover;
    }

    .screenshot-layout > .screenshot-card:not(.screenshot-large):not(.desktop-shot):not(.plan-shot) img {
        object-position: center top;
    }

    .desktop-shot img {
        object-position: top left;
    }

    .plan-shot {
        grid-column: 1 / -1;
        grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
        grid-template-rows: 1fr;
        align-items: stretch;
    }

    .plan-shot > div {
        min-height: 0;
        padding: 28px;
        align-self: center;
    }

    .plan-shot img {
        height: 100%;
        padding: 20px;
        object-fit: contain;
        object-position: center top;
    }
}

#precos {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

#precos .container {
    position: relative;
}

#precos .container::before {
    content: "";
    position: absolute;
    inset: -28px -18px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(244, 197, 52, 0.18), transparent 66%);
    pointer-events: none;
}

.value-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

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

.value-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.value-list article {
    grid-column: span 3;
    padding: 26px;
}

.value-list article:last-child {
    grid-column: 2 / span 4;
    background:
        radial-gradient(circle at 88% 12%, rgba(72, 200, 255, 0.16), transparent 36%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.value-list article h3::before {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.muted-band {
    background:
        linear-gradient(180deg, rgba(255, 246, 220, 0.5), rgba(243, 247, 251, 0.86)),
        var(--surface-warm);
}

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

.steps article {
    padding: 26px;
}

.steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 28px;
    border-radius: 999px;
    color: var(--navy);
    background:
        linear-gradient(135deg, var(--gold), #fff2a4);
    box-shadow: 0 12px 24px rgba(213, 154, 22, 0.18);
    font-weight: 900;
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    min-height: 100%;
}

.pricing-featured {
    border-color: rgba(46, 134, 255, 0.52);
    background:
        radial-gradient(circle at 82% 0%, rgba(72, 200, 255, 0.28), transparent 30%),
        linear-gradient(180deg, #ffffff, #edf7ff);
    box-shadow: 0 38px 104px rgba(46, 134, 255, 0.3);
    transform: translateY(-12px);
}

.pricing-featured:hover {
    transform: translateY(-16px);
}

.recommended-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(46, 134, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(135deg, #2f8cff, #061427);
    box-shadow: 0 14px 34px rgba(46, 134, 255, 0.32);
    font-size: 0.76rem;
    font-weight: 900;
}

.plan-label {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background:
        linear-gradient(135deg, rgba(244, 197, 52, 0.78), rgba(72, 200, 255, 0.28));
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.plan-price {
    min-height: 56px;
    margin: 10px 0 16px;
    color: var(--navy-strong) !important;
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 900;
}

.plan-fit {
    width: fit-content;
    margin: -4px 0 14px !important;
    padding: 7px 10px;
    border: 1px solid rgba(46, 134, 255, 0.14);
    border-radius: 999px;
    color: var(--navy) !important;
    background: #eef7ff;
    font-size: 0.82rem;
    font-weight: 900;
}

.plan-note {
    margin: -2px 0 12px !important;
    color: var(--ink-soft) !important;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 12px 0 28px;
    list-style: none;
}

.pricing-card li {
    display: flex;
    gap: 10px;
    color: var(--ink-soft);
    font-weight: 700;
}

.pricing-card li::before {
    content: "";
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, transparent 48%, #fff 49% 58%, transparent 59%),
        linear-gradient(135deg, var(--blue), var(--teal));
}

.pricing-card .button {
    margin-top: auto;
}

.faq-preview {
    border-top: 1px solid rgba(216, 226, 238, 0.85);
    border-bottom: 1px solid rgba(216, 226, 238, 0.85);
    background:
        linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
}

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

details {
    border: 1px solid rgba(216, 226, 238, 0.9);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(11, 31, 58, 0.05);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    color: var(--navy-strong);
    font-weight: 900;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--teal);
    font-size: 1.35rem;
}

details[open] summary::after {
    content: "-";
}

details p {
    margin: -4px 22px 22px;
    color: var(--muted);
}

.final-cta {
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(72, 200, 255, 0.2), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(244, 197, 52, 0.12), transparent 28%),
        linear-gradient(135deg, var(--navy), var(--navy-strong));
}

.final-cta h2,
.final-cta .eyebrow {
    color: #fff;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.final-actions {
    margin-top: 26px;
}

.final-actions .button-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(72, 200, 255, 0.16), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 38px rgba(0, 0, 0, 0.16);
}

.final-cta-grid,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 58px;
    align-items: start;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid rgba(216, 226, 238, 0.9);
    border-radius: 14px;
    background:
        linear-gradient(180deg, #ffffff, #f9fbff);
    box-shadow: 0 28px 72px rgba(11, 31, 58, 0.18);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.field {
    display: grid;
    gap: 7px;
}

label {
    color: var(--navy-strong);
    font-size: 0.92rem;
    font-weight: 900;
}

input,
select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #cedae8;
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(11, 31, 58, 0.03);
}

input:focus,
select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(46, 134, 255, 0.1);
}

.field small {
    min-height: 18px;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 700;
}

.field.has-error input,
.field.has-error select {
    border-color: var(--danger);
}

.form-status {
    display: none;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: #065f46;
    background: #ecfdf3;
}

.form-status.is-error {
    color: #8f1d18;
    background: #fff1f0;
}

.form-note {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.page-hero {
    padding: 86px 0;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: 4.1rem;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 1.12rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.wide-product-shot {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #071726;
    box-shadow: var(--shadow-md);
}

.wide-product-shot img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top left;
}

.plan-crop img {
    height: 460px;
    padding: 18px;
    object-fit: contain;
    object-position: center top;
}

.phone-product-shot {
    width: min(100%, 440px);
    margin: 0 auto;
    background:
        linear-gradient(180deg, #0b1f3a, #071726);
}

.phone-product-shot img {
    height: min(72vh, 680px);
    padding: 18px;
    object-fit: contain;
    object-position: center top;
}

.product-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: start;
}

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

.story-cards article {
    padding: 24px;
}

.module-table {
    display: grid;
    gap: 24px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--navy-strong);
    background: #f8fafc;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

td {
    color: var(--ink-soft);
}

tr:last-child td {
    border-bottom: 0;
}

.resource-stack {
    display: grid;
    gap: 28px;
}

.resource-row {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 42px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(216, 226, 238, 0.86);
    border-radius: 16px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: 0 22px 58px rgba(11, 31, 58, 0.08);
}

.resource-row-reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.resource-row-reverse > div {
    order: 2;
}

.resource-row img {
    width: 100%;
    max-height: 430px;
    border: 1px solid rgba(13, 39, 69, 0.14);
    border-radius: 14px;
    object-fit: cover;
    object-position: top center;
    background: #071726;
    box-shadow: 0 28px 72px rgba(11, 31, 58, 0.16);
}

.resource-row img.phone-shot {
    width: min(100%, 390px);
    max-height: 640px;
    justify-self: center;
    object-fit: contain;
    object-position: center top;
    background:
        linear-gradient(180deg, #0b1f3a, #071726);
}

.contact-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.contact-proof article {
    padding: 18px;
}

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

.contact-proof strong {
    color: var(--navy-strong);
    font-size: 1.02rem;
}

.contact-proof span {
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer {
    padding: 64px 0 28px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy-strong);
}

.site-footer .brand {
    color: #fff;
}

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

.footer-brand p {
    max-width: 390px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0;
}

.site-footer a:not(.brand) {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-link {
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(135deg, #128c7e, #0b6f63);
    box-shadow: 0 18px 44px rgba(11, 31, 58, 0.22);
}

.whatsapp-float span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: #0b6f63;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 950;
}

.whatsapp-float strong {
    font-size: 0.9rem;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(11, 31, 58, 0.28);
}

@media (max-width: 980px) {
    h1 {
        font-size: 3.65rem;
    }

    h2 {
        font-size: 2.55rem;
    }

    .page-hero h1 {
        font-size: 3.25rem;
    }

    .header-actions {
        display: none;
    }

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

    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        z-index: 1000;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        border: 1px solid rgba(11, 31, 58, 0.1);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 30px 76px rgba(11, 31, 58, 0.26), 0 2px 10px rgba(11, 31, 58, 0.08);
        backdrop-filter: none;
    }

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

    .site-nav .nav-app-link {
        display: inline-flex;
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--navy));
    }

    .site-nav a {
        justify-content: center;
        min-height: 46px;
        color: var(--navy-strong);
        background: #fff;
        border: 1px solid rgba(11, 31, 58, 0.08);
        font-weight: 850;
        box-shadow: 0 8px 18px rgba(11, 31, 58, 0.04);
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
        color: var(--navy);
        background: linear-gradient(180deg, #f9fbff, #edf6ff);
        border-color: rgba(46, 134, 255, 0.16);
    }

    .hero-grid,
    .problem-grid,
    .value-grid,
    .faq-grid,
    .final-cta-grid,
    .contact-layout,
    .page-hero-grid,
    .product-story {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        overflow: hidden;
        min-height: auto;
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-orbit {
        display: none;
    }

    .hero-dashboard {
        transform: none;
    }

    .hero-device-grid {
        grid-template-columns: minmax(0, 1fr) 170px;
    }

    .product-frame-main {
        margin: 0 auto;
    }

    .hero-panel {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin: -24px auto 0;
    }

    .segment-grid,
    .feature-grid,
    .steps,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card:first-child {
        grid-column: span 2;
    }

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

    .value-list article,
    .value-list article:last-child {
        grid-column: auto;
    }

    .pricing-featured {
        transform: none;
        box-shadow: 0 24px 72px rgba(46, 134, 255, 0.22);
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .screenshot-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .screenshot-large {
        grid-row: auto;
        min-height: 0;
    }

    .screenshot-card {
        min-height: 0;
    }

    .resource-row,
    .resource-row-reverse {
        grid-template-columns: 1fr;
    }

    .resource-row-reverse > div {
        order: 0;
    }

    .system-bridge,
    .interface-cta {
        grid-template-columns: 1fr;
    }

    .bridge-actions {
        width: 100%;
    }

    .table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    table,
    thead,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    tr {
        margin-bottom: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
        overflow: hidden;
    }

    td {
        display: grid;
        grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
        gap: 12px;
        padding: 13px 14px;
        border-bottom: 1px solid var(--line);
    }

    td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.78rem;
        font-weight: 900;
        text-transform: uppercase;
    }

    tr:last-child td {
        border-bottom: 1px solid var(--line);
    }

    tr td:last-child {
        border-bottom: 0;
    }

    .pricing-grid {
        gap: 14px;
    }

    .pricing-card {
        padding: 24px;
    }

    .pricing-featured {
        order: -1;
    }

    .plan-price {
        min-height: auto;
        font-size: 1.28rem;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 70px;
    }

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

    .section {
        padding: 48px 0;
    }

    .hero {
        min-height: auto;
        padding: 38px 0 46px;
    }

    h1 {
        font-size: 2.42rem;
    }

    h2 {
        font-size: 1.92rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions,
    .hero .button,
    .bridge-actions .button,
    .final-actions .button {
        width: 100%;
    }

    .hero-actions {
        margin-bottom: 22px;
    }

    .button {
        min-height: 50px;
        padding: 0 16px;
    }

    .trust-list li {
        flex: 1 1 100%;
        min-height: 34px;
    }

    .hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .hero-proof div {
        min-height: 58px;
        padding: 10px;
    }

    .hero-proof strong {
        font-size: 1.08rem;
    }

    .hero-proof span {
        margin-top: 5px;
        font-size: 0.72rem;
    }

    .hero-dashboard {
        padding: 12px;
        border-radius: 14px;
    }

    .hero-dashboard-top {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        min-height: 64px;
    }

    .hero-device-grid {
        grid-template-columns: 1fr;
    }

    .hero-kpis {
        grid-template-columns: 1fr;
    }

    .hero-mini-stack {
        grid-template-columns: 1fr;
    }

    .hero-mini-stack div {
        padding: 13px;
    }

    .product-frame-main {
        width: min(100%, 355px);
    }

    .product-frame img {
        max-height: 560px;
        object-fit: contain;
    }

    .segment-grid,
    .feature-grid,
    .steps,
    .pricing-grid,
    .value-list,
    .footer-grid,
    .contact-proof {
        grid-template-columns: 1fr;
    }

    .feature-card:first-child {
        grid-column: auto;
    }

    .feature-card,
    .segment-card,
    .pricing-card,
    .resource-row {
        padding: 18px;
    }

    .pricing-card {
        gap: 0;
    }

    .pricing-card ul {
        gap: 8px;
        margin-bottom: 22px;
    }

    .screenshot-card {
        min-height: 0;
    }

    .screenshot-card > div {
        padding: 18px 18px 12px;
    }

    .screenshot-tags {
        gap: 6px;
        margin-top: 12px;
    }

    .screenshot-card .screenshot-tags span {
        min-height: 28px;
        font-size: 0.7rem;
    }

    .screenshot-card::before {
        left: 28px;
        right: 28px;
        bottom: 26px;
        max-width: none;
        border-radius: var(--radius);
        text-align: center;
    }

    .screenshot-large {
        min-height: 0;
        transform: none;
    }

    .screenshot-large:hover,
    .desktop-shot,
    .desktop-shot:hover {
        transform: none;
    }

    .screenshot-large img {
        padding: 0 12px 18px;
        max-height: none;
    }

    .shot-phone img {
        width: min(100%, 370px);
        padding: 0 12px 18px;
        max-height: none;
    }

    .plan-shot img {
        padding: 0 12px 18px;
        max-height: 620px;
    }

    .wide-product-shot img {
        height: 340px;
        object-position: center top;
    }

    .phone-product-shot img {
        height: auto;
        max-height: 650px;
    }

    .plan-crop img {
        height: auto;
        max-height: 620px;
        padding: 12px;
    }

    .resource-row img {
        height: auto;
        max-height: 560px;
    }

    .resource-row img.phone-shot {
        max-height: 620px;
    }

    .lead-form {
        padding: 20px;
    }

    .recommended-badge {
        position: static;
        width: fit-content;
        margin-bottom: 12px;
    }

    summary {
        padding: 17px 18px;
    }

    details p {
        margin: -3px 18px 18px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-float {
        display: none;
    }
}

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