:root {
    --bg: #081226;
    --bg-soft: #10254a;
    --line: rgba(125, 211, 252, 0.3);
    --text: #dfe8f3;
    --muted: #9fb0c4;
    --accent: #67e8f9;
    --accent-strong: #e9f1fb;
    --surface: rgba(10, 18, 33, 0.86);
    --surface-soft: rgba(13, 24, 42, 0.92);
    --surface-card: rgba(10, 20, 36, 0.94);
    --shadow-soft: 0 18px 40px rgba(2, 8, 20, 0.42);
}

body[data-theme="light"] {
    --bg: #eef4f9;
    --bg-soft: #d4e2f1;
    --line: rgba(37, 99, 235, 0.16);
    --text: #081426;
    --muted: #42556d;
    --accent: #10254a;
    --accent-strong: #081426;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-soft: rgba(255, 255, 255, 0.98);
    --surface-card: rgba(245, 249, 255, 0.98);
    --shadow-soft: 0 18px 34px rgba(73, 105, 144, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Barlow", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1300px 700px at 90% -20%, rgba(56, 189, 248, 0.35) 0%, transparent 60%),
        radial-gradient(1100px 800px at -10% 90%, rgba(129, 140, 248, 0.28) 0%, transparent 60%),
        var(--bg);
    padding: 1.25rem 1.25rem 0;
    overflow-x: hidden;
}

body[data-theme="light"] {
    background:
        radial-gradient(1100px 620px at 92% -12%, rgba(96, 165, 250, 0.18) 0%, transparent 60%),
        radial-gradient(900px 640px at -8% 92%, rgba(251, 191, 36, 0.10) 0%, transparent 60%),
        linear-gradient(180deg, #f8fbfe 0%, #eef4f9 46%, #e6eef7 100%);
}

#mainContent {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 1.25rem);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -48px;
    z-index: 100000;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #0b1f3f;
    font-weight: 700;
    transition: top .2s ease;
}

.skip-link:focus {
    top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid #67e8f9;
    outline-offset: 3px;
}

.noise-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(transparent 98%, rgba(255, 255, 255, 0.045) 100%),
        linear-gradient(90deg, transparent 98%, rgba(255, 255, 255, 0.045) 100%);
    background-size: 6px 6px;
    z-index: -1;
}

.topbar {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 3rem;
    padding: 1.05rem 1.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.brand {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.brand img {
    height: 40px;
    width: auto;
    max-width: 190px;
    display: block;
    object-fit: contain;
}

.brand-fallback {
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--accent-strong);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.landing-controls {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
}

.theme-switch,
.language-chip {
    border: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--text);
    border-radius: 999px;
    cursor: pointer;
}

.theme-switch {
    padding: 0;
}

.theme-switch-track {
    width: 68px;
    height: 38px;
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.theme-switch-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #67e8f9, #818cf8);
    box-shadow: 0 8px 18px rgba(79, 158, 248, 0.28);
    transform: translateX(30px);
    transition: transform .22s ease, background .22s ease;
}

body[data-theme="light"] .theme-switch-thumb {
    transform: translateX(0);
    background: linear-gradient(135deg, #f8c95d, #f59e0b);
}

.theme-switch-icon,
.language-chip-globe {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-switch-icon svg,
.language-chip-globe svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

.theme-switch-icon-sun {
    color: #d6deea;
    width: 14px;
    height: 14px;
}

.theme-switch-icon-moon {
    color: #eef6ff;
    width: 14px;
    height: 14px;
}

body[data-theme="light"] .theme-switch-icon-sun {
    color: #ffffff;
}

body[data-theme="light"] .theme-switch-icon-moon {
    color: #5d6f84;
}

.language-chip {
    min-height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .08em;
}

a {
    text-decoration: none;
}

.login-link {
    color: var(--muted);
    font-weight: 600;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.68rem 1.12rem;
    transition: 0.25s ease;
}

.login-link:hover {
    color: var(--accent-strong);
    border-color: rgba(125, 211, 252, 0.48);
}

.primary-cta,
.secondary-cta,
.plan-cta {
    border-radius: 999px;
    padding: 0.72rem 1.22rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-cta {
    background: linear-gradient(120deg, #67e8f9, #818cf8);
    color: #06111f;
}

.primary-cta:hover {
    transform: translateY(-2px);
}

.secondary-cta {
    border: 1px solid rgba(125, 211, 252, 0.35);
    color: var(--text);
    background: transparent;
}

.secondary-cta:hover {
    border-color: rgba(125, 211, 252, 0.48);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    margin-bottom: 2.2rem;
}

.hero {
    margin-bottom: 4.2rem;
    animation: reveal 0.75s ease forwards;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 1.5rem;
    align-items: center;
    text-align: left;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyebrow {
    color: #aebfd5;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    line-height: 1.02;
    margin-bottom: 1.2rem;
}

.hero-text {
    color: var(--muted);
    max-width: 700px;
    margin: 0 0 1.8rem;
    font-size: clamp(1rem, 2.2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.hero-metrics article {
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: 16px;
    padding: 1rem;
}

.hero-metrics strong {
    display: block;
    font-size: 1.5rem;
}

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

.hero-preview {
    position: relative;
}

.hero-preview-window {
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.18), transparent 34%),
        linear-gradient(160deg, rgba(15, 35, 68, 0.95), rgba(6, 16, 33, 0.96));
    box-shadow: 0 28px 52px rgba(5, 14, 28, 0.42);
    overflow: hidden;
}

body[data-theme="light"] .eyebrow,
body[data-theme="light"] .demo-card-kicker,
body[data-theme="light"] .hero-preview-kicker {
    color: #6ea8f5;
}

body[data-theme="light"] .hero-preview-window {
    border-color: rgba(16, 37, 74, 0.16);
    background:
        radial-gradient(circle at top right, rgba(16, 37, 74, 0.12), transparent 34%),
        linear-gradient(160deg, rgba(16, 37, 74, 0.96), rgba(8, 20, 38, 0.98));
}

body[data-theme="light"] .hero-preview-summary,
body[data-theme="light"] .hero-preview-stats article,
body[data-theme="light"] .hero-preview-column {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(148, 198, 255, 0.18);
}

body[data-theme="light"] .hero-preview-summary strong,
body[data-theme="light"] .hero-preview-stats strong,
body[data-theme="light"] .hero-preview-column span {
    color: #f5f9ff;
}

body[data-theme="light"] .hero-preview-summary p,
body[data-theme="light"] .hero-preview-stats span {
    color: #b9cbe1;
}

.hero-preview-topbar {
    display: flex;
    gap: 8px;
    padding: 1rem 1rem 0;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.hero-dot-red { background: #f87171; }
.hero-dot-yellow { background: #fbbf24; }
.hero-dot-green { background: #4ade80; }

.hero-preview-grid {
    padding: 1rem;
    display: grid;
    gap: 1rem;
}

.hero-preview-summary {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(125, 211, 252, 0.14);
}

.hero-preview-kicker {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9cc8ff;
    font-weight: 700;
    margin-bottom: .55rem;
}

.hero-preview-summary strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.15;
}

.hero-preview-summary p {
    margin-top: .65rem;
    color: var(--muted);
}

.hero-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.hero-preview-stats article {
    padding: .9rem;
    border-radius: 18px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    background: rgba(6, 16, 33, 0.52);
}

.hero-preview-stats span {
    display: block;
    color: var(--muted);
    font-size: .86rem;
    margin-bottom: .3rem;
}

.hero-preview-stats strong {
    font-size: 1.15rem;
}

.hero-preview-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.hero-preview-column {
    border-radius: 20px;
    border: 1px solid rgba(125, 211, 252, 0.14);
    background: rgba(255, 255, 255, 0.04);
    padding: .9rem;
}

.hero-preview-column span {
    display: block;
    font-size: .82rem;
    color: #bfdcff;
    font-weight: 700;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-preview-column div {
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(125,211,252,0.08));
    border: 1px solid rgba(125, 211, 252, 0.12);
}

.hero-preview-column div + div {
    margin-top: .65rem;
}

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.value-strip article {
    padding: 1.1rem 1.15rem;
    border-radius: 20px;
    background: var(--surface-soft);
    border: 1px solid rgba(125, 211, 252, 0.18);
    box-shadow: 0 18px 32px rgba(7, 20, 44, 0.22);
}

body[data-theme="light"] .value-strip article,
body[data-theme="light"] .demo-card,
body[data-theme="light"] .plan-card,
body[data-theme="light"] .testimonial-card,
body[data-theme="light"] .benefits-grid article,
body[data-theme="light"] .proof-badges span,
body[data-theme="light"] .faq-list details,
body[data-theme="light"] .final-cta-section,
body[data-theme="light"] .plans {
    border-color: rgba(37, 99, 235, 0.14);
}

body[data-theme="light"] .value-strip strong,
body[data-theme="light"] .demo-card h3,
body[data-theme="light"] .plan-name,
body[data-theme="light"] .amount,
body[data-theme="light"] .benefits-grid h3,
body[data-theme="light"] .testimonial-card strong,
body[data-theme="light"] .proof-stat strong {
    color: #081426;
}

body[data-theme="light"] .value-strip span,
body[data-theme="light"] .demo-list li,
body[data-theme="light"] .plan-description,
body[data-theme="light"] .period,
body[data-theme="light"] .benefits-grid p,
body[data-theme="light"] .testimonial-card span,
body[data-theme="light"] .proof-stat,
body[data-theme="light"] .plans-header p,
body[data-theme="light"] .demo-head p:last-child {
    color: #42556d;
}

body[data-theme="light"] .demo-flow span {
    background: rgba(16, 37, 74, 0.04);
    border-color: rgba(37, 99, 235, 0.14);
    color: #10254a;
}

.value-strip strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: .45rem;
}

.value-strip span {
    color: var(--muted);
    line-height: 1.45;
}

.hero-figure {
    margin: 1.4rem auto 0;
}

.hero-figure img {
    width: 100%;
    max-width: 980px;
    border-radius: 22px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    box-shadow: 0 20px 42px rgba(6, 16, 33, 0.38);
}

.trust-section {
    margin: 0 auto 3.2rem;
    background: #ececf0;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #18181b;
    overflow: hidden;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.4rem 2.2rem;
}

.trust-left h2 {
    font-size: clamp(2rem, 4.5vw, 4.1rem);
    line-height: 1.08;
    font-weight: 500;
    max-width: 620px;
    margin-bottom: 1.3rem;
}

.trust-cta {
    display: inline-block;
    border-radius: 999px;
    padding: 0.86rem 1.65rem;
    background: linear-gradient(135deg, #67e8f9, #818cf8);
    color: #0b1730;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: transform .22s ease, box-shadow .22s ease;
}

.trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(103, 232, 249, 0.28);
}

.trust-right {
    min-height: 500px;
    position: relative;
}

.trust-shape {
    position: absolute;
    left: 23%;
    top: 10%;
    width: 60%;
    height: 70%;
    border-radius: 34% 66% 46% 54% / 50% 44% 56% 50%;
    background: #38bdf8;
}

.trust-phone {
    position: absolute;
    left: 37%;
    top: 8%;
    width: 180px;
    height: 360px;
    border-radius: 30px;
    background: #1f2937;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
    border: 3px solid #27272a;
    padding: 14px 10px;
    z-index: 2;
    animation: floatPhone 4.8s ease-in-out infinite;
}

.trust-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(160deg, #38bdf8, #3b82f6);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 800;
}

.trust-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 150px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    padding: .2rem .2rem;
    z-index: 4;
    animation: pulseTag 4.8s ease-in-out infinite;
    transition: filter .25s ease;
}

.trust-item:hover {
    filter: brightness(1.03);
}

.trust-icon-bg {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
}

.trust-icon-bg svg {
    width: 28px;
    height: 28px;
    fill: var(--trust-accent, #38bdf8);
}

.item-1 { left: 74%; top: 10%; transform: translate(-50%, -50%); --trust-accent: #0ea5e9; animation-delay: .1s; }
.item-2 { left: 88%; top: 34%; transform: translate(-50%, -50%); --trust-accent: #ec4899; animation-delay: .22s; }
.item-3 { left: 87%; top: 57%; transform: translate(-50%, -50%); --trust-accent: #84cc16; animation-delay: .36s; }
.item-4 { left: 72%; top: 82%; transform: translate(-50%, -50%); --trust-accent: #3b82f6; animation-delay: .5s; }
.item-5 { left: 26%; top: 80%; transform: translate(-50%, -50%); --trust-accent: #22c55e; animation-delay: .18s; }
.item-6 { left: 16%; top: 54%; transform: translate(-50%, -50%); --trust-accent: #fb7185; animation-delay: .42s; }

.integrations {
    margin-bottom: 4rem;
}

.demo-section {
    margin-bottom: 3.2rem;
}

.demo-head {
    max-width: 880px;
    margin: 0 auto 1.3rem;
    text-align: center;
}

.demo-head p:last-child {
    color: var(--muted);
    line-height: 1.55;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 1rem;
}

.demo-card {
    border-radius: 22px;
    border: 1px solid rgba(125, 211, 252, 0.22);
    background: linear-gradient(155deg, var(--surface-soft), var(--surface));
    padding: 1.15rem;
    box-shadow: 0 18px 36px rgba(6, 16, 33, 0.28);
}

.demo-card-main {
    background:
        radial-gradient(circle at top right, rgba(103, 232, 249, 0.14), transparent 28%),
        linear-gradient(155deg, var(--surface-soft), var(--surface));
}

.demo-card-kicker {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9cc8ff;
    font-weight: 700;
    margin-bottom: .75rem;
}

.demo-card h3 {
    font-size: 1.38rem;
    line-height: 1.18;
    margin-bottom: .9rem;
}

.demo-flow {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.demo-flow span {
    padding: .6rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(125, 211, 252, 0.16);
    color: #e9f3ff;
    font-weight: 700;
}

.demo-list {
    list-style: none;
    display: grid;
    gap: .75rem;
}

.demo-list li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--muted);
    line-height: 1.5;
}

.demo-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(120deg, #67e8f9, #818cf8);
    position: absolute;
    left: 0;
    top: .42rem;
}

.integrations-copy {
    max-width: 900px;
    margin: 0 auto 1.3rem;
    text-align: center;
}

.integrations-copy h2 {
    font-size: clamp(1.6rem, 3.4vw, 2.8rem);
    margin-bottom: .6rem;
}

.integrations-copy p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.5;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.integrations-carousel {
    border-radius: 18px;
    border: 1px solid rgba(125, 211, 252, 0.25);
    background: var(--surface);
    padding: .9rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.integrations-track {
    display: flex;
    gap: .8rem;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
    will-change: transform;
}

.integrations-carousel:hover .integrations-track {
    animation-play-state: paused;
}

.integration-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem .9rem;
    border-radius: 14px;
    border: 1px solid rgba(125, 211, 252, 0.2);
    background: var(--surface-card);
}

.integration-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex: 0 0 38px;
}

.integration-card strong {
    font-size: 0.98rem;
    line-height: 1.25;
    white-space: nowrap;
}

.plans {
    border: 1px solid var(--line);
    background: linear-gradient(150deg, var(--surface-soft), var(--surface));
    border-radius: 24px;
    padding: 1.5rem;
    animation: reveal 0.95s ease forwards;
}

.plans-header {
    margin-bottom: 1.4rem;
}

.plans-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 0.45rem;
}

.plans-header p {
    color: var(--muted);
}

.billing-toggle {
    margin: 0 auto 1.45rem;
    width: fit-content;
    background: #121212;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.22rem;
    display: flex;
    gap: 0.3rem;
}

.toggle-btn {
    cursor: pointer;
    border: 0;
    background: transparent;
    color: #cdcdcd;
    font-weight: 700;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
}

.toggle-btn span {
    color: #9effc2;
    font-size: 0.75rem;
}

.toggle-btn.is-active {
    background: #f2f2f2;
    color: #050505;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.plan-card {
    border: 1px solid rgba(125, 211, 252, 0.2);
    background: var(--surface-soft);
    border-radius: 18px;
    padding: 1rem;
    position: relative;
}

.featured {
    border-color: rgba(125, 211, 252, 0.5);
    box-shadow: 0 20px 50px rgba(7, 27, 53, 0.45);
}

.featured-tag {
    position: absolute;
    top: -10px;
    right: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    background: #f4f4f4;
    color: #0a0a0a;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.plan-description {
    color: var(--muted);
    min-height: 43px;
    margin-bottom: 0.9rem;
}

.price {
    margin-bottom: 0.9rem;
}

.currency {
    font-size: 1rem;
    margin-right: 0.18rem;
}

.amount {
    font-size: 2.2rem;
    font-weight: 800;
}

.period {
    color: var(--muted);
    margin-left: 0.2rem;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 1.15rem;
}

.plan-card li {
    color: #d7d7d7;
    padding: 0.38rem 0;
    border-bottom: 1px solid #272727;
}

body[data-theme="light"] .plan-card li {
    color: #5a6b7f;
    border-bottom-color: rgba(8, 20, 38, 0.18);
}

.plan-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid #666;
    color: var(--text);
}

.featured .plan-cta {
    background: linear-gradient(120deg, #67e8f9, #818cf8);
    color: #051224;
    border: none;
}

.plan-cta:hover {
    transform: translateY(-2px);
}

.proof-section,
.benefits-section,
.operations-section,
.modules-section,
.segments-section,
.faq-section,
.final-cta-section {
    margin-bottom: 3rem;
}

.proof-section {
    text-align: center;
    margin-top: 2.1rem;
    padding-top: .6rem;
}

.proof-section h2,
.benefits-head h2,
.operations-head h2,
.modules-copy h2,
.segments-head h2,
.faq-head h2,
.final-cta-content h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.8rem);
    margin-bottom: .8rem;
}

.proof-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    margin: 1rem 0 1.2rem;
}

.proof-badges span {
    padding: .5rem .78rem;
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.35);
    background: var(--surface);
    font-size: .86rem;
    font-weight: 700;
}

.proof-stat {
    color: var(--muted);
}

.proof-stat strong {
    color: #e6f1ff;
}

.benefits-head,
.operations-head,
.segments-head,
.faq-head {
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.benefits-figure {
    margin: .4rem auto 1.1rem;
}

.benefits-figure img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 1px solid rgba(125, 211, 252, 0.24);
    box-shadow: 0 18px 34px rgba(6, 16, 33, 0.35);
}

.benefits-grid article {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 16px;
    background: var(--surface-card);
    padding: 1rem;
    transition: transform .22s ease, border-color .22s ease;
}

.benefits-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(125, 211, 252, 0.48);
}

.benefits-grid h3 {
    font-size: 1.05rem;
    margin-bottom: .4rem;
}

.benefits-grid p {
    color: var(--muted);
    line-height: 1.45;
}

.testimonials-section {
    display: none;
}

.operations-head p:last-child,
.modules-copy p:last-child {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.55;
}

.operations-grid,
.modules-grid,
.segments-grid {
    display: grid;
    gap: .9rem;
}

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

.operation-card,
.module-card,
.segments-grid article {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 18px;
    background: linear-gradient(145deg, var(--surface-soft), var(--surface));
    padding: 1.1rem;
}

.operation-card h3,
.module-card h3,
.segments-grid h3 {
    font-size: 1.08rem;
    margin-bottom: .45rem;
}

.operation-card p,
.module-card p,
.segments-grid p {
    color: var(--muted);
    line-height: 1.5;
}

.operation-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: .9rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #67e8f9, #818cf8);
    color: #06111f;
    font-weight: 800;
    letter-spacing: .06em;
}

.modules-section {
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(8, 20, 38, 0.92), rgba(10, 24, 46, 0.96));
    padding: 1.5rem;
}

.modules-copy {
    text-align: center;
    margin-bottom: 1.2rem;
}

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

.module-card {
    background: rgba(255, 255, 255, 0.04);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.testimonial-card {
    border: 1px solid rgba(125, 211, 252, 0.25);
    border-radius: 16px;
    background: linear-gradient(145deg, var(--surface-soft), var(--surface));
    padding: 1rem;
}

.testimonial-card img {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 999px;
    border: 2px solid rgba(125, 211, 252, 0.45);
    margin-bottom: .6rem;
}

.testimonials-grid .testimonial-card:nth-child(1) img {
    object-position: center 24%;
}

.testimonials-grid .testimonial-card:nth-child(2) img {
    object-position: center 22%;
}

.testimonials-grid .testimonial-card:nth-child(3) img {
    object-position: center 26%;
}

.testimonial-card p {
    color: #d9e8ff;
    margin-bottom: .8rem;
    line-height: 1.5;
}

body[data-theme="light"] .testimonial-card p {
    color: #7186a3;
}

.testimonial-card strong {
    display: block;
    font-size: .98rem;
}

.testimonial-card span {
    color: var(--muted);
    font-size: .88rem;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: .9rem;
}

.faq-list details {
    border: 1px solid rgba(125, 211, 252, 0.3);
    border-radius: 16px;
    background:
        linear-gradient(160deg, var(--surface-soft), var(--surface));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 24px rgba(4, 12, 24, 0.35);
    padding: 1rem 1.15rem;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.faq-list details:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 28px rgba(4, 12, 24, 0.44);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    font-size: 1.05rem;
    line-height: 1.35;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: .1rem;
    top: 50%;
    width: 1.45rem;
    height: 1.45rem;
    transform: translateY(-50%);
    border-radius: 999px;
    border: 1px solid rgba(125, 211, 252, 0.45);
    color: #bbddff;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.faq-list details[open] summary::after {
    content: "-";
    background: rgba(125, 211, 252, 0.18);
    color: #eff7ff;
}

.faq-list p {
    color: var(--muted);
    margin-top: .8rem;
    line-height: 1.6;
    border-top: 1px solid rgba(125, 211, 252, 0.2);
    padding-top: .75rem;
}

.final-cta-section {
    border: 1px solid rgba(125, 211, 252, 0.26);
    border-radius: 20px;
    background: linear-gradient(145deg, var(--surface-soft), var(--surface));
    padding: 1.2rem;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
    align-items: center;
}

.final-cta-content p {
    color: var(--muted);
    max-width: 620px;
}

.final-cta-content .hero-actions {
    margin-top: 1.2rem;
}

.final-cta-visual {
    min-height: 230px;
    display: grid;
    place-items: center;
}

.final-cta-visual img {
    width: 100%;
    max-width: 470px;
    border-radius: 20px;
    border: 1px solid rgba(125, 211, 252, 0.28);
    box-shadow: 0 16px 34px rgba(6, 16, 33, 0.35);
}

.site-footer {
    max-width: none;
    width: calc(100% + 2.5rem);
    margin: 0 -1.25rem 0;
    border-top: 1px solid rgba(129, 140, 248, 0.35);
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 0;
    background: linear-gradient(180deg, #10254a 0%, #081226 100%);
    padding: 1.6rem 2.2rem .95rem;
    margin-top: auto;
}

body[data-theme="light"] .trust-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,252,0.98));
    border-color: rgba(148, 163, 184, 0.18);
    color: #0f172a;
}

body[data-theme="light"] .trust-phone {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

body[data-theme="light"] .featured-tag,
body[data-theme="light"] .toggle-btn.is-active {
    background: #0f172a;
    color: #ffffff;
}

body[data-theme="light"] .login-link,
body[data-theme="light"] .secondary-cta,
body[data-theme="light"] .proof-badges span,
body[data-theme="light"] .faq-list summary::after {
    border-color: rgba(148, 163, 184, 0.28);
}

body[data-theme="light"] .operation-card,
body[data-theme="light"] .module-card,
body[data-theme="light"] .segments-grid article {
    border-color: rgba(37, 99, 235, 0.14);
}

body[data-theme="light"] .modules-section {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 250, 0.98));
    border-color: rgba(37, 99, 235, 0.14);
}

body[data-theme="light"] .module-card {
    background: rgba(16, 37, 74, 0.04);
}

body[data-theme="light"] .operation-card h3,
body[data-theme="light"] .module-card h3,
body[data-theme="light"] .segments-grid h3 {
    color: #081426;
}

body[data-theme="light"] .operation-card p,
body[data-theme="light"] .module-card p,
body[data-theme="light"] .segments-grid p,
body[data-theme="light"] .operations-head p:last-child,
body[data-theme="light"] .modules-copy p:last-child {
    color: #42556d;
}

body[data-theme="light"] .hero-preview-window,
body[data-theme="light"] .benefits-figure img,
body[data-theme="light"] .final-cta-visual img {
    box-shadow: 0 24px 44px rgba(148, 163, 184, 0.16);
}

body[data-theme="light"] .site-footer {
    background: linear-gradient(180deg, #eef4fa 0%, #dce8f4 100%);
    border-top-color: rgba(148, 163, 184, 0.3);
    border-bottom-color: rgba(148, 163, 184, 0.18);
}

body[data-theme="light"] .footer-simple-logo-fallback,
body[data-theme="light"] .footer-simple-note,
body[data-theme="light"] .site-footer-copy p {
    color: #172554;
}

body[data-theme="light"] .footer-simple-logo {
    content: url("crm_novo/public_html/logo-lightbg.png");
}

body[data-theme="light"] .footer-simple-inner img + .footer-simple-divider + .footer-simple-note,
body[data-theme="light"] .footer-simple-note {
    color: #1e3a5f;
}

body[data-theme="light"] .footer-simple-divider {
    background: rgba(71, 85, 105, 0.35);
}

.footer-simple-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 84px;
    text-align: center;
}

.footer-simple-logo {
    height: 46px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

.footer-simple-logo-fallback {
    display: none;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: #f2f5ff;
}

.footer-simple-divider {
    width: 1px;
    height: 42px;
    background: rgba(210, 196, 255, 0.5);
}

.footer-simple-note {
    font-size: 1rem;
    color: #e5defe;
    max-width: 280px;
    line-height: 1.3;
    text-align: left;
}

.site-footer-copy {
    margin-top: .65rem;
    padding-top: .7rem;
    border-top: 1px solid rgba(205, 191, 255, 0.25);
    text-align: center;
}

.site-footer-copy p {
    color: #bdd6f2;
    font-size: .88rem;
}

.impl-floating-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    z-index: 10040;
}

.impl-floating-btn-icon {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, #35d4ff, #0ea5e9);
    box-shadow:
        0 0 0 9px rgba(103, 232, 249, 0.18),
        0 12px 24px rgba(7, 29, 57, 0.45);
    transition: transform .2s ease;
}

.impl-floating-btn:hover .impl-floating-btn-icon {
    transform: translateY(-2px) scale(1.04);
}

.impl-floating-btn svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.impl-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    background: rgba(4, 10, 20, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.impl-modal-overlay.is-open {
    display: flex;
}

.impl-modal {
    width: min(520px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: #f2f4f7;
    border-radius: 16px;
    color: #222;
    padding: 1.35rem;
    position: relative;
}

.impl-modal h3 {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: .65rem;
}

.impl-modal-desc {
    color: #555;
    line-height: 1.45;
    margin-bottom: .9rem;
}

.impl-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #64cdf1;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.impl-form {
    display: grid;
    gap: .7rem;
}

.impl-form input,
.impl-form select,
.impl-form textarea {
    width: 100%;
    border: 1px solid #d5d9df;
    border-radius: 8px;
    background: #e9ecef;
    color: #2b2b2b;
    padding: .84rem .8rem;
    font-family: inherit;
    font-size: 1rem;
}

.impl-form textarea {
    resize: vertical;
    min-height: 90px;
}

.impl-check {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .86rem;
    color: #51545a;
}

.impl-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.impl-submit {
    border: 0;
    border-radius: 8px;
    background: #14a8e2;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: .84rem 1rem;
    cursor: pointer;
}

.impl-recaptcha {
    width: 260px;
    max-width: 100%;
    background: #1a73e8;
    color: #fff;
    font-size: .82rem;
    border-radius: 2px;
    padding: .6rem .72rem;
}

.scroll-top-btn {
    position: fixed;
    right: 24px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(125, 211, 252, 0.45);
    border-radius: 999px;
    background: rgba(9, 24, 47, 0.9);
    color: #d9edff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 10030;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, border-color .22s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.scroll-top-btn:hover {
    border-color: rgba(125, 211, 252, 0.8);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

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

@keyframes integrationsLoopLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes integrationsLoopRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

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

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

@keyframes pulseTag {
    0%, 100% { filter: none; }
    50% { filter: brightness(1.06); }
}

@media (max-width: 980px) {
    .landing-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .top-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .hero-shell,
    .demo-grid,
    .value-strip {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        align-items: center;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .topbar {
        border-radius: 20px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        padding: 1.6rem 1.2rem 1.9rem;
    }

    .trust-left h2 {
        font-size: clamp(1.7rem, 8vw, 2.6rem);
    }

    .trust-right {
        min-height: 460px;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

    .benefits-grid,
    .operations-grid,
    .segments-grid,
    .final-cta-content {
        grid-template-columns: 1fr;
    }

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

    .hero-preview-stats,
    .hero-preview-board {
        grid-template-columns: 1fr;
    }

    .footer-simple-inner {
        flex-direction: column;
        gap: .6rem;
    }

    .footer-simple-divider {
        width: 56px;
        height: 1px;
    }

    .footer-simple-note {
        text-align: center;
    }

    .impl-floating-btn {
        width: 60px;
        height: 60px;
        right: 14px;
        bottom: 14px;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 84px;
    }
}

@media (max-width: 760px) {
    body {
        padding: .75rem .75rem 0;
    }

    #mainContent {
        min-height: calc(100vh - .75rem);
    }

    .topbar {
        gap: 1rem;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .top-actions {
        width: 100%;
        justify-content: flex-start;
        gap: .75rem;
    }

    .landing-controls {
        width: auto;
    }

    .login-link,
    .top-actions > .primary-cta {
        flex: 1 1 150px;
        text-align: center;
    }

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

.integrations-apis {
    margin-top: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.privacy-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 3rem;
    padding: 2.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.privacy-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: var(--muted);
    line-height: 1.6;
}

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

    .integrations-grid {
        transition: none !important;
    }
}
