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

:root {
    --neutral-bg: #ffffff;
    --soft-bg: #f7f9fc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-soft: #e5eaf2;
    --problem-bg: #f3f6fb;
    --problem-card: #ffffff;
    --problem-accent: #f8d7da;
    --problem-accent-text: #b4232a;
    --problem-warning: #fff1e6;
    --solution-bg: #f0f7ff;
    --success-soft: #e6f6ee;
    --success-main: #22c55e;
    --highlight: #2563eb;
    --primary-blue: var(--highlight);
    --primary-blue-dark: #1d4ed8;
    --accent-green: var(--success-main);
    --accent-green-dark: #059669;
    --light-gray: var(--soft-bg);
    --medium-gray: var(--border-soft);
    --dark-gray: #374151;
    --text-dark: var(--text-main);
    --text-light: var(--text-muted);
    --white: var(--neutral-bg);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --nav-height: 75px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

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


.chrome-pending #site-header,
.chrome-pending .hero {
    opacity: 0;
}

body.chrome-ready #site-header,
body.chrome-ready .hero {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#site-header {
    min-height: 0;
    height: 0;
    display: block;
}

.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 75px;
    transition: padding 0.3s ease, min-height 0.3s ease;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.logo img {
    height: 56px;
    width: auto;
    display: block;
    filter: contrast(1.08) saturate(1.05) drop-shadow(0 2px 6px rgba(37, 99, 235, 0.25));
}

.logo-wordmark {
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
    transform: translateY(1px);
}

.logo-wordmark-primary {
    color: var(--text-dark);
}

.logo-wordmark-accent {
    background: linear-gradient(120deg, var(--primary-blue), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-blue);
}

.navbar.scrolled .nav-wrapper {
    padding: 0.75rem 0;
    min-height: 75px;
}

.navbar.scrolled .logo img {
    height: 56px;
}

.nav-menu {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #1E293B;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:not(.btn-green-nav):hover {
    color: var(--primary-blue);
}

.nav-links a:not(.btn-green-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a.is-active {
    color: var(--primary-blue);
}

.nav-links a.is-active::after {
    width: 100%;
}

.nav-links a:not(.btn-green-nav):hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: flex-end;
}

.login-link {
    color: #1E293B !important;
    font-weight: 500;
    opacity: 0.7;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.login-link:hover {
    color: var(--primary-blue) !important;
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-green {
    background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
    color: var(--white);
    border-color: transparent;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.btn-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(2px);
    }
}

.btn-green:hover {
    background: linear-gradient(135deg, #16a34a 0%, #1d4ed8 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35), 0 6px 18px rgba(37, 99, 235, 0.25);
}

.btn-green:hover .btn-arrow {
    transform: translateX(4px);
    animation: none;
}

.btn-green-nav {
    position: relative;
    background: transparent;
    color: #1E293B;
    padding: 9px 18px 11px 18px;
    border-radius: 10px;
    font-weight: 500;
    border: none;
    transition: all 0.25s ease;
    overflow: hidden;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-green-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #2563EB 0%, #16A34A 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-green-nav:hover {
    background: linear-gradient(135deg, #2563EB 0%, #16A34A 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-green-nav:hover::before {
    opacity: 0;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: #1e40af;
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero {
    background: radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.08), transparent 55%),
        radial-gradient(circle at 30% 70%, rgba(15, 23, 42, 0.04), transparent 55%),
        linear-gradient(180deg, var(--neutral-bg) 0%, var(--soft-bg) 55%, var(--neutral-bg) 100%);
    padding: 76px 0 68px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero::before {
    display: none;
}

.hero .container {
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(5.5rem, 8.5vw, 8.5rem);
    align-items: flex-start;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    text-align: left;
    max-width: clamp(20rem, 36vw, 31.5rem);
    position: relative;
    z-index: 10;
}

.hero-accent {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    text-align: left;
    pointer-events: none;
}

.hero-accent-inner {
    position: relative;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
}

.hero-accent-inner::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    right: 0;
    top: 50%;
    transform: translate(10%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.28), rgba(16, 185, 129, 0.18), rgba(37, 99, 235, 0));
    opacity: 0.32;
    filter: blur(90px);
    z-index: 0;
}

.hero-accent img {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: min(90%, 520px);
    height: auto;
    opacity: 0.38;
    filter: saturate(1.2) blur(0.5px);
    z-index: 1;
    pointer-events: none;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-self: end;
    margin-left: clamp(2rem, 4vw, 4rem);
    margin-top: clamp(1rem, 1.6vw, 1.75rem);
    transform: translateX(clamp(0.4rem, 1.2vw, 1.1rem));
}

.hero-carousel-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(30, 41, 59, 0.7);
    background: rgba(148, 163, 184, 0.22);
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
}

.hero-browser-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 680px;
    aspect-ratio: 16 / 10;
    min-height: clamp(320px, 40vw, 425px);
}

.hero-browser {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.25), 0 12px 30px rgba(37, 99, 235, 0.24);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.hero-browser:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 6px;
}

.hero-browser-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(226, 232, 240, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.45);
}

.hero-browser-controls,
.hero-browser-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.hero-browser-controls span,
.hero-browser-actions span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5f5;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.hero-browser-controls span:nth-child(1) {
    background: #f87171;
}

.hero-browser-controls span:nth-child(2) {
    background: #fbbf24;
}

.hero-browser-controls span:nth-child(3) {
    background: #34d399;
}

.hero-browser-url {
    justify-self: center;
    width: min(320px, 100%);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.55);
    font-size: 0.7rem;
    font-weight: 600;
    color: #1e293b;
    text-align: center;
}

.hero-browser-body {
    flex: 1;
    background: #f8fafc;
}

.hero-browser-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
    height: 100%;
    padding: 0.6rem 0.7rem 3.6rem;
    will-change: transform;
    transform: translateZ(0);
}

.hero-browser-sidebar {
    background: #f1f5f9;
    color: #94a3b8;
    padding: 1.6rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-browser-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.hero-browser-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
}

.hero-browser-link {
    color: rgba(100, 116, 139, 0.7);
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
}

.hero-browser-link.is-active {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.hero-browser-main {
    padding: 2.4rem 2.6rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-browser-focus {
    position: relative;
    width: min(320px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.4rem;
}

.hero-browser-focus-card {
    width: 100%;
    padding: 1.6rem;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.2);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.08), 0 10px 24px rgba(16, 185, 129, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
    animation: heroCard 8s ease-in-out infinite;
}

.hero-browser-focus-eyebrow {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #94a3b8;
}

.hero-browser-focus-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.hero-browser-focus-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-browser-focus-actions {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-browser-cta {
    border: none;
    background: linear-gradient(135deg, #2563eb, #16a34a);
    color: #f8fafc;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28), 0 6px 16px rgba(16, 185, 129, 0.2);
    animation: heroCta 8s ease-in-out infinite;
}

.hero-browser-status {
    display: grid;
    place-items: center;
    min-width: 72px;
    position: relative;
}

.hero-browser-status-text {
    font-size: 0.6rem;
    font-weight: 600;
    grid-area: 1 / 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
}

.hero-browser-status-text.is-pending {
    color: var(--text-main);
    background: var(--problem-warning);
    border-color: var(--border-soft);
    animation: heroPending 8s ease-in-out infinite;
}

.hero-browser-status-text.is-approved {
    color: var(--success-main);
    background: var(--success-soft);
    border-color: rgba(34, 197, 94, 0.3);
    opacity: 0;
    transform: translateY(6px);
    animation: heroApproved 8s ease-in-out infinite;
}

.hero-browser-toast {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translate3d(-50%, 8px, 0);
    background: rgba(15, 23, 42, 0.88);
    color: #f8fafc;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
    max-width: min(220px, calc(100% - 2rem));
    width: max-content;
    text-align: center;
    opacity: 0;
    will-change: transform, opacity;
    animation: heroToast 8s ease-in-out infinite;
}

@keyframes heroCard {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    10%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    90%, 100% {
        opacity: 0;
        transform: translateY(6px);
    }
}

@keyframes heroPending {
    0%, 34% {
        opacity: 1;
    }
    42%, 100% {
        opacity: 0;
    }
}

@keyframes heroApproved {
    0%, 36% {
        opacity: 0;
        transform: translateY(6px);
    }
    46%, 78% {
        opacity: 1;
        transform: translateY(0);
    }
    86%, 100% {
        opacity: 0;
        transform: translateY(-4px);
    }
}

@keyframes heroCta {
    0%, 20% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
        opacity: 1;
    }
    24%, 30% {
        transform: scale(0.96);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
        opacity: 0.85;
    }
    38%, 88% {
        opacity: 0;
        transform: scale(0.98);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
    }
    96%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
        opacity: 1;
    }
}

@keyframes heroToast {
    0%, 54% {
        opacity: 0;
        transform: translate3d(-50%, 8px, 0);
    }
    62%, 82% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
    90%, 100% {
        opacity: 0;
        transform: translate3d(-50%, 8px, 0);
    }
}

@keyframes heroToastMobile {
    0%, 44% {
        opacity: 0;
        transform: translate3d(-50%, 10px, 0);
    }
    54%, 86% {
        opacity: 1;
        transform: translate3d(-50%, 0, 0);
    }
    94%, 100% {
        opacity: 0;
        transform: translate3d(-50%, 10px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-browser-focus-card,
    .hero-browser-cta,
    .hero-browser-status-text,
    .hero-browser-toast {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .fade-up {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .hero-browser-toast {
        transform: translate3d(-50%, 0, 0);
    }

    .hero-browser-status-text.is-pending {
        opacity: 1;
    }

    .hero-browser-status-text.is-approved {
        opacity: 0;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero-browser-stage {
        padding-bottom: 4rem;
    }
}

.hero-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: var(--white);
    color: #1e293b;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    z-index: 3;
}

.hero-carousel-button:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
    transform: translateY(-50%) scale(1.02);
}

.hero-carousel-button:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 3px;
}

.hero-carousel-prev {
    left: -30px;
}

.hero-carousel-next {
    right: -30px;
}

.hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.hero-carousel-dot.is-active {
    background: var(--primary-blue);
    width: 18px;
}

.hero-carousel-dot:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 3px;
}

.hero-preheadline {
    font-size: 15px;
    font-weight: 600;
    color: rgba(30, 64, 175, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
    max-width: 16ch;
    color: #1E293B;
    letter-spacing: -0.02em;
}

.hero-gradient {
    background: linear-gradient(90deg, var(--primary-blue) 0%, #10b981 50%, var(--primary-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary-blue);
    font-weight: 800;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 17px;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-subtitle strong {
    font-weight: 600;
    color: #334155;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.35rem;
    display: grid;
    gap: 0.4rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}

.hero-bullets li::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 1.2rem;
    line-height: 1;
}

.hero-benefits {
    margin: 0 0 1.35rem;
    display: grid;
    gap: 0.4rem;
}

.hero-benefits .benefit-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
    padding: 0;
    border: 0;
    background: none;
}

.hero-benefits .benefit-chip::before {
    content: "•";
    color: var(--primary-blue);
    font-size: 1.2rem;
    line-height: 1;
}

.hero-benefit {
    font-size: 15px;
    color: #94A3B8;
    font-style: italic;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.propview-gradient {
    color: var(--primary-blue);
    font-weight: 800;
}

.hero-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-fade-up-delay {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.15s forwards;
}

.hero-fade-up-delay-2 {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.3s forwards;
}

.hero-fade-up-delay-3 {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.45s forwards;
}

.hero-fade-up-delay-4 {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero-fade-up-delay-5 {
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.85s forwards;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 0.65rem;
    align-items: center;
}

.hero-text-link {
    font-weight: 600;
    color: var(--highlight);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}

.hero-text-link:hover {
    color: var(--success-main);
}

.hero-proof {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(71, 85, 105, 0.75);
    margin: 0;
}

.signup-legal {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(71, 85, 105, 0.8);
}

.signup-legal a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.signup-legal a:hover,
.signup-legal a:focus-visible {
    text-decoration: underline;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.hero-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.12));
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-microcopy {
    font-size: 0.9rem;
    color: rgba(71, 85, 105, 0.8);
}


.trust-bar {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
}

.trust-bar i {
    color: var(--primary-blue);
}


.section {
    padding: 6rem 0;
}

.bg-soft-slate {
    background: var(--soft-bg);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto;
    max-width: 680px;
}


.section-intro--solution {
    max-width: 840px;
    margin-bottom: 2.4rem;
}

.section-heading--solution {
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

.section-subheading--solution {
    max-width: 720px;
    color: rgba(15, 23, 42, 0.8);
}

.section-anchor {
    height: 1px;
}

.section-microheading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-microheading::before {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.6), rgba(14, 165, 233, 0.4));
    border-radius: 999px;
}

.section-platform {
    background: var(--white);
}

.workflow-flow {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.workflow-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
    border-radius: 20px;
    padding: 1.6rem 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.75rem;
    position: relative;
    flex: 1 1 200px;
    min-width: 190px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.workflow-step:nth-child(odd) {
    transform: translateY(-8px);
}

.workflow-step:nth-child(even) {
    transform: translateY(6px);
}

.workflow-step:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 24px 40px rgba(37, 99, 235, 0.12);
}

.workflow-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.workflow-step p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.workflow-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -32px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.6));
    transform: translateY(-50%);
}

.workflow-step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(50% - 5px);
    right: -38px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid rgba(14, 165, 233, 0.6);
}

.platform-footer {
    text-align: center;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
}

.platform-support {
    font-size: 1rem;
    color: var(--text-light);
}


.section-results {
    background: linear-gradient(180deg, #f8fbff 0%, #fefcf8 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.results-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.results-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 24px 46px rgba(37, 99, 235, 0.14);
}

.results-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.12));
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.results-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.results-card p {
    color: var(--text-light);
}

.section-comparison {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-intro--comparison {
    max-width: 820px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    align-content: start;
    gap: 1rem;
}

.comparison-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.comparison-card--manual,
.comparison-card--crm {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.92));
}

.comparison-card--bookavue {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(16, 185, 129, 0.1));
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.16);
}

.comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.comparison-list li {
    display: grid;
    gap: 0.35rem;
    padding: 0.78rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.comparison-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.comparison-row-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(15, 23, 42, 0.54);
}

.comparison-row-value {
    font-size: 0.98rem;
    color: rgba(15, 23, 42, 0.88);
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.comparison-card--bookavue .comparison-row-title,
.comparison-card--bookavue .comparison-row-value {
    color: rgba(15, 23, 42, 0.96);
}

.comparison-card--bookavue .comparison-row-value i {
    color: rgba(16, 185, 129, 0.9);
    font-size: 0.82rem;
    margin-top: 0.24rem;
}

.comparison-cta {
    margin-top: 1.75rem;
    text-align: center;
}

.section-trust {
    background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.section-trust .container {
    width: 100%;
}

.section-intro--trust {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    display: grid;
    align-content: start;
    gap: 0.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: 0 22px 38px rgba(37, 99, 235, 0.12);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.1));
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.18);
    color: var(--primary-blue);
    font-size: 1rem;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

.trust-note {
    margin-top: 1.3rem;
    text-align: center;
    font-size: 0.92rem;
    color: rgba(15, 23, 42, 0.66);
}

.section-benefits {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #f3f9ff 100%);
    overflow: hidden;
}

.section-benefits > .container {
    position: relative;
    z-index: 1;
}

.section-benefits::before {
    content: '';
    position: absolute;
    inset: 12% auto auto 8%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0));
    opacity: 0.5;
    pointer-events: none;
}

.section-benefits::after {
    content: '';
    position: absolute;
    right: 6%;
    top: 16%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0));
    opacity: 0.45;
    pointer-events: none;
}

.section-demo {
    background: var(--solution-bg);
}

.section-email {
    background: var(--solution-bg);
}


.section-workflow-management {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.section-workflow-management .container {
    width: 100%;
}

.section-intro--workflow {
    max-width: 820px;
    margin-bottom: 2.4rem;
}

.section-heading--workflow {
    margin-bottom: 1.1rem;
}

.section-subheading--workflow {
    max-width: 620px;
}

.workflow-management-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 2.8rem;
    align-items: center;
}

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

.workflow-feature-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.65rem;
    align-content: start;
    min-height: 210px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.workflow-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 20px 38px rgba(37, 99, 235, 0.12);
}

.workflow-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.14));
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.14);
    font-size: 1.05rem;
}

.workflow-feature-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.workflow-feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}

.workflow-showcase-panel {
    margin: 0;
}

.workflow-showcase-trigger {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.09);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    padding: 0;
    position: relative;
    cursor: zoom-in;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.workflow-showcase-trigger:hover,
.workflow-showcase-trigger:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.24);
    box-shadow: 0 28px 50px rgba(37, 99, 235, 0.2);
}

.workflow-showcase-trigger img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.workflow-showcase-hint {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
}

body.lightbox-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 3vw, 2rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 1800;
}

.image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
}

.image-lightbox-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: 92vh;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.55);
}

.image-lightbox-image {
    width: 100%;
    max-height: 92vh;
    display: block;
    object-fit: contain;
    background: #fff;
}

.image-lightbox-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.84);
    color: #f8fafc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
    background: rgba(37, 99, 235, 0.9);
}

.workflow-management-cta {
    margin-top: 2.1rem;
    display: flex;
    justify-content: center;
}

.section-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.section-text-link:hover,
.section-text-link:focus-visible {
    color: var(--primary-green);
    transform: translateY(-1px);
}

.email-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.email-inbox {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.email-tab {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 0.95rem 1.1rem;
    color: rgba(15, 23, 42, 0.88);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    position: relative;
}

.email-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.email-tab-title {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.email-tab-subject {
    font-weight: 500;
    font-size: 0.98rem;
}

.email-tab-preview {
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
}

.email-tab-status {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--success-main);
    box-shadow: 0 0 0 4px var(--success-soft);
    transition: opacity 0.16s ease, transform 0.16s ease;
    flex-shrink: 0;
}

.email-tab-time {
    font-size: 0.78rem;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 500;
    white-space: nowrap;
}

.email-tab.is-unread {
    color: rgba(15, 23, 42, 0.95);
}

.email-tab.is-unread .email-tab-subject {
    font-weight: 600;
}

.email-tab.is-unread .email-tab-preview {
    color: rgba(15, 23, 42, 0.7);
}

.email-tab.is-read {
    color: rgba(15, 23, 42, 0.7);
}

.email-tab.is-read .email-tab-preview {
    color: rgba(15, 23, 42, 0.55);
}

.email-tab.is-read .email-tab-status {
    opacity: 0;
    transform: scale(0.6);
}

.email-tab:hover,
.email-tab:focus-visible {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.18);
    outline: none;
}

.email-tab.is-active {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
    color: var(--text-dark);
}

.email-preview {
    display: flex;
    justify-content: center;
}

.email-card {
    width: 100%;
    max-width: 560px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    padding: 1.5rem;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.email-preview-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(148, 163, 184, 0.08),
        rgba(226, 232, 240, 0.3),
        rgba(148, 163, 184, 0.08)
    );
    background-size: 200% 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
    mix-blend-mode: screen;
    z-index: 2;
}

.email-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.18s ease, filter 0.18s ease;
    z-index: 1;
}

.email-image.is-fading {
    opacity: 0;
}

.email-card.is-switching .email-image {
    opacity: 0.65;
    filter: blur(1.5px);
}

.email-card.is-switching .email-preview-overlay {
    opacity: 1;
    animation: email-shimmer 1.2s ease-in-out infinite;
}

@keyframes email-shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.demo-layout {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.demo-menu {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.demo-menu-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--white);
    border-radius: 14px;
    padding: 0.95rem 1.1rem;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.demo-menu-item:hover,
.demo-menu-item:focus-visible {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.15);
    outline: none;
}

.demo-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.25s ease;
}

.demo-menu-item.is-active {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--primary-blue);
    padding-left: 1.35rem;
}

.demo-menu-item.is-active::before {
    background: linear-gradient(180deg, #2563eb, #16a34a);
}

.demo-preview {
    width: 100%;
}

.demo-frame {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: left;
    background: #f8fafc;
    aspect-ratio: 16 / 10;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.demo-image.is-fading {
    opacity: 0;
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.8rem;
    align-items: start;
}

.benefits-content {
    display: grid;
    gap: 2rem;
}

.section-intro--benefits {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 1.5rem 1.45rem;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: grid;
    gap: 0.7rem;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(37, 99, 235, 0.14);
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
}

.benefits-visual {
    position: relative;
}

.benefits-panel {
    background: linear-gradient(155deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.9));
    border-radius: 24px;
    color: #fff;
    padding: 2rem 1.7rem;
    box-shadow: 0 24px 48px rgba(30, 64, 175, 0.3);
}

.benefits-panel-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.86;
    margin-bottom: 0.8rem;
}

.benefits-panel h3 {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 1.4rem;
}

.benefits-metrics {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.benefits-metrics li {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    display: grid;
    gap: 0.2rem;
    backdrop-filter: blur(2px);
}

.metric-value {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.92rem;
    opacity: 0.92;
}

.section-use-cases {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.section-intro--use-cases {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.use-cases-grid {
    margin-top: 2.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.8rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(37, 99, 235, 0.14);
    border-color: rgba(22, 163, 74, 0.35);
}

.use-case-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #16a34a 100%);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.use-case-card h3 {
    font-size: 1.18rem;
    line-height: 1.35;
    color: var(--text-dark);
}

.use-case-card p {
    color: var(--text-light);
}

.section-problem {
    position: relative;
    background: var(--problem-bg);
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.section-problem .container {
    width: 100%;
}

.problem-stage {
    position: relative;
    padding: 4.5rem 3.5rem;
    border-radius: 28px;
    background: var(--problem-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    width: min(100%, 1100px);
    margin: 0 auto;
}

.problem-intro {
    max-width: 900px;
    margin: 0 auto;
}

.section-problem .section-subheading {
    margin-top: 1rem;
}

.problem-heading-accent {
    position: relative;
    display: inline-block;
    padding: 0 0.2rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    box-shadow: inset 0 -8px 0 rgba(59, 130, 246, 0.18);
}

.problem-eyebrow {
    background: rgba(15, 23, 42, 0.04);
    color: rgba(30, 41, 59, 0.75);
    border: 1px solid var(--border-soft);
}

.problem-subheading {
    display: none;
}

.problem-subheading span {
    display: block;
}

.problem-scenario {
    margin-top: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    text-align: center;
}

.problem-scenario-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.74);
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.problem-timeline {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: center;
    padding: 0.1rem 0;
    width: 100%;
    margin: 0 auto;
}

.problem-timeline-inner {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.problem-chip {
    --timeline-shadow-base: 0 10px 18px rgba(15, 23, 42, 0.1);
    --timeline-shadow-active: 0 16px 30px rgba(15, 23, 42, 0.16);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.95rem 0.5rem 0.7rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--timeline-shadow-base);
    white-space: nowrap;
}

.problem-chip--step {
    --timeline-delay: 0s;
    --timeline-lift: -10px;
    --timeline-scale: 1.035;
    position: relative;
    z-index: 0;
    transform-origin: center;
    will-change: transform, box-shadow;
    animation: problemTimelineActive 10s ease-in-out infinite;
    animation-delay: var(--timeline-delay);
    animation-play-state: paused;
}

.problem-chip--step > * {
    position: relative;
    z-index: 2;
}

.problem-chip--step::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(15, 23, 42, 0.04));
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    animation: problemTimelineTint 10s ease-in-out infinite;
    animation-delay: var(--timeline-delay);
    animation-play-state: paused;
}

.problem-chip--step-2 {
    --timeline-delay: 2s;
}

.problem-chip--step-3 {
    --timeline-delay: 4s;
}

.problem-chip--step-4 {
    --timeline-delay: 6s;
}

.problem-chip--step-5 {
    --timeline-delay: 8s;
    --timeline-lift: -18px;
    --timeline-scale: 1.06;
}

.problem-chip--waiting {
    animation-name: problemTimelineActive, problemWaitingPulse;
    animation-duration: 10s, 2.5s;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-delay: var(--timeline-delay), 0s;
    animation-play-state: paused, paused;
}

.problem-chip--failure::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    box-shadow: 0 0 0 rgba(180, 35, 42, 0), 0 18px 32px rgba(180, 35, 42, 0.22);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    animation: problemFailureGlow 10s ease-in-out infinite;
    animation-delay: var(--timeline-delay);
    animation-play-state: paused;
}

.problem-chip-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--highlight);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.problem-chip--alert {
    background: var(--problem-accent);
    border-color: rgba(180, 35, 42, 0.35);
    color: var(--problem-accent-text);
    box-shadow: 0 12px 24px rgba(180, 35, 42, 0.16);
    animation: problemPulse 3.6s ease-in-out infinite;
}

.problem-chip--alert .problem-chip-number {
    background: rgba(180, 35, 42, 0.18);
    border-color: rgba(180, 35, 42, 0.35);
    color: var(--problem-accent-text);
    box-shadow: inset 0 0 0 1px rgba(180, 35, 42, 0.2);
}

.problem-chip--amber {
    --timeline-shadow-base: 0 10px 18px rgba(15, 23, 42, 0.08);
    --timeline-shadow-active: 0 16px 30px rgba(15, 23, 42, 0.14);
    background: rgba(255, 241, 230, 0.96);
    border-color: rgba(251, 146, 60, 0.28);
    color: rgba(124, 45, 18, 0.9);
}

.problem-chip--amber .problem-chip-number {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--highlight);
}

.problem-chip--muted {
    --timeline-shadow-base: 0 8px 16px rgba(15, 23, 42, 0.06);
    --timeline-shadow-active: 0 14px 26px rgba(15, 23, 42, 0.12);
    background: rgba(255, 241, 230, 0.88);
    border-color: rgba(251, 146, 60, 0.24);
    color: rgba(120, 53, 15, 0.92);
}

.problem-chip--muted .problem-chip-number {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--highlight);
}

.problem-chip--rose {
    --timeline-shadow-base: 0 12px 22px rgba(180, 35, 42, 0.12);
    --timeline-shadow-active: 0 18px 34px rgba(180, 35, 42, 0.2);
    background: var(--problem-accent);
    border-color: rgba(180, 35, 42, 0.35);
    color: var(--problem-accent-text);
}

.problem-chip--rose .problem-chip-number {
    background: rgba(180, 35, 42, 0.15);
    border-color: rgba(180, 35, 42, 0.35);
    color: var(--problem-accent-text);
}

.problem-chip--soft {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
    color: rgba(15, 23, 42, 0.65);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.problem-chip--soft .problem-chip-number {
    background: rgba(100, 116, 139, 0.12);
    border-color: rgba(100, 116, 139, 0.2);
    color: rgba(71, 85, 105, 0.85);
}

.problem-ellipsis {
    display: inline-block;
    min-width: 1.1em;
    animation: problemEllipsis 2.4s ease-in-out infinite;
    color: inherit;
}

@keyframes problemPulse {
    0%,
    100% {
        box-shadow: 0 12px 24px rgba(180, 35, 42, 0.16);
    }
    50% {
        box-shadow: 0 14px 30px rgba(180, 35, 42, 0.26);
    }
}

@keyframes problemTimelineActive {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: var(--timeline-shadow-base);
    }
    5%,
    11.5% {
        transform: translateY(var(--timeline-lift)) scale(var(--timeline-scale));
        box-shadow: var(--timeline-shadow-active);
    }
    14%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: var(--timeline-shadow-base);
    }
}

@keyframes problemTimelineTint {
    0% {
        opacity: 0;
    }
    5%,
    11.5% {
        opacity: 1;
    }
    14%,
    100% {
        opacity: 0;
    }
}

@keyframes problemWaitingPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes problemFailureGlow {
    0%,
    8%,
    100% {
        opacity: 0;
    }
    9%,
    11.5% {
        opacity: 1;
    }
}

@keyframes problemEllipsis {
    0%,
    100% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.8;
    }
}


.section-problem.timeline-active .problem-chip--step,
.section-problem.timeline-active .problem-chip--step::after,
.section-problem.timeline-active .problem-chip--failure::before {
    animation-play-state: running;
}

.section-problem.timeline-active .problem-chip--waiting {
    animation-play-state: running, running;
}

.problem-arrow {
    color: rgba(15, 23, 42, 0.52);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0.1rem;
}

.problem-closing {
    margin-top: 2.25rem;
    color: rgba(15, 23, 42, 0.86);
    font-weight: 700;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}


@media (prefers-reduced-motion: reduce) {
    .problem-chip--alert {
        animation: none;
    }

    .problem-chip--step,
    .problem-chip--waiting,
    .problem-chip--failure,
    .problem-chip--step::after,
    .problem-chip--failure::before {
        animation: none;
    }

    .problem-ellipsis {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .problem-timeline {
        flex-wrap: wrap;
    }

    .problem-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 96px;
    }

    .problem-stage {
        padding: 2.8rem 1.4rem;
    }

    .problem-timeline {
        flex-wrap: wrap;
        gap: 0.65rem;
        justify-content: center;
    }

    .problem-chip {
        width: calc(50% - 0.4rem);
        min-width: 180px;
        justify-content: flex-start;
        white-space: normal;
    }

    .problem-timeline-inner {
        justify-content: center;
        width: 100%;
    }

    .problem-arrow {
        display: none;
    }
}

@media (max-width: 540px) {
    .problem-chip {
        width: 100%;
        min-width: 0;
    }
}

.section-how {
    background: var(--soft-bg);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.section-how .container {
    width: 100%;
}

.section-how .eyebrow {
    background: transparent;
    color: rgba(37, 99, 235, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.16em;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 2.6rem;
    max-width: 1120px;
    margin-inline: auto;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    inset: -1.2rem -0.8rem;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.06), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        0 20px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    opacity: 0.7;
    z-index: 0;
}

.how-steps::after {
    content: '';
    position: absolute;
    top: 0.6rem;
    bottom: 0.6rem;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.22));
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.how-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.94));
    border-radius: 22px;
    padding: 2.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 14px 26px rgba(15, 23, 42, 0.09),
        0 2px 8px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    text-align: left;
}

.how-step {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(37, 99, 235, 0.7);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.16);
}

.how-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.08) 100%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.how-card > * {
    position: relative;
    z-index: 1;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.12),
        0 4px 10px rgba(15, 23, 42, 0.08);
}

.how-card--primary {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        inset 0 0 18px rgba(59, 130, 246, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7),
        0 26px 48px rgba(15, 23, 42, 0.2),
        0 12px 20px rgba(37, 99, 235, 0.14);
    background: linear-gradient(150deg, rgba(255, 255, 255, 1), rgba(226, 232, 240, 0.5));
}

.how-card--primary::before {
    opacity: 0.45;
}

.how-card--primary::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.2), transparent 70%);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    animation: primaryGlow 7s ease-in-out infinite;
}

.how-card--primary:hover {
    transform: translateY(-11px);
}

.how-card--support {
    box-shadow:
        0 12px 24px rgba(15, 23, 42, 0.08),
        0 2px 6px rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.06);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
}

.how-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

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

.how-card p {
    margin: 0;
}

.how-subtitle {
    color: rgba(15, 23, 42, 0.76);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.5;
}

.how-supporting {
    color: rgba(15, 23, 42, 0.56);
    font-size: 0.98rem;
    line-height: 1.65;
}

.how-card--support h3 {
    color: rgba(15, 23, 42, 0.8);
}

.how-card--support .how-subtitle {
    color: rgba(15, 23, 42, 0.72);
}

.how-card--support .how-supporting {
    color: rgba(15, 23, 42, 0.54);
}

.how-card--tertiary {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.9));
    border-color: rgba(15, 23, 42, 0.06);
}

.how-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    justify-content: flex-start;
    opacity: 0.84;
}

.how-visual-link {
    position: relative;
    padding-right: 4.8rem;
}

.visual-options {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-flex;
    gap: 0.4rem;
}

.visual-option-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(148, 163, 184, 0.12);
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}
.visual-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.78);
    font-size: 0.9rem;
    font-weight: 600;
}

.visual-chip--time {
    background: rgba(37, 99, 235, 0.12);
    color: var(--highlight);
}

.visual-check {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--success-soft);
    position: relative;
    flex-shrink: 0;
}

.visual-check::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid var(--accent-green);
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 6px;
    left: 10px;
    transform: rotate(45deg);
}

.visual-sync {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--highlight);
    background: rgba(37, 99, 235, 0.08);
    font-weight: 600;
    font-size: 0.88rem;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(180, 35, 42, 0.3);
    background: var(--problem-accent);
    color: var(--problem-accent-text);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.visual-badge--cancelled {
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(180, 35, 42, 0.6);
}

.section-how .fade-up {
    transition-duration: 0.45s;
}

@keyframes primaryGlow {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

.section-features {
    background: var(--solution-bg);
}

.feature-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-group {
    background: var(--white);
    border-radius: 22px;
    padding: 2rem 2.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 28px 55px rgba(37, 99, 235, 0.18);
}

.feature-group h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-group ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-light);
}

.feature-group li {
    position: relative;
    padding-left: 1.4rem;
}

.feature-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}


.section-pricing {
    background: var(--neutral-bg);
}

.pricing-trial-banner {
    margin: 1.25rem auto 2rem;
    width: fit-content;
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.22);
    color: var(--primary-blue);
    font-weight: 600;
}

.pricing-region-toggle {
    margin-top: 1.25rem;
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    align-items: center;
    flex-wrap: wrap;
}

.pricing-region-option {
    border: none;
    background: transparent;
    color: var(--text-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-region-option.is-active {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.pricing-region-helper {
    margin-top: 0.6rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-price .pricing-vat-inline,
.pricing-price .pricing-price-cycle,
.plans-summary-price .pricing-vat-inline,
.plans-summary-price .pricing-price-cycle,
.plan-detail-content .pricing-vat-inline,
.plan-detail-content .pricing-price-cycle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 0.35rem;
}

.pricing-price .pricing-price-cycle,
.plans-summary-price .pricing-price-cycle,
.plan-detail-content .pricing-price-cycle {
    margin-left: 0.4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: #f8fafc;
    border-radius: 28px;
    padding: 2.25rem 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 52px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.28);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-caption {
    color: var(--text-light);
    font-weight: 500;
}

.pricing-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: var(--text-dark);
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.pricing-footnote {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.15rem;
}

.pricing-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    font-size: 0.93rem;
}

.pricing-list i {
    color: var(--primary-blue);
    font-size: 0.92rem;
    margin-top: 0.25rem;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.pricing-featured {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08));
    border: 2px solid rgba(37, 99, 235, 0.45);
    box-shadow: 0 30px 64px rgba(37, 99, 235, 0.2);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-featured h3,
.pricing-featured .pricing-price {
    color: #1d4ed8;
}

.pricing-card-premium {
    background: linear-gradient(160deg, #0f172a, #1e293b 60%, #334155);
    border-color: rgba(148, 163, 184, 0.45);
    color: rgba(255, 255, 255, 0.92);
}

.pricing-card-premium h3,
.pricing-card-premium .pricing-price,
.pricing-card-premium .pricing-list,
.pricing-card-premium .pricing-list i {
    color: #f8fafc;
}

.pricing-card-premium .pricing-caption,
.pricing-card-premium .pricing-price span {
    color: rgba(226, 232, 240, 0.88);
}

.pricing-trust {
    margin: 2rem auto 0;
    text-align: center;
    color: rgba(15, 23, 42, 0.65);
    font-weight: 600;
}

.pricing-legal {
    margin: 0.75rem auto 0;
    text-align: center;
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.95rem;
}

.pricing-legal a {
    color: var(--primary-blue);
    font-weight: 600;
}

.pricing-legal a:hover {
    color: #1d4ed8;
}

.pricing-payment {
    margin: 1.25rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 600;
    flex-wrap: wrap;
}

.pricing-vat-note {
    margin: 1.5rem auto 0;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.65);
    text-align: center;
    max-width: 760px;
}

.plans-compare .pricing-vat-note {
    text-align: left;
    margin-top: 1.25rem;
    max-width: none;
}

.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 91, 255, 0.35);
    background: rgba(99, 91, 255, 0.1);
    color: #635bff;
    font-weight: 700;
    font-size: 0.95rem;
}

.stripe-badge i {
    font-size: 1rem;
}

.stripe-badge--inline {
    padding: 0.2rem 0.6rem;
    font-size: 0.9rem;
    vertical-align: middle;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-dark {
    background: #0f172a;
    color: var(--white);
    border-radius: 12px;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    border: none;
}

.btn-dark:hover {
    background: #1e293b;
}

.pricing-cta-row {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.plans-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.16), transparent 60%);
}

.plans-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: center;
}

.plans-hero-copy h1 {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plans-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.plans-hero-intro {
    color: var(--text-light);
    max-width: 560px;
}

.plans-hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.plans-hero-note {
    margin-top: 1rem;
    color: rgba(15, 23, 42, 0.7);
    font-weight: 500;
}

.plans-hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 1.5rem;
}

.plans-hero-card-title {
    margin: 0 0 0.35rem;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.plans-hero-card-value {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.plans-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.plans-overview-note {
    margin: 1rem auto 0;
    max-width: 640px;
    color: rgba(15, 23, 42, 0.7);
    font-weight: 500;
}

.plans-summary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0.5rem;
    position: relative;
}

.plans-summary-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.plans-summary-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.plans-summary-price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

.plans-summary-caption {
    color: var(--text-light);
    font-weight: 500;
}

.plans-summary-card--featured {
    border: 2px solid rgba(37, 99, 235, 0.45);
    box-shadow: 0 24px 52px rgba(37, 99, 235, 0.18);
}

.plans-summary-badge {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.plans-summary-card--dark {
    background: #0f172a;
    color: #f8fafc;
    border-color: rgba(148, 163, 184, 0.35);
}

.plans-summary-card--dark .plans-summary-price,
.plans-summary-card--dark .plans-summary-caption {
    color: rgba(248, 250, 252, 0.9);
}

.plans-selector {
    position: sticky;
    top: 72px;
    z-index: 10;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.plans-selector-inner {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    padding: 0.9rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.plans-selector-inner a {
    white-space: nowrap;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    scroll-snap-align: start;
}

.plans-selector-inner a:hover {
    color: var(--primary-blue);
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.08);
}

.plans-compare {
    background: var(--neutral-bg);
}

.plans-table-wrapper {
    margin-top: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: var(--white);
    overflow-x: auto;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.plans-table thead {
    background: rgba(15, 23, 42, 0.03);
}

.plans-table th,
.plans-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    font-weight: 500;
}

.plans-table th:first-child,
.plans-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.plans-table .is-featured {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    font-weight: 700;
}

.plan-detail {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.plan-detail-inner {
    display: grid;
    gap: 2rem;
}

.plan-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.plan-detail-tagline {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.6fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.plan-detail-grid ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--text-dark);
}

.plan-detail-grid li {
    position: relative;
    padding-left: 1.5rem;
}

.plan-detail-grid li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.plan-detail-side {
    background: rgba(37, 99, 235, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.plan-detail-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-light);
}

.plan-detail-value {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.plan-detail--featured {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.03));
}

.plan-detail--featured .plan-detail-side {
    background: rgba(37, 99, 235, 0.15);
}

.plan-detail--dark {
    background: #0f172a;
    color: #f8fafc;
}

.plan-detail--dark .plan-detail-tagline,
.plan-detail--dark .plan-detail-grid li,
.plan-detail--dark .plan-detail-grid li::before,
.plan-detail--dark .plan-detail-value {
    color: rgba(248, 250, 252, 0.92);
}

.plan-detail--dark .plan-detail-side {
    background: rgba(148, 163, 184, 0.15);
}

.plan-detail--dark .plan-detail-grid li::before {
    color: rgba(248, 250, 252, 0.9);
}

.plans-faq {
    background: var(--neutral-bg);
}

.plans-faq-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plans-faq-grid article {
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.plans-faq-grid h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.plans-final-cta {
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.18), transparent 70%);
}

.plans-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.plans-final-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-hero {
    padding-top: 8.5rem;
    padding-bottom: 3.5rem;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.14), transparent 60%);
    text-align: center;
}

.contact-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-body {
    padding-top: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
    gap: 2.5rem;
    align-items: start;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-card + .contact-card {
    margin-top: 1.5rem;
}

.contact-card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #0f172a;
}

.contact-card-header p {
    color: rgba(15, 23, 42, 0.7);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.1rem;
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: #0f172a;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 1rem;
    font-family: inherit;
    background: #f8fafc;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: var(--white);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(15, 23, 42, 0.6) 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 14px) calc(1em + 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}


.form-field-error {
    margin: 0;
    font-size: 0.88rem;
    color: #b91c1c;
}

.form-field [aria-invalid="true"] {
    border-color: rgba(185, 28, 28, 0.6);
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.form-field--checkbox {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.75);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: var(--primary-blue);
    font-weight: 600;
}

.form-banner {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-banner--success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-banner--error {
    background: rgba(248, 113, 113, 0.12);
    color: #991b1b;
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-submit {
    width: 100%;
    justify-content: center;
}

.contact-side {
    display: grid;
    gap: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.contact-info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.contact-info-card li {
    display: grid;
    gap: 0.35rem;
    color: rgba(15, 23, 42, 0.75);
}

.contact-info-card a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-info-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(15, 23, 42, 0.55);
    font-weight: 700;
}

.contact-info-card--highlight {
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.08));
    border-color: rgba(37, 99, 235, 0.2);
}

.contact-info-card--highlight p {
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.75rem;
    }
}

.about-hero {
    padding-top: 8.5rem;
    padding-bottom: 5rem;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.about-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(15, 23, 42, 0.75);
    margin-bottom: 1.5rem;
}

.about-hero-body {
    display: grid;
    gap: 1rem;
    color: rgba(15, 23, 42, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: grid;
    gap: 0.75rem;
}

.about-hero-image-trigger {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    text-align: inherit;
    display: block;
}

.about-hero-image-trigger:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.9);
    outline-offset: 4px;
    border-radius: 18px;
}

.about-hero-card img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.about-hero-card figcaption {
    font-size: 0.95rem;
    color: rgba(15, 23, 42, 0.65);
}

.about-section {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.about-section:first-of-type {
    border-top: none;
}

.about-section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.about-section-intro {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-section-intro .section-heading {
    text-align: left;
    margin-bottom: 1rem;
}

.about-section-intro .section-subheading {
    text-align: left;
    margin-left: 0;
}

.about-copy-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: grid;
    gap: 1rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

.about-highlight-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    padding: 0;
    margin: 0.5rem 0;
}

.about-highlight-list li {
    padding-left: 1.8rem;
    position: relative;
    color: rgba(15, 23, 42, 0.78);
}

.about-highlight-list li::before {
    content: '•';
    position: absolute;
    left: 0.4rem;
    color: var(--primary-blue);
    font-weight: 700;
}

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

.about-feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 1rem;
}

.about-feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.about-feature-card ul {
    padding-left: 1.2rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

.about-feature-card li {
    margin-bottom: 0.4rem;
}

.about-section-closer {
    margin-top: 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.8);
}

.about-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.about-pill-grid span {
    background: rgba(37, 99, 235, 0.08);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    color: rgba(15, 23, 42, 0.75);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(34, 197, 94, 0.1));
}

.about-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.about-cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.about-cta-inner p {
    color: rgba(15, 23, 42, 0.7);
    font-size: 1.05rem;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 7.5rem;
    }

    .about-copy-card,
    .about-feature-card,
    .about-cta-inner {
        padding: 1.75rem;
    }
}

.privacy-hero {
    padding-top: 8.5rem;
    padding-bottom: 3.5rem;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.12), transparent 55%);
}

.privacy-hero-inner {
    text-align: left;
    max-width: 720px;
}

.privacy-content {
    padding-top: 0;
}

.privacy-body {
    max-width: 820px;
}

.privacy-intro {
    font-size: 1.05rem;
    color: rgba(15, 23, 42, 0.85);
    margin-bottom: 2rem;
}

.privacy-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2.25rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 1.5rem;
}

.privacy-section h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.privacy-section h3 {
    font-size: 1.05rem;
    margin: 1.2rem 0 0.5rem;
    color: rgba(15, 23, 42, 0.9);
}

.privacy-section p {
    color: rgba(15, 23, 42, 0.75);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.privacy-section a {
    color: var(--primary-blue);
    font-weight: 600;
}

.privacy-list {
    padding-left: 1.25rem;
    margin: 0.5rem 0 1rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

.privacy-list li {
    margin-bottom: 0.35rem;
}


.section-faq {
    background: #f1f5f9;
    border-top: 3px solid rgba(37, 99, 235, 0.12);
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 1.35rem;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.7rem 1.85rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 26px 55px rgba(37, 99, 235, 0.14);
}

.faq-item summary {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 0.75rem;
    color: var(--text-light);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1rem;
}

.cta-final {
    background:
        radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.14), transparent 48%),
        radial-gradient(circle at 82% 78%, rgba(34, 197, 94, 0.1), transparent 46%),
        linear-gradient(180deg, #e2e8f0 0%, #dbe4ef 100%);
    color: var(--text-main);
    border-radius: 32px;
    margin: 0 1.25rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 28px;
    pointer-events: none;
}

.cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.18;
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final-shell {
    width: min(100%, 860px);
    margin: 0 auto;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.82), rgba(30, 41, 59, 0.86));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 65px rgba(15, 23, 42, 0.28);
    padding: clamp(2.25rem, 3.5vw, 3.5rem) clamp(1.35rem, 4vw, 3.25rem);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-final h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #f8fafc;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.cta-subheadline {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(226, 232, 240, 0.95);
}

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

.cta-primary {
    min-width: 230px;
    justify-content: center;
    border-radius: 999px;
    text-align: center;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
}

.cta-primary:hover {
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.42);
}

.cta-secondary {
    min-width: 190px;
    border-radius: 999px;
    background: transparent;
    border-color: rgba(226, 232, 240, 0.8);
    color: #e2e8f0;
}

.cta-secondary:hover {
    background: rgba(226, 232, 240, 0.16);
    border-color: rgba(248, 250, 252, 0.95);
    color: #f8fafc;
}

.cta-trust {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    color: rgba(203, 213, 225, 0.9);
}

#footer {
    background: #081326;
    color: rgba(226, 232, 240, 0.86);
    padding: 3.5rem 0 2.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-logo-mark {
    width: 150px;
    max-width: 100%;
    height: auto;
}

.footer-tagline {
    margin: 0;
    max-width: 260px;
    color: rgba(226, 232, 240, 0.88);
    line-height: 1.6;
}

.footer-legal-line {
    margin: 0;
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-brand-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
}

.footer-meta {
    margin: 0;
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.92rem;
}

.footer-trust-line {
    margin: 0.2rem 0 0;
    color: rgba(148, 163, 184, 0.95);
    font-size: 0.9rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
}

.hover-link {
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    transition: color 0.2s ease;
}

.hover-link.is-active {
    color: #60a5fa;
}

.hover-link:hover {
    color: #60a5fa;
}

.footer-placeholder {
    color: rgba(148, 163, 184, 0.86);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-bottom-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-cta p {
    margin: 0;
    color: rgba(226, 232, 240, 0.95);
    font-weight: 500;
}


.footer-cta-btn {
    border-radius: 999px;
    min-width: 160px;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}


.footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-credit img {
    height: 24px;
    width: auto;
    display: block;
    opacity: 0.9;
}
.footer-stripe {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 600;
}

.footer-stripe .stripe-badge {
    background: rgba(99, 91, 255, 0.16);
    border-color: rgba(99, 91, 255, 0.5);
    color: #c7c3ff;
}

.footer-stripe .stripe-badge i {
    color: #c7c3ff;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-placeholder {
    font-size: 0.88rem;
    color: rgba(148, 163, 184, 0.9);
}

.legal-page {
    background: #f8fafc;
}

.legal-main {
    padding-top: 110px;
}

.legal-hero {
    padding-bottom: 2rem;
}

.legal-container {
    max-width: 860px;
}

.legal-updated {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #64748b;
}

.legal-lead {
    font-size: 1.05rem;
    color: #1f2937;
    margin-top: 1rem;
}

.legal-payment,
.privacy-payment {
    margin-top: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.legal-section {
    padding-top: 2rem;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-top: 0.5rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-top: 0.25rem;
}

.legal-content p,
.legal-content li {
    color: #334155;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.legal-content ul ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.legal-content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover,
.legal-content a:focus-visible {
    text-decoration: underline;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .how-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.2rem;
    }

    .how-steps::after {
        top: 50%;
        bottom: auto;
        left: 1.6rem;
        right: 1.6rem;
        width: auto;
        height: 3px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.22));
        opacity: 0.3;
    }
}

@media (min-width: 768px) {
    .hero-browser-wrapper {
        max-width: 560px;
    }
}

@media (min-width: 992px) {
    .hero-accent {
        min-height: 520px;
    }

    .hero-browser-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .hero-layout {
        gap: clamp(3.5rem, 7vw, 6rem);
    }

    .hero-visual {
        margin-left: 0;
        transform: none;
    }
}

@media (max-width: 992px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-buttons,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
        margin-left: 0;
        transform: none;
        justify-self: center;
    }

    .hero-browser-wrapper {
        max-width: 520px;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .benefit-card,
    .pricing-card {
        padding: 2.25rem 2rem;
    }

    .benefits-grid,
    .use-cases-grid,
    .comparison-grid,
    .trust-grid,
    .feature-groups {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-intro--benefits {
        text-align: left;
    }

    .workflow-flow {
        flex-direction: column;
    }

    .workflow-step {
        transform: none;
    }

    .workflow-step:hover {
        transform: translateY(-4px);
    }

    .workflow-step:not(:last-child)::after {
        top: auto;
        bottom: -24px;
        right: 50%;
        width: 2px;
        height: 22px;
        transform: translateX(50%);
    }

    .workflow-step:not(:last-child)::before {
        top: auto;
        bottom: -32px;
        right: calc(50% - 6px);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid rgba(14, 165, 233, 0.6);
        border-bottom: 0;
    }

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .workflow-management-layout {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .benefits-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .workflow-feature-grid {
        grid-template-columns: 1fr;
    }

    .workflow-feature-card {
        min-height: auto;
        transform: none;
    }

    .email-layout {
        grid-template-columns: 1fr;
    }

    .email-inbox {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scroll-snap-type: x proximity;
    }

    .email-tab {
        flex: 0 0 240px;
        scroll-snap-align: start;
    }

    .email-card {
        min-height: 360px;
        padding: 1.25rem;
    }

    .cta-final h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .pricing-region-toggle {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
    }

    .pricing-region-option {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-fade-up,
    .hero-fade-up-delay,
    .hero-fade-up-delay-2,
    .hero-fade-up-delay-3,
    .hero-fade-up-delay-4,
    .hero-fade-up-delay-5 {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        display: flex;
        justify-content: space-between;
    }

    .logo-wordmark {
        font-size: 0.98rem;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid #E2E8F0;
        box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    }

    .navbar.scrolled .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .nav-actions .btn-green-nav {
        width: 100%;
        padding: 12px 20px;
        margin-top: 1rem;
        text-align: center;
    }

    .plans-selector {
        position: static;
        top: auto;
    }

    .hero {
        padding: 56px 0;
    }

    .hero .container {
        min-height: calc(100vh - 80px);
        min-height: calc(100svh - 80px);
    }

    .hero-preheadline {
        font-size: 13px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.01em;
    }

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

    .hero-benefit {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-text-link {
        width: 100%;
        justify-content: center;
    }

    .hero-browser-wrapper {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-carousel-button {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-prev {
        left: -10px;
    }

    .hero-carousel-next {
        right: -10px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .benefits-grid,
    .use-cases-grid,
    .feature-groups {
        grid-template-columns: 1fr;
    }

    .pricing-trial-banner {
        font-size: 0.9rem;
        text-align: center;
    }

    .pricing-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(280px, 84%);
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        touch-action: pan-x pan-y;
        padding-bottom: 0.5rem;
        gap: 1rem;
    }

    .pricing-card {
        scroll-snap-align: start;
    }

    .pricing-featured {
        transform: none;
    }

    .demo-layout {
        gap: 1.5rem;
    }


    .demo-menu {
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scroll-snap-type: x proximity;
    }

    .demo-menu-item {
        flex: 0 0 auto;
        min-width: 160px;
        white-space: normal;
        padding: 0.75rem 1rem;
        scroll-snap-align: start;
    }

    .demo-frame {
        min-height: 260px;
    }

    .email-card {
        min-height: 320px;
    }

    .cta-final {
        margin: 0 0 1.5rem;
        border-radius: 24px;
        padding: 4rem 0;
    }

    .cta-final h2 {
        font-size: 2.1rem;
    }

    .cta-final-shell {
        border-radius: 24px;
        padding: 2rem 1.25rem;
    }

    .cta-content {
        gap: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        min-width: 0;
    }

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

    .footer-column,
    .footer-brand {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-cta {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-credit {
        justify-content: center;
    }

    .legal-main {
        padding-top: 96px;
    }

    .legal-lead {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-intro {
        margin-bottom: 2rem;
    }

    .section-heading {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .hero {
        padding: 48px 0;
    }

    .hero .container,
    .section-problem,
    .section-how,
    .section-workflow-management,
    .section-trust {
        min-height: auto;
    }

    .hero-layout {
        gap: 2.5rem;
        justify-items: center;
    }

    .hero-bullets {
        justify-items: center;
    }

    .hero-bullets li {
        justify-content: center;
        text-align: center;
    }

    .hero-title {
        font-size: 30px;
        max-width: 100%;
    }

    .hero-browser-wrapper {
        aspect-ratio: 4 / 3;
        min-height: 300px;
        max-width: 100%;
        width: min(100%, 520px);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-subtitle,
    .hero-proof {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-browser-topbar {
        padding: 0.6rem 0.8rem;
    }

    .hero-browser-stage {
        grid-template-columns: 1fr;
        padding: 0.6rem 0.6rem 4rem;
    }

    .hero-browser-sidebar {
        display: none;
    }

    .hero-browser-main {
        padding: 1.6rem 1.2rem;
    }

    .hero-browser-focus-card {
        padding: 1.1rem;
        border-radius: 18px;
    }

    .hero-browser-focus-title {
        font-size: 1rem;
    }

    .hero-browser-focus-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-browser-cta {
        width: 100%;
    }

    .hero-browser-status {
        min-width: 0;
        width: 100%;
    }

    .hero-browser-status-text {
        width: 100%;
        justify-content: center;
    }

    .hero-browser-toast {
        bottom: 1.5rem;
        max-width: calc(100% - 1.5rem);
        animation: heroToastMobile 10s ease-in-out infinite;
    }

    .problem-stage {
        padding: 2.4rem 1.2rem;
    }

    .how-card {
        padding: 1.8rem;
    }

    .comparison-card,
    .results-card,
    .trust-card,
    .faq-item {
        padding: 1.35rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 28px;
        padding-bottom: 24px;
    }

    .hero .kicker {
        font-size: 12px;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 44px);
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .hero .subtitle {
        font-size: 16px;
        line-height: 1.45;
        margin: 0 auto 18px;
        max-width: 26ch;
    }

    .hero ul,
    .hero li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hero li::marker {
        content: "";
    }

    .hero-benefits {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin: 0 auto 18px;
        max-width: 320px;
    }

    .benefit-chip {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.18);
        color: #1f2937;
    }

    .benefit-chip::before {
        content: "";
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 8px;
    }

    .hero-cta .primary-btn {
        width: 100%;
        max-width: 420px;
        height: 50px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-cta .secondary-link {
        font-size: 16px;
        font-weight: 700;
    }

    .hero .fineprint {
        font-size: 13px;
        line-height: 1.5;
        opacity: 0.85;
        max-width: 34ch;
        margin: 14px auto 0;
        text-align: center;
    }

    .hero-mockup {
        margin: 22px auto 0;
        width: 100%;
        max-width: 520px;
        transform: scale(0.94);
        transform-origin: top center;
    }

    .hero-mockup img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title br.hero-title-break {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }

    .benefit-card,
    .feature-group,
    .pricing-card {
        padding: 2rem 1.75rem;
    }

    .cta-trust {
        font-size: 0.88rem;
        line-height: 1.6;
    }

}

/* Blog system */
.blog-page {
    background: #ffffff;
    color: #0f172a;
}

.blog-hero {
    padding: 7rem 0 5rem;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 55%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 45%),
        #ffffff;
}

.blog-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.blog-hero-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
    color: #0f172a;
}

.blog-hero-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.blog-hero-intro {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.95rem;
}

.blog-hero-card {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(14, 165, 233, 0.12));
    border-radius: 24px;
    padding: 2px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.blog-hero-card-inner {
    background: #ffffff;
    border-radius: 22px;
    padding: 2rem;
}

.blog-hero-card-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 700;
}

.blog-hero-card-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.75rem 0 1.5rem;
    color: #0f172a;
}

.blog-hero-card-stats {
    display: flex;
    gap: 1.5rem;
}

.blog-hero-card-stats span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
}

.blog-hero-card-stats small {
    display: block;
    color: #64748b;
}

.blog-featured .section-intro,
.blog-grid .section-intro,
.blog-filter .section-intro,
.blog-related .section-intro {
    margin-bottom: 2rem;
}

.featured-article-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.featured-article-media {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #f1f5f9;
}

.featured-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-article-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.blog-category-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.chip {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #ffffff;
    color: #475569;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover,
.chip.is-active {
    border-color: #2563eb;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.article-card,
.featured-article-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover,
.featured-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.article-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.article-image {
    display: block;
    background: #f1f5f9;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.article-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.article-card-content h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.article-card-content p {
    color: #475569;
    font-size: 0.95rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pagination-pages {
    display: flex;
    gap: 0.5rem;
}

.blog-newsletter .newsletter-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.1));
    border-radius: 24px;
    padding: 2.5rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1 1 240px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 1rem;
}

.newsletter-footnote {
    color: #64748b;
    font-size: 0.85rem;
}

.sr-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.blog-post-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.08), transparent 60%);
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
    color: #0f172a;
}

.blog-post-subheading {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    color: #64748b;
}

.blog-share a {
    color: #2563eb;
    font-size: 1rem;
}

.blog-post-hero-image {
    margin-top: 2rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.blog-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-hero-image--email {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-hero-image--email img {
    height: auto;
    object-fit: contain;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.5rem;
}

.blog-post-content {
    display: grid;
    gap: 1.5rem;
    color: #1e293b;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    margin-top: 1rem;
}

.blog-post-content h3 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 1.5rem;
    color: #475569;
}

.blog-post-content a {
    color: #2563eb;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    display: block;
}

.blog-stat-callout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #475569;
    font-size: 0.95rem;
}

.blog-cta-inline {
    padding: 1.5rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: grid;
    gap: 1rem;
}

.blog-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-post-aside {
    position: sticky;
    top: 110px;
    align-self: start;
    display: grid;
    gap: 1.5rem;
    height: fit-content;
}

.toc-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.toc-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.5rem;
}

.toc-card a {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.95rem;
}

.toc-cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.14));
}

.author-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-final-cta .cta-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    color: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
}

.blog-final-cta .cta-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

@media (max-width: 960px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-post-aside {
        position: static;
    }

    .blog-final-cta .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .blog-hero {
        padding-top: 6rem;
    }

    .featured-article-card {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
}
