/* static/inventory/css/landing_v3.css */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
    --page-bg: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --surface-muted: #f1f5f9;
    --surface-indigo: #f4f5ff;

    --text: #0f172a;
    --text-soft: #334155;
    --muted: #64748b;

    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    --primary: #4f46e5;
    --primary-bright: #2563eb;
    --primary-dark: #312e81;
    --primary-soft: #eef2ff;
    --primary-border: #c7d2fe;

    --success: #16a34a;
    --success-soft: #f0fdf4;
    --warning: #d97706;
    --warning-soft: #fffbeb;
    --danger: #dc2626;
    --danger-soft: #fef2f2;

    --shadow-xs: 0 6px 18px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 12px 34px rgba(15, 23, 42, 0.07);
    --shadow-md: 0 22px 64px rgba(15, 23, 42, 0.11);
    --shadow-lg: 0 30px 90px rgba(79, 70, 229, 0.18);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --container: 1180px;
}

/* ==========================================================================
   Reset and base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(79, 70, 229, 0.15),
            transparent 32rem
        ),
        radial-gradient(
            circle at 90% 4%,
            rgba(124, 58, 237, 0.1),
            transparent 34rem
        ),
        linear-gradient(
            180deg,
            #eef2ff 0%,
            #ffffff 28%,
            #f8fafc 66%,
            #ffffff 100%
        );
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

iframe {
    display: block;
    border: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

[id] {
    scroll-margin-top: 112px;
}

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

/* ==========================================================================
   Shared typography and sections
   ========================================================================== */

.landing-section {
    padding: 96px 0;
}

.section-heading,
.trust-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-eyebrow,
.hero-eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.trust-header h2,
.final-cta-content h2 {
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.section-heading p:not(.section-eyebrow),
.trust-header p:not(.section-eyebrow) {
    max-width: 720px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.section-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.section-cta-row > span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.landing-nav {
    position: sticky;
    top: 12px;
    z-index: 100;
    padding-top: 16px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 12px 14px 12px 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 999px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.landing-logo-img {
    width: auto;
    height: 34px;
}

.landing-nav-links {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.landing-nav-links a,
.landing-login,
.footer-column a {
    transition:
        color 0.17s ease,
        opacity 0.17s ease;
}

.landing-nav-links a:hover,
.landing-login:hover,
.footer-column a:hover {
    color: var(--primary);
}

.landing-nav-actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 14px;
}

.landing-login {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 850;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.landing-btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    transition:
        transform 0.17s ease,
        box-shadow 0.17s ease,
        background 0.17s ease,
        border-color 0.17s ease,
        color 0.17s ease;
}

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

.landing-btn:focus-visible {
    outline: 3px solid rgba(79, 70, 229, 0.24);
    outline-offset: 3px;
}

.landing-btn-primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primary-bright),
        var(--primary) 55%,
        #7c3aed
    );
    box-shadow: 0 16px 38px rgba(79, 70, 229, 0.3);
}

.landing-btn-primary:hover {
    box-shadow: 0 21px 50px rgba(79, 70, 229, 0.38);
}

.landing-btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.landing-btn-secondary:hover {
    background: #ffffff;
    border-color: var(--border-strong);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero-section {
    padding: 28px 0 42px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: 44px;
    overflow: hidden;
    padding: 44px 48px;
    background:
        radial-gradient(
            circle at 8% 8%,
            rgba(255, 255, 255, 0.98),
            transparent 29rem
        ),
        radial-gradient(
            circle at 90% 16%,
            rgba(99, 102, 241, 0.18),
            transparent 28rem
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92),
            rgba(238, 242, 255, 0.82)
        );
    border: 1px solid rgba(199, 210, 254, 0.82);
    border-radius: 44px;
    box-shadow: 0 30px 95px rgba(79, 70, 229, 0.14);
}

.hero-grid::before,
.hero-grid::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero-grid::before {
    right: -160px;
    bottom: -260px;
    width: 580px;
    height: 580px;
    background: radial-gradient(
        circle,
        rgba(79, 70, 229, 0.18),
        transparent 67%
    );
    border-radius: 50%;
}

.hero-grid::after {
    top: -220px;
    left: -190px;
    width: 470px;
    height: 470px;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.12),
        transparent 65%
    );
    border-radius: 50%;
}

.hero-content,
.hero-preview {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-content {
    max-width: 620px;
}

.hero-announcement {
    display: inline-flex;
    max-width: 100%;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary-border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.4;
}

.hero-eyebrow {
    margin-top: 28px;
}

.hero-section h1 {
    max-width: 610px;
    margin: 0;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 4.6vw, 63px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-subtitle {
    max-width: 570px;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 16.5px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 23px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-trust-list span {
    display: inline-flex;
    padding: 8px 12px;
    align-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.hero-preview {
    display: flex;
    min-height: 440px;
    align-items: center;
    justify-content: center;
}

.product-screenshot-card {
    position: relative;
    width: min(100%, 660px);
    margin: 0;
    padding: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.98);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transform: rotate(0.65deg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.product-screenshot-card::before {
    display: block;
    height: 38px;
    margin: -12px -12px 12px;
    background:
        radial-gradient(
            circle at 24px 19px,
            #fb7185 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 44px 19px,
            #fbbf24 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 64px 19px,
            #4ade80 0 5px,
            transparent 6px
        ),
        linear-gradient(180deg, #f8fafc, #eef2f7);
    border-bottom: 1px solid var(--border);
    content: "";
}

.product-screenshot-card img {
    width: 100%;
    height: auto;
    max-height: 390px;
    object-fit: contain;
    object-position: center top;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.product-screenshot-card figcaption {
    padding: 14px 8px 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
    text-align: center;
}

.preview-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(226, 232, 240, 0.98);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.preview-floating {
    position: absolute;
    right: -10px;
    bottom: 18px;
    width: min(285px, 80%);
    padding: 21px;
    border-color: var(--primary-border);
    box-shadow: var(--shadow-lg);
}

.preview-floating span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.preview-floating strong {
    display: block;
    margin-top: 9px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.45;
}

/* ==========================================================================
   Trust
   ========================================================================== */

.trust-section {
    padding: 62px 0 94px;
}

.trust-header {
    margin-bottom: 38px;
}

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

.trust-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.trust-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 16px;
    font-size: 20px;
}

.trust-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    letter-spacing: -0.035em;
}

.trust-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ==========================================================================
   Pain
   ========================================================================== */

.pain-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(220, 38, 38, 0.055),
            transparent 27rem
        ),
        linear-gradient(
            180deg,
            rgba(248, 250, 252, 0.94),
            rgba(255, 255, 255, 0.98)
        );
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

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

.pain-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.pain-card:hover {
    border-color: #fecaca;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pain-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    background: var(--danger-soft);
    border-radius: 17px;
    font-size: 22px;
}

.pain-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.pain-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.pain-summary {
    max-width: 820px;
    margin: 38px auto 0;
    padding: 36px;
    background: linear-gradient(135deg, #ffffff, #f8faff);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.pain-summary h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    letter-spacing: -0.045em;
}

.pain-summary p {
    max-width: 650px;
    margin: 13px auto 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   Solution
   ========================================================================== */

.solution-section {
    background: #ffffff;
}

.solution-flow {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
}

.solution-step {
    padding: 28px 24px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.solution-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-bright), #7c3aed);
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.24);
    font-size: 13px;
    font-weight: 950;
}

.solution-step h3 {
    margin: 0 0 11px;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.solution-step p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
}

.solution-summary {
    max-width: 760px;
    margin: 42px auto 0;
    text-align: center;
}

.solution-summary h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    letter-spacing: -0.045em;
}

.solution-summary p {
    margin: 14px auto 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

/* ==========================================================================
   Product showcase
   ========================================================================== */

.showcase-section {
    background:
        radial-gradient(
            circle at top right,
            rgba(79, 70, 229, 0.1),
            transparent 34rem
        ),
        linear-gradient(
            180deg,
            rgba(244, 245, 255, 0.92),
            rgba(255, 255, 255, 0.98)
        );
    border-top: 1px solid rgba(199, 210, 254, 0.65);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.showcase-main {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.showcase-main::before {
    display: block;
    height: 40px;
    margin: -14px -14px 14px;
    background:
        radial-gradient(
            circle at 26px 20px,
            #fb7185 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 47px 20px,
            #fbbf24 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 68px 20px,
            #4ade80 0 5px,
            transparent 6px
        ),
        linear-gradient(180deg, #f8fafc, #eef2f7);
    border-bottom: 1px solid var(--border);
    content: "";
}

.showcase-main img {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 20px;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 28px auto 0;
}

.showcase-card {
    padding: 25px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.showcase-card h3 {
    margin: 0 0 9px;
    font-size: 19px;
    letter-spacing: -0.035em;
}

.showcase-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits-section {
    background: #ffffff;
}

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

.benefit-card {
    padding: 29px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.benefit-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 17px;
    font-size: 22px;
}

.benefit-card h3 {
    margin: 0 0 11px;
    font-size: 21px;
    line-height: 1.28;
    letter-spacing: -0.04em;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================================================================
   Comparison
   ========================================================================== */

.comparison-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(79, 70, 229, 0.07),
            transparent 30rem
        ),
        linear-gradient(
            180deg,
            rgba(248, 250, 252, 0.96),
            rgba(255, 255, 255, 0.99)
        );
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 940px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    padding: 21px 24px;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
}

.comparison-old {
    color: var(--muted);
    background: var(--surface-muted);
    border-right: 1px solid var(--border);
}

.comparison-new {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.comparison-row {
    display: contents;
}

.comparison-item {
    padding: 20px 24px;
    color: var(--text-soft);
    border-top: 1px solid var(--border);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.5;
}

.comparison-item:nth-child(1) {
    border-right: 1px solid var(--border);
}

.comparison-item.success {
    color: #166534;
    background: var(--success-soft);
    font-weight: 850;
}

/* ==========================================================================
   Demo
   ========================================================================== */

.demo-video-card {
    max-width: 1000px;
    margin: 38px auto 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 30px;
    box-shadow: 0 26px 76px rgba(15, 23, 42, 0.13);
}

.demo-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 21px;
}

.demo-embed iframe {
    width: 100%;
    height: 100%;
}

.demo-video-fallback {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.6;
    text-align: center;
}

.demo-video-fallback a {
    color: var(--primary);
    font-weight: 850;
}

.demo-video-fallback a:hover {
    text-decoration: underline;
}

.demo-video-card ~ .hero-trust-list {
    justify-content: center;
    margin-top: 22px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-section {
    background:
        radial-gradient(
            circle at bottom right,
            rgba(124, 58, 237, 0.08),
            transparent 30rem
        ),
        linear-gradient(
            180deg,
            rgba(244, 245, 255, 0.68),
            rgba(255, 255, 255, 0.98)
        );
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

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

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.testimonial-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary),
        rgba(124, 58, 237, 0.72)
    );
    content: "";
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.24);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 17px;
    color: #f59e0b;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.testimonial-card blockquote {
    flex: 1;
    margin: 0 0 24px;
    color: var(--text-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    color: var(--text);
    font-size: 15px;
    line-height: 1.35;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-section {
    background: #ffffff;
}

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

.pricing-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 31px;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.pricing-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.featured-pricing {
    z-index: 2;
    background:
        radial-gradient(
            circle at top right,
            rgba(79, 70, 229, 0.1),
            transparent 18rem
        ),
        linear-gradient(180deg, #ffffff, #f7f8ff);
    border-color: var(--primary-border);
    box-shadow: 0 28px 78px rgba(79, 70, 229, 0.19);
    transform: translateY(-9px);
}

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

.pricing-popular {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 11px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-bright), #7c3aed);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pricing-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 35px;
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.pricing-card h3 span {
    color: var(--muted);
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0;
}

.pricing-description {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.pricing-card ul {
    display: grid;
    gap: 11px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.55;
}

.pricing-card .landing-btn {
    width: 100%;
    margin-top: auto;
}

.pricing-footer {
    max-width: 760px;
    margin: 25px auto 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.65;
    text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(79, 70, 229, 0.07),
            transparent 30rem
        ),
        linear-gradient(
            180deg,
            rgba(248, 250, 252, 0.96),
            rgba(255, 255, 255, 0.99)
        );
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-card {
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 19px;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta-section {
    padding: 104px 0;
}

.final-cta-content {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: 74px 42px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.22),
            transparent 23rem
        ),
        radial-gradient(
            circle at bottom right,
            rgba(167, 139, 250, 0.28),
            transparent 24rem
        ),
        linear-gradient(135deg, #172554, #3730a3 50%, #7c3aed);
    border-radius: 42px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.final-cta-content .section-eyebrow {
    color: #c7d2fe;
}

.final-cta-content h2 {
    color: #ffffff;
}

.final-cta-content > p {
    max-width: 700px;
    margin: 21px auto 0;
    color: #e0e7ff;
    font-size: 18px;
    line-height: 1.72;
}

.final-cta-content .hero-actions,
.final-cta-content .hero-trust-list {
    justify-content: center;
}

.final-cta-content .landing-btn-primary {
    color: var(--primary-dark);
    background: #ffffff;
    box-shadow: none;
}

.final-cta-content .landing-btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: none;
}

.final-cta-content .landing-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.final-cta-content .hero-trust-list span {
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.landing-footer {
    padding: 0 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.62fr);
    align-items: start;
    gap: 50px;
    padding: 38px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
}

.footer-brand > p {
    max-width: 300px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.footer-trust span {
    display: inline-flex;
    padding: 7px 10px;
    color: var(--muted);
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.footer-copyright {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
}

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

.footer-column {
    min-width: 0;
}

.footer-column h4 {
    margin: 0 0 13px;
    color: var(--text);
    font-size: 14px;
}

.footer-column a {
    display: block;
    margin: 9px 0;
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.hero-collage {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 52px 0 58px 36px;
    overflow: visible;
    isolation: isolate;
}

.hero-collage-dots {
    position: absolute;
    top: 4px;
    right: 8px;
    z-index: -1;
    width: 145px;
    height: 145px;
    opacity: 0.34;
    background-image: radial-gradient(
        circle,
        rgba(79, 70, 229, 0.55) 2px,
        transparent 2.5px
    );
    background-size: 18px 18px;
}

.hero-collage-main {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    transform: rotate(0.35deg);
}

.hero-collage-main::before {
    display: block;
    height: 37px;
    margin: -11px -11px 11px;
    background:
        radial-gradient(
            circle at 23px 18px,
            #fb7185 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 43px 18px,
            #fbbf24 0 5px,
            transparent 6px
        ),
        radial-gradient(
            circle at 63px 18px,
            #4ade80 0 5px,
            transparent 6px
        ),
        linear-gradient(180deg, #f8fafc, #eef2f7);
    border-bottom: 1px solid var(--border);
    content: "";
}

.hero-collage-main img {
    width: 100%;
    max-height: 390px;
    object-fit: contain;
    object-position: center top;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.hero-collage-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 46%;
    margin: 0;
    padding: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform: rotate(-1deg);
}

.hero-collage-panel img {
    width: 100%;
    border-radius: 14px;
}

.hero-collage-alert {
    position: absolute;
    right: -12px;
    bottom: 18px;
    z-index: 3;
    width: min(260px, 52%);
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--primary-border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.hero-collage-alert span {
    display: block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-collage-alert strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.42;
}

@media (max-width: 1050px) {
    .hero-collage {
        max-width: 780px;
        margin-inline: auto;
        padding-left: 40px;
    }
}

@media (max-width: 640px) {
    .hero-collage {
        padding: 0;
    }

    .hero-collage-dots,
    .hero-collage-panel {
        display: none;
    }

    .hero-collage-main {
        transform: none;
    }

    .hero-collage-main img {
        max-height: none;
    }

    .hero-collage-alert {
        position: static;
        width: 100%;
        margin-top: 14px;
    }
}
/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
    .landing-nav-links {
        gap: 17px;
        font-size: 13px;
    }

    .hero-grid {
        gap: 42px;
        padding: 48px;
    }

    .hero-section h1 {
        font-size: clamp(46px, 5vw, 66px);
    }

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

    .solution-arrow {
        display: none;
    }

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

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

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

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

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

    .product-screenshot-card {
        transform: none;
    }

    .preview-floating {
        right: 18px;
        bottom: 18px;
    }

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

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

@media (max-width: 820px) {
    .hero-grid {
        padding: 38px;
        border-radius: 35px;
    }

    .featured-pricing {
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .container {
        width: calc(100% - 24px);
    }

    .landing-nav {
        top: 8px;
        padding-top: 8px;
    }

    .nav-inner {
        min-height: 64px;
        padding: 10px 12px;
        border-radius: 22px;
    }

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

    .hero-section {
        padding-top: 24px;
    }

    .trust-section {
        padding: 44px 0 72px;
    }

    .trust-grid,
    .pain-grid,
    .solution-flow,
    .showcase-features,
    .benefits-grid,
    .pricing-grid,
    .faq-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        display: block;
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 16px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow-sm);
    }

    .comparison-item {
        border-top: 0;
    }

    .comparison-item:nth-child(1) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        background: var(--surface-muted);
    }

    .demo-video-card {
        padding: 10px;
        border-radius: 22px;
    }

    .demo-embed {
        border-radius: 16px;
    }

    .final-cta-section {
        padding: 78px 0;
    }

    .final-cta-content {
        padding: 56px 26px;
        border-radius: 31px;
    }

    .footer-grid {
        gap: 34px;
        padding: 29px 24px;
    }
}

@media (max-width: 640px) {
    .landing-logo-img {
        height: 30px;
    }

    .landing-login {
        display: none;
    }

    .landing-nav-actions {
        margin-left: auto;
    }

    .landing-nav-actions .landing-btn {
        min-height: 42px;
        padding-inline: 15px;
        font-size: 13px;
    }

    .hero-grid {
        gap: 33px;
        padding: 30px 21px;
        border-radius: 30px;
    }

    .hero-section h1 {
        font-size: 42px;
        letter-spacing: -0.058em;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-announcement {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 18px;
    }

    .hero-actions,
    .section-cta-row {
        gap: 10px;
    }

    .hero-actions .landing-btn,
    .section-cta-row .landing-btn,
    .pricing-card .landing-btn,
    .final-cta-content .landing-btn {
        width: 100%;
        min-height: 47px;
        padding: 10px 16px;
        white-space: normal;
    }

    .hero-preview {
        display: block;
    }

    .product-screenshot-card {
        padding: 8px;
        border-radius: 22px;
    }

    .product-screenshot-card::before {
        height: 32px;
        margin: -8px -8px 8px;
        background:
            radial-gradient(
                circle at 19px 16px,
                #fb7185 0 4px,
                transparent 5px
            ),
            radial-gradient(
                circle at 35px 16px,
                #fbbf24 0 4px,
                transparent 5px
            ),
            radial-gradient(
                circle at 51px 16px,
                #4ade80 0 4px,
                transparent 5px
            ),
            linear-gradient(180deg, #f8fafc, #eef2f7);
    }

    .product-screenshot-card img {
        max-height: none;
        border-radius: 16px;
    }

    .preview-floating {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .section-heading,
    .trust-header {
        margin-bottom: 37px;
    }

    .section-heading h2,
    .trust-header h2,
    .final-cta-content h2 {
        font-size: 36px;
    }

    .section-heading p:not(.section-eyebrow),
    .trust-header p:not(.section-eyebrow),
    .final-cta-content > p {
        font-size: 16px;
    }

    .trust-card,
    .pain-card,
    .solution-step,
    .showcase-card,
    .benefit-card,
    .testimonial-card,
    .pricing-card,
    .faq-card {
        padding: 23px;
    }

    .pain-summary {
        padding: 29px 22px;
    }

    .showcase-main {
        padding: 8px;
        border-radius: 23px;
    }

    .showcase-main::before {
        height: 33px;
        margin: -8px -8px 8px;
    }

    .showcase-main img {
        border-radius: 16px;
    }

    .pricing-card h3 {
        font-size: 31px;
    }
}

@media (max-width: 420px) {
    .nav-inner {
        gap: 10px;
    }

    .landing-logo-img {
        max-width: 112px;
        height: auto;
    }

    .landing-nav-actions .landing-btn {
        padding-inline: 12px;
        font-size: 12px;
    }

    .hero-grid {
        padding-inline: 18px;
    }

    .hero-section h1 {
        font-size: 37px;
    }

    .hero-trust-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .final-cta-content {
        padding-inline: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

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

    .testimonial-card blockquote {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-card blockquote {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-card {
        transition: none;
    }

    .testimonial-card:hover {
        transform: none;
    }
}