/* =============================================================
   FifteenSales — Landing Page Styles (Redesigned)
   Dark tech theme · Teal #0D9488 accent · GSAP-powered
   ============================================================= */

/* -------------------------------------------------------------
   Layout containers
   ------------------------------------------------------------- */
.lp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Override public-theme fi-main padding for landing page */
body:has(.lp-hero) .fi-main {
    padding: 0;
}

/* ─────────────────────────────────────────────────────────────
   Header scroll state
   ───────────────────────────────────────────────────────────── */
.fi-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fi-header--scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fi-header-inner {
    justify-content: space-between;
    max-width: 1160px;
    padding: 0 1.5rem;
}

.fi-header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   Brand typography
   ───────────────────────────────────────────────────────────── */
.lp-text-gradient {
    background: linear-gradient(135deg, #0D9488 0%, #2DD4BF 50%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-text-accent {
    color: var(--fi-accent);
}

/* ─────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────── */
.lp-btn-lg {
    padding: 0.9375rem 2.25rem;
    font-size: 1rem;
    min-height: 52px;
    letter-spacing: -0.01em;
}

.fi-btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    min-height: 36px;
}

.lp-btn-primary-glow {
    background: var(--fi-accent);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.5);
    transition: background 0.2s, transform 0.15s, box-shadow 0.3s;
}

.lp-btn-primary-glow:hover {
    background: var(--fi-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.15), 0 8px 24px rgba(13, 148, 136, 0.3);
    text-decoration: none;
}

.lp-btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.lp-play-icon {
    width: 32px;
    height: 32px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fi-accent);
    transition: background 0.2s;
    flex-shrink: 0;
}

.lp-btn-play:hover .lp-play-icon {
    background: rgba(13, 148, 136, 0.25);
}

.lp-btn-white-cta {
    background: #fff;
    color: #0F172A;
    border: none;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.3s;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.lp-btn-white-cta:hover {
    background: #f0fdfa;
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    text-align: center;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.7;
}

.lp-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 148, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.lp-hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.lp-orb-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, transparent 70%);
}

.lp-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: 5%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
}

.lp-hero-content {
    position: relative;
    z-index: 2;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    color: #2DD4BF;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1.125rem;
    border-radius: 9999px;
    margin-bottom: 2.25rem;
}

.lp-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--fi-accent);
    border-radius: 50%;
    animation: lp-pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.6); }
    50% { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(13, 148, 136, 0); }
}

.lp-hero-heading {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    color: var(--fi-text);
}

.lp-hero-subtext {
    font-size: 1.1875rem;
    color: var(--fi-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.lp-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}

.lp-hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--fi-radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.lp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--fi-accent);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.lp-stat-label {
    font-size: 0.8rem;
    color: var(--fi-text-muted);
    white-space: nowrap;
    font-weight: 500;
}

.lp-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Scroll indicator */
.lp-hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.lp-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(13, 148, 136, 0.35);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.lp-scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--fi-accent);
    border-radius: 2px;
    animation: lp-scroll-bounce 2s ease-in-out infinite;
}

@keyframes lp-scroll-bounce {
    0%, 100% { opacity: 1; transform: translateY(0); }
    60% { opacity: 0.2; transform: translateY(10px); }
}

/* ─────────────────────────────────────────────────────────────
   LOGOS BAR
   ───────────────────────────────────────────────────────────── */
.lp-logos-bar {
    border-top: 1px solid var(--fi-border);
    border-bottom: 1px solid var(--fi-border);
    padding: 1.75rem 0;
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
}

.lp-logos-bar .lp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lp-logos-label {
    font-size: 0.8rem;
    color: var(--fi-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    opacity: 0.6;
}

.lp-logos-track {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.lp-logos-slide {
    display: flex;
    align-items: center;
    gap: 0;
    animation: lp-marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes lp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.lp-logo-item {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--fi-text-muted);
    opacity: 0.5;
    padding: 0 2rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.lp-logo-sep {
    color: var(--fi-border);
    font-size: 1.25rem;
    opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────
   SHARED SECTION STYLES
   ───────────────────────────────────────────────────────────── */
.lp-section {
    padding: 6rem 0;
}

.lp-section-alt {
    background: #141F35;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fi-accent);
    margin-bottom: 1rem;
}

.lp-section-heading {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fi-text);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.lp-section-sub {
    font-size: 1.0625rem;
    color: var(--fi-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-section-sub--left {
    text-align: left;
    margin: 0 0 2.5rem;
}

/* ─────────────────────────────────────────────────────────────
   FEATURES GRID
   ───────────────────────────────────────────────────────────── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-feature-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--fi-radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.25s, box-shadow 0.25s;
    transform-style: preserve-3d;
    will-change: transform;
}

.lp-feature-card:hover {
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.1) inset, 0 24px 48px rgba(0, 0, 0, 0.4);
}

.lp-feature-card--primary {
    border-color: rgba(13, 148, 136, 0.25);
    background: rgba(13, 148, 136, 0.06);
}

.lp-feature-card--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.6), transparent);
}

.lp-feature-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.1s;
    border-radius: inherit;
}

.lp-feature-icon-wrap {
    margin-bottom: 1.375rem;
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: var(--fi-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fi-accent);
}

.lp-feature-body {
    position: relative;
    z-index: 1;
}

.lp-feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--fi-text);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.lp-feature-desc {
    font-size: 0.9375rem;
    color: var(--fi-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS — TIMELINE
   ───────────────────────────────────────────────────────────── */
.lp-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.lp-timeline-line {
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.07);
    transform-origin: top;
}

.lp-timeline-line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--fi-accent), rgba(13, 148, 136, 0.3));
    transform-origin: top;
    transform: scaleY(0);
}

.lp-timeline-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.lp-timeline-step:last-child {
    padding-bottom: 0;
}

.lp-timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.lp-timeline-number {
    width: 56px;
    height: 56px;
    background: rgba(13, 148, 136, 0.12);
    border: 2px solid rgba(13, 148, 136, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--fi-accent);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--fi-bg);
}

.lp-timeline-connector {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: transparent;
}

.lp-timeline-card {
    flex: 1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--fi-radius-md);
    padding: 1.75rem;
    margin-top: 0.5rem;
    transition: border-color 0.25s;
}

.lp-timeline-card:hover {
    border-color: rgba(13, 148, 136, 0.35);
}

.lp-timeline-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: var(--fi-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fi-accent);
    margin-bottom: 1rem;
}

.lp-timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fi-text);
    margin-bottom: 0.625rem;
    letter-spacing: -0.015em;
}

.lp-timeline-desc {
    font-size: 0.9375rem;
    color: var(--fi-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   STATS SECTION
   ───────────────────────────────────────────────────────────── */
.lp-section-stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B1529 0%, #0F1F36 50%, #0D2037 100%);
    border-top: 1px solid rgba(13, 148, 136, 0.15);
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.lp-stats-bg-accent {
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.lp-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lp-stats-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-stats-text .lp-section-heading {
    text-align: left;
}

.lp-stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lp-stats-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--fi-radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.25s, background 0.25s;
}

.lp-stats-card:hover {
    border-color: rgba(13, 148, 136, 0.3);
    background: rgba(13, 148, 136, 0.05);
}

.lp-stats-card--accent {
    border-color: rgba(13, 148, 136, 0.25);
    background: rgba(13, 148, 136, 0.08);
}

.lp-stats-card-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--fi-accent);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lp-stats-card-label {
    font-size: 0.875rem;
    color: var(--fi-text-muted);
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────── */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.lp-testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--fi-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: border-color 0.25s, transform 0.25s;
}

.lp-testimonial-card:hover {
    border-color: rgba(13, 148, 136, 0.3);
    transform: translateY(-3px);
}

.lp-testimonial-card--featured {
    border-color: rgba(13, 148, 136, 0.25);
    background: rgba(13, 148, 136, 0.06);
    position: relative;
}

.lp-testimonial-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
}

.lp-testimonial-stars {
    display: flex;
    gap: 3px;
}

.lp-testimonial-quote {
    font-size: 0.9375rem;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.lp-testimonial-avatar {
    width: 42px;
    height: 42px;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--fi-accent);
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.lp-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fi-text);
}

.lp-testimonial-role {
    font-size: 0.8125rem;
    color: var(--fi-text-muted);
}

/* ─────────────────────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────────────────────── */
.lp-cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0F172A 0%, #091525 100%);
}

.lp-cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(13, 148, 136, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
}

.lp-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.lp-cta-orb-1 {
    width: 700px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
}

.lp-cta-orb-2 {
    width: 400px;
    height: 300px;
    bottom: -100px;
    right: 10%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
}

.lp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    color: var(--fi-accent-hover);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
}

.lp-cta-heading {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--fi-text);
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.lp-cta-sub {
    font-size: 1.125rem;
    color: var(--fi-text-muted);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.lp-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lp-cta-reassurance {
    font-size: 0.875rem;
    color: var(--fi-text-muted);
    margin: 0;
    opacity: 0.7;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1023.98px) {
    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-stats-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .lp-stats-text .lp-section-heading {
        text-align: center;
    }

    .lp-stats-text .lp-section-sub--left {
        text-align: center;
    }

    .lp-stats-text {
        align-items: center;
    }

    .lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-testimonials-grid .lp-testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ─────────────────────────────────────────────────────────────
   TOUCH / MOBILE — Disable 3D transforms on cards that only
   have mouse-driven tilt (avoids stuck-tilted state on touch)
   ───────────────────────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .lp-feature-card {
        transform-style: flat;
        will-change: auto;
    }
}

/* ─────────────────────────────────────────────────────────────
   REDUCED MOTION — suppress all CSS animations
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .lp-badge-dot {
        animation: none;
    }

    .lp-scroll-dot {
        animation: none;
    }

    .lp-logos-slide {
        animation: none;
    }

    .lp-timeline-line-fill {
        transform: scaleY(1);
    }

    .lp-feature-card,
    .lp-testimonial-card,
    .lp-stats-card,
    .lp-btn-primary-glow,
    .lp-btn-white-cta {
        transition: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .lp-hero {
        padding: 5rem 0 4rem;
        min-height: auto;
    }

    .lp-hero-heading {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .lp-hero-subtext {
        font-size: 1rem;
    }

    .lp-hero-stats {
        gap: 1.5rem;
        padding: 1.5rem;
        flex-direction: column;
        width: 100%;
    }

    .lp-stat-divider {
        width: 40px;
        height: 1px;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .lp-btn-lg {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-testimonials-grid .lp-testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .lp-section {
        padding: 4rem 0;
    }

    .lp-stats-cards {
        grid-template-columns: 1fr;
    }

    .lp-timeline-line {
        left: 20px;
    }

    .lp-timeline-number {
        width: 42px;
        height: 42px;
        font-size: 0.75rem;
    }

    .lp-cta-section {
        padding: 5rem 0;
    }

    .lp-hero-scroll-indicator {
        display: none;
    }

    .lp-logos-slide {
        animation-duration: 18s;
    }
}
