:root {
    --landing-ink: #0f172a;
    --landing-muted: #475569;
    --landing-border: #e2e8f0;
    --landing-indigo: #4f46e5;
    --landing-purple: #7c3aed;
    --landing-violet: #8b5cf6;
    --landing-pink: #db2777;
}

.landing-page {
    background: #ffffff;
    color: var(--landing-ink);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    overflow-x: clip;
}

.landing-shell {
    position: relative;
    z-index: 2;
}

.landing-hero {
    --landing-hero-pad-top: clamp(2.75rem, 6vh, 5rem);
    --landing-hero-pad-bottom: clamp(4.5rem, 9vh, 8rem);
    --landing-hero-text-budget: clamp(13rem, 26vh, 19rem);
    --landing-hero-video-max-height: calc(
        100vh - var(--landing-hero-pad-top) - var(--landing-hero-pad-bottom)
            - var(--landing-hero-text-budget)
    );
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 52%, #fdf2f8 100%);
    padding: var(--landing-hero-pad-top) 0 var(--landing-hero-pad-bottom);
}

.landing-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    filter: blur(56px);
    pointer-events: none;
}

.landing-glow--one {
    top: -50%;
    left: -50%;
    background: linear-gradient(
        135deg,
        rgba(199, 210, 254, 0.38),
        rgba(221, 214, 254, 0.38)
    );
    animation: landingSpinA 20s linear infinite;
}

.landing-glow--two {
    right: -50%;
    bottom: -50%;
    background: linear-gradient(
        135deg,
        rgba(233, 213, 255, 0.34),
        rgba(245, 208, 254, 0.34)
    );
    animation: landingSpinB 25s linear infinite;
}

.landing-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #475569;
    border-radius: 9999px;
    padding: 0.25rem 0.7rem;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.002em;
    max-width: min(100%, 36rem);
    text-align: center;
}

.landing-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.2rem, 5.6vw, 3.6rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.95rem;
    color: #0f172a;
    text-align: center;
    text-wrap: balance;
}

.landing-gradient-text {
    background: linear-gradient(
        90deg,
        var(--landing-indigo),
        var(--landing-purple),
        var(--landing-pink)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-subtitle {
    max-width: 48rem;
    margin: 0 auto 1.6rem;
    color: #475569;
    font-size: 1.22rem;
    line-height: 1.7;
}

.landing-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.landing-button-primary,
.landing-button-secondary,
.landing-cta-button,
.landing-pricing-cta {
    border-radius: 9999px !important;
    padding: 0.8rem 1.55rem !important;
}

.landing-inline-arrow {
    transition: transform 180ms ease;
}

.landing-button-primary {
    color: #fff !important;
    border: 0 !important;
    background: linear-gradient(
        90deg,
        var(--landing-indigo),
        var(--landing-purple)
    ) !important;
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.34);
}

.landing-button-primary:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.42);
}

.landing-button-secondary {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #cbd5e1 !important;
}

.landing-button-secondary:hover {
    border-color: var(--landing-indigo) !important;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.16);
}

.landing-hero-image-wrap {
    position: relative;
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
}

.landing-hero .video-carousel {
    --video-carousel-max-width: calc(
        var(--landing-hero-video-max-height) * 2.6667
    );
}

.landing-hero .video-carousel-player {
    max-height: var(--landing-hero-video-max-height);
}

.landing-business-section {
    padding-top: 1.5rem;
}

.landing-usecase-grid {
    margin-top: 0.5rem;
}

.landing-usecase-link {
    display: block;
    height: 100%;
}

.landing-usecase-card {
    height: 100%;
    border-radius: 1.5rem !important;
    overflow: hidden;
    transition: box-shadow 180ms ease;
}

.landing-usecase-card:hover {
    box-shadow: 0 24px 40px rgba(79, 70, 229, 0.14);
}

.landing-usecase-link:hover .landing-usecase-title {
    color: #4f46e5;
}

.landing-usecase-card-body {
    padding: 0 !important;
}

.landing-usecase-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.landing-usecase-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 220ms ease;
}

.landing-usecase-card:hover .landing-usecase-media img {
    transform: scale(1.05);
}

.landing-usecase-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.08) 0%,
        rgba(15, 23, 42, 0.52) 100%
    );
}

.landing-usecase-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.landing-usecase-copy {
    padding: 1.5rem 1.5rem 1.6rem;
}

.landing-usecase-title {
    color: #0f172a;
    margin-bottom: 0.5rem;
    transition: color 180ms ease;
}

.landing-usecase-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

.landing-usecase-cta {
    display: inline-flex;
    align-items: center;
    color: #4f46e5;
    font-size: 0.92rem;
    font-weight: 700;
}

.landing-button-primary:hover .landing-inline-arrow,
.landing-cta-button:hover .landing-inline-arrow,
.landing-pricing-cta:hover .landing-inline-arrow,
.landing-usecase-link:hover .landing-inline-arrow {
    transform: translateX(4px);
}

.landing-business-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2rem;
    align-items: stretch;
    padding: 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.landing-business-media {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 22rem;
}

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

.landing-business-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.24),
        rgba(15, 23, 42, 0.2)
    );
}

.landing-business-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-business-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 9999px;
    padding: 0.45rem 0.8rem;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
}

.landing-business-title {
    margin-bottom: 0.9rem;
}

.landing-business-description {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.landing-business-points {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.landing-business-point {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.landing-business-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 9999px;
    background: #eef2ff;
    color: #4f46e5;
    flex: 0 0 auto;
    margin-top: 0.15rem;
}

.landing-business-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.landing-carousel-wrap {
    display: grid;
    gap: 1rem;
}

.landing-carousel-player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1.35rem;
    overflow: hidden;
    box-shadow: 0 30px 54px rgba(15, 23, 42, 0.16);
    background: #000;
}

.landing-carousel-topfade {
    position: absolute;
    inset: 0 0 auto 0;
    height: 8.5rem;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.18) 68%,
        transparent 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 1;
}

.landing-carousel-heading {
    position: absolute;
    top: 1.4rem;
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.landing-carousel-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.landing-carousel-subtitle {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}

.landing-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: opacity 220ms ease, background 180ms ease;
    cursor: pointer;
}

.landing-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.58);
}

.landing-carousel-arrow--left {
    left: 1rem;
}

.landing-carousel-arrow--right {
    right: 1rem;
}

.landing-carousel-player.is-overlay-visible .landing-carousel-topfade,
.landing-carousel-player.is-overlay-visible .landing-carousel-heading,
.landing-carousel-player.is-overlay-visible .landing-carousel-arrow {
    opacity: 1;
}

.landing-carousel-meta {
    display: flex;
    justify-content: flex-end;
    padding: 0 0.25rem;
}

.landing-carousel-autoplay {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-carousel-autoplay input {
    width: 1rem;
    height: 1rem;
    accent-color: #5b50e6;
}

.landing-carousel-thumbnails {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.95rem;
}

.landing-carousel-thumb {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    border-radius: 0.8rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 0 0 2px rgba(148, 163, 184, 0.45);
    opacity: 0.82;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.landing-carousel-thumb:hover {
    transform: translateY(-1px);
    opacity: 1;
}

.landing-carousel-thumb--active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 4px #4f46e5,
        0 0 0 4px rgba(99, 102, 241, 0.32),
        0 14px 28px rgba(79, 70, 229, 0.3);
}

.landing-carousel-thumb-image {
    width: 100%;
    display: block;
    aspect-ratio: 1.52 / 1;
    object-fit: cover;
    pointer-events: none;
}

.landing-carousel-thumb-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 60%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.84) 100%
    );
    pointer-events: none;
}

.landing-carousel-thumb-title {
    position: absolute;
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.5rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    pointer-events: none;
}

.landing-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.landing-hero-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.landing-section {
    padding: 6rem 0;
}

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

.landing-product-demo.landing-section-alt {
    background: #ffffff;
}

.landing-section-header {
    margin-bottom: 4rem;
}

.landing-section-header-center {
    text-align: center;
}

.landing-section-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.05rem);
    margin-bottom: 0.95rem;
    line-height: 1.16;
}

.landing-section-subtitle {
    max-width: 48rem;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.18rem;
    line-height: 1.6;
}

.landing-feature-card {
    position: relative;
    border: 2px solid var(--landing-border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: border-color 220ms ease, box-shadow 220ms ease;
    overflow: hidden;
    height: 100%;
}

.landing-feature-card:hover {
    border-color: #6366f1;
    box-shadow: 0 18px 30px rgba(79, 70, 229, 0.14);
}

.landing-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 0.08),
        rgba(124, 58, 237, 0.08)
    );
    opacity: 0;
    transition: opacity 220ms ease;
    border-radius: inherit;
    pointer-events: none;
}

.landing-feature-card:hover::before {
    opacity: 1;
}

.landing-feature-content {
    position: relative;
    z-index: 1;
}

.landing-feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--landing-indigo),
        var(--landing-purple)
    );
    transition: transform 220ms ease;
}

.landing-feature-card:hover .landing-feature-icon {
    transform: scale(1.1);
}

.landing-feature-card .lumex-card-body,
.landing-feature-card-body {
    padding: 2.25rem;
}

.landing-feature-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.landing-feature-copy {
    color: #64748b;
    line-height: 1.55;
}

.landing-feature-image {
    width: 100%;
    margin-top: 0.85rem;
    border-radius: 0.7rem;
    border: 1px solid #e2e8f0;
    object-fit: cover;
    aspect-ratio: 7 / 4;
}

.landing-step-grid {
    margin-bottom: 4rem;
}

.landing-step-wrap {
    position: relative;
}

.landing-step-card {
    border: 2px solid #c7d2fe;
    border-radius: 1rem;
    background: linear-gradient(140deg, #eef2ff 0%, #f5f3ff 100%);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.08);
}

.landing-step-card-body {
    text-align: center;
}

.landing-step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--landing-indigo),
        var(--landing-purple)
    );
}

.landing-step-number {
    display: block;
    text-align: center;
    background: transparent;
    color: #4f46e5;
    padding: 0;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.landing-step-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 0.42rem;
    color: #0f172a;
}

.landing-step-copy {
    color: #64748b;
}

.landing-step-connector {
    display: none;
}

.landing-benefits-block {
    position: relative;
}

.landing-benefits-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin-bottom: 1.3rem;
}

.landing-benefits-list {
    display: grid;
    gap: 1rem;
}

.landing-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    color: #334155;
}

.landing-benefit-check {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    margin-top: 0.12rem;
    flex-shrink: 0;
}

.landing-product-image-glow {
    display: none;
}

.landing-product-video-wrap {
    position: relative;
    z-index: 1;
}

.landing-product-carousel {
    --video-carousel-max-width: 100%;
}

.landing-product-carousel .video-carousel-player {
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.landing-recording-card {
    border: 2px solid var(--landing-border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.landing-recording-card:hover {
    border-color: #6366f1;
    box-shadow: 0 14px 26px rgba(79, 70, 229, 0.14);
}

.landing-recording-head {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-recording-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--landing-indigo),
        var(--landing-purple)
    );
    flex-shrink: 0;
}

.landing-recording-title {
    margin-bottom: 0.35rem;
    color: #0f172a;
}

.landing-recording-desc {
    color: #64748b;
    line-height: 1.55;
}

.landing-recording-player {
    padding: 0.65rem 0.75rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--landing-border);
}

.landing-recording-audio {
    width: 100%;
    display: block;
    accent-color: #5b50e6;
}

.landing-demo-phone-section {
    padding: 0 0 4.5rem;
    background: #ffffff;
}

.landing-demo-phone-card {
    text-align: center;
    padding: 2.4rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #c7d2fe;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 38px rgba(79, 70, 229, 0.08);
}

.landing-demo-phone-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
    color: #4f46e5;
}

.landing-demo-phone-title {
    margin: 0;
    color: #0f172a;
}

.landing-demo-phone-subtitle {
    max-width: 34rem;
    margin: 0 auto 2rem;
    color: #64748b;
    line-height: 1.7;
}

.landing-demo-phone-details {
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-demo-phone-detail {
    min-width: 11rem;
}

.landing-demo-phone-label {
    display: block;
    margin-bottom: 0.35rem;
    color: #64748b;
}

.landing-demo-phone-value {
    margin: 0;
    color: #334155;
    font-family:
        ui-monospace,
        SFMono-Regular,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        "Liberation Mono",
        "Courier New",
        monospace;
    letter-spacing: -0.02em;
}

.landing-pricing-wrap {
    max-width: 62rem;
    margin: 0 auto;
}

.landing-pricing-card {
    position: relative;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 30px 56px rgba(79, 70, 229, 0.36);
    color: #ffffff;
    overflow: visible;
}

.landing-pricing-badge {
    position: absolute;
    top: -1.05rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #ffffff;
    color: #4f46e5;
    border-radius: 9999px;
    padding: 0.5rem 1.15rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.landing-pricing-top {
    text-align: center;
    margin-top: 1.45rem;
    margin-bottom: 1.35rem;
}

.landing-pricing-inner {
    padding: 2.2rem 2.85rem 1.65rem;
}

.landing-pricing-breakdown {
    max-width: 33rem;
    margin: 0 auto 0.6rem;
    border-radius: 1rem;
    padding: 1.8rem 1.6rem 1.4rem;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.landing-pricing-breakdown-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.landing-pricing-breakdown-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.landing-pricing-breakdown-note {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
    margin-bottom: 1.2rem;
}

.landing-pricing-info-btn {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-radius: 0.72rem !important;
    text-transform: none !important;
    font-weight: 700 !important;
    min-width: 168px;
    min-height: 44px;
    padding: 0.45rem 1.1rem !important;
    font-size: 1.03rem !important;
    border-width: 1px !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.landing-pricing-info-btn:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.landing-pricing-cta {
    width: 100%;
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 0 !important;
    margin-bottom: 1.4rem;
    min-height: 58px;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 1rem !important;
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
}

.landing-pricing-included {
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.landing-pricing-features {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1rem;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-items: start;
}

.landing-pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    justify-content: flex-start;
    width: fit-content;
}

.landing-pricing-feature-check {
    width: 1.22rem;
    height: 1.22rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    margin-top: 0.12rem;
    flex-shrink: 0;
}

.landing-pricing-feature-copy {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.landing-pricing-footnote-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 1.05rem;
    display: grid;
    gap: 0.28rem;
    justify-items: center;
    color: rgba(255, 255, 255, 0.88);
}

.landing-pricing-footnote {
    color: rgba(255, 255, 255, 0.88);
}

.pricing-info-dialog-content {
    color: #1f2937;
    text-align: left;
}

.pricing-info-dialog-content .mud-markdown {
    color: #1f2937;
    text-align: left;
}

.pricing-info-dialog-content .mud-markdown ul,
.pricing-info-dialog-content .mud-markdown ol {
    text-align: left;
    padding-left: 1.35rem;
}

.pricing-info-dialog-content .mud-markdown li {
    text-align: left;
}

.pricing-info-dialog-content .mud-markdown h1,
.pricing-info-dialog-content .mud-markdown h2,
.pricing-info-dialog-content .mud-markdown h3,
.pricing-info-dialog-content .mud-markdown p,
.pricing-info-dialog-content .mud-markdown li {
    color: #1f2937;
}

.landing-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #8b5cf6 100%);
    padding: 6rem 0;
}

.landing-cta-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(46px);
    pointer-events: none;
}

.landing-cta-glow--one {
    top: 0;
    left: 25%;
    animation: landingPulseA 8s ease-in-out infinite;
}

.landing-cta-glow--two {
    bottom: 0;
    right: 25%;
    animation: landingPulseB 8s ease-in-out infinite;
}

.landing-cta-shell {
    position: relative;
    z-index: 2;
    text-align: center;
}

.landing-cta-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.landing-cta-highlight {
    color: #fde047;
}

.landing-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.landing-cta-offer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
    margin: 0 auto 2rem;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: 0.005em;
    max-width: min(100%, 34rem);
    text-align: center;
}

.landing-cta-offer-badge .mud-icon-root {
    color: rgba(255, 255, 255, 0.82);
}

.landing-cta-button {
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 0 !important;
    box-shadow: 0 16px 34px rgba(255, 255, 255, 0.28);
}

.landing-hero-content,
.landing-title,
.landing-subtitle,
.landing-title:focus,
.landing-subtitle:focus {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.landing-footer {
    background: #f8fafc;
    border-top: 1px solid var(--landing-border);
    padding: 3rem 0 1.4rem;
}

.landing-footer-grid {
    margin-bottom: 2rem;
}

.landing-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.landing-footer-brand-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: linear-gradient(
        135deg,
        var(--landing-indigo),
        var(--landing-purple)
    );
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landing-footer-brand-text {
    color: #0f172a;
    margin: 0;
}

.landing-footer-brand-copy {
    color: #64748b;
    margin-bottom: 0.85rem;
}

.landing-footer-socials {
    display: flex;
    gap: 0.5rem;
}

.landing-footer-social {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    background: #e2e8f0;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background-color 200ms ease, color 200ms ease;
}

.landing-footer-social:hover {
    background: var(--landing-indigo);
    color: #ffffff;
}

.landing-footer-heading {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.landing-footer-links,
.landing-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.landing-footer-link {
    color: #64748b;
    text-decoration: none;
    transition: color 180ms ease;
}

.landing-footer-link:hover {
    color: #4f46e5;
}

.landing-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #64748b;
}

.landing-footer-bottom {
    border-top: 1px solid var(--landing-border);
    padding-top: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #64748b;
}

.landing-footer-bottom-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@keyframes landingSpinA {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(90deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes landingSpinB {
    0% {
        transform: scale(1.2) rotate(0deg);
    }

    50% {
        transform: scale(1) rotate(-90deg);
    }

    100% {
        transform: scale(1.2) rotate(0deg);
    }
}

@keyframes landingPulseA {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes landingPulseB {
    0% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@media (min-width: 1200px) {
    .landing-step-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -0.75rem;
        width: 1.5rem;
        height: 2px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        transform: translateY(-50%);
    }
}

@media (max-width: 959px) {
    .landing-hero {
        min-height: 100vh;
        padding-top: 4.3rem;
    }

    .client-page-content--with-dev-banner .landing-hero {
        padding-top: 2.4rem;
    }

    .landing-business-panel {
        grid-template-columns: 1fr;
        padding: 1.1rem;
        border-radius: 1.5rem;
    }

    .landing-business-media {
        min-height: 18rem;
    }

    .landing-subtitle {
        font-size: 1.06rem;
    }

    .landing-section {
        padding: 4rem 0;
    }

    .landing-section-header {
        margin-bottom: 2.5rem;
    }

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

    .landing-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 960px) and (max-height: 900px) {
    .landing-hero {
        --landing-hero-pad-top: 2.4rem;
        --landing-hero-pad-bottom: 3rem;
        --landing-hero-text-budget: 12.5rem;
    }

    .landing-subtitle {
        margin-bottom: 1.25rem;
        font-size: 1.08rem;
        line-height: 1.55;
    }

    .landing-hero-actions {
        margin-bottom: 1.1rem;
    }
}

@media (min-width: 960px) and (max-height: 760px) {
    .landing-hero {
        --landing-hero-pad-top: 1.8rem;
        --landing-hero-pad-bottom: 2.4rem;
        --landing-hero-text-budget: 11.5rem;
    }

    .landing-offer-badge {
        margin-bottom: 0.55rem;
    }

    .landing-title {
        font-size: clamp(2.35rem, 5.2vw, 3.5rem);
        margin-bottom: 0.7rem;
    }

    .landing-subtitle {
        margin-bottom: 0.95rem;
        font-size: 1rem;
    }

    .landing-hero-actions {
        margin-bottom: 0.85rem;
    }
}

@media (max-width: 599px) {
    .landing-title {
        font-size: clamp(2.15rem, 11vw, 2.8rem);
    }

    .landing-business-media {
        min-height: 14rem;
        border-radius: 1rem;
    }

    .landing-demo-phone-card {
        padding: 2rem 1.25rem;
    }

    .landing-demo-phone-details {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-demo-phone-detail {
        min-width: 0;
        width: 100%;
    }

    .landing-business-badge {
        font-size: 0.8rem;
    }

    .landing-hero-actions {
        width: 100%;
    }

    .landing-button-primary,
    .landing-button-secondary,
    .landing-recording-cta .landing-button-primary {
        width: 100%;
    }

    .landing-carousel-heading {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .landing-carousel-title {
        font-size: 1rem !important;
    }

    .landing-carousel-subtitle {
        font-size: 0.78rem !important;
    }

    .landing-carousel-arrow {
        width: 2.8rem;
        height: 2.8rem;
    }

    .landing-carousel-arrow--left {
        left: 0.65rem;
    }

    .landing-carousel-arrow--right {
        right: 0.65rem;
    }

    .landing-carousel-thumbnails {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .landing-pricing-inner {
        padding: 2rem 1rem 1.3rem;
    }

    .landing-pricing-breakdown {
        padding: 1.3rem 0.9rem 1rem;
    }

    .landing-pricing-breakdown-title {
        font-size: 2.2rem;
    }

    .landing-pricing-features {
        width: 100%;
        justify-items: stretch;
    }

    .landing-pricing-feature-item {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-cta-title {
        font-size: clamp(1.95rem, 9vw, 2.6rem);
    }

    .landing-cta-subtitle {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-glow,
    .landing-cta-glow,
    .landing-feature-card,
    .landing-step-card,
    .landing-recording-card,
    .landing-recording-progress-fill {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}
