/* ============================================
   ProFresh Landing — Light Mode (v2)
   ============================================ */

/* --- Design Tokens --- */
:root {
    --lp-teal-50: #E0F7FC;
    --lp-teal-100: #B3EBEF;
    --lp-teal-200: #80DEEA;
    --lp-teal-500: #0F9EBA;
    --lp-teal-600: #0A7A94;
    --lp-teal-700: #075F73;
    --lp-teal-800: #044F60;
    --lp-teal-900: #023040;
    --lp-slate-50: #f8fafc;
    --lp-slate-100: #f1f5f9;
    --lp-slate-200: #e2e8f0;
    --lp-slate-300: #cbd5e1;
    --lp-slate-400: #94a3b8;
    --lp-slate-500: #64748b;
    --lp-slate-600: #475569;
    --lp-slate-700: #334155;
    --lp-slate-800: #1e293b;
    --lp-slate-900: #0f172a;
    --lp-orange-500: #f97316;
    --lp-radius: 12px;
    --lp-radius-lg: 20px;
    --lp-radius-full: 9999px;
    --lp-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --lp-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --lp-shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --lp-shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --section-gap: 8rem;
}

/* --- Reset & Base --- */
body {
    background: #ffffff !important;
    color: var(--lp-slate-800) !important;
    font-family: 'Inter', 'Outfit', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: none !important;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--lp-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--lp-teal-700);
    color: #fff;
    box-shadow: 0 2px 8px rgba(7,95,115,0.3);
}

.btn-primary:hover {
    background: var(--lp-teal-800);
    box-shadow: 0 4px 16px rgba(7,95,115,0.4);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid var(--lp-slate-200);
    color: var(--lp-slate-700);
    background: #fff;
    margin-left: 0.75rem;
}

.btn-outline:hover {
    border-color: var(--lp-teal-600);
    color: var(--lp-teal-800);
    background: var(--lp-teal-50);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* --- Navbar --- */
.landing-navbar {
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 72px;
    display: flex;
    align-items: center;
}

.landing-navbar.scrolled {
    height: 56px;
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--lp-slate-100);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    letter-spacing: -0.5px;
    text-decoration: none !important;
}

.logo span {
    color: var(--lp-teal-600);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--lp-slate-500);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--lp-slate-900);
}

.nav-links .btn-primary {
    margin-left: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: #fff;
}

.nav-links .btn-primary:hover {
    color: #fff;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Scroll-triggered reveal */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in.is-visible {
    animation: fadeInUp 0.7s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in.is-visible {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .dashboard-preview {
        animation: none;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 10rem 0 7rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--lp-teal-50) 0%, #ffffff 60%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(15, 158, 186,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--lp-teal-100) 0%, var(--lp-teal-50) 40%, var(--lp-teal-200) 60%, var(--lp-teal-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    color: var(--lp-teal-800);
    padding: 0.4rem 1rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.hero-eyebrow svg {
    width: 14px;
    height: 14px;
}

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--lp-slate-900);
    letter-spacing: -0.03em;
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--lp-teal-600);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--lp-slate-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--lp-slate-400);
    font-weight: 500;
}

.hero-proof-item svg {
    width: 16px;
    height: 16px;
    color: var(--lp-teal-500);
    flex-shrink: 0;
}

/* Hero — Dashboard Preview */
.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
}

.dashboard-preview {
    background: #fff;
    border: 1px solid var(--lp-slate-200);
    border-radius: var(--lp-radius-lg);
    padding: 0;
    box-shadow: var(--lp-shadow-xl);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.dash-preview-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--lp-slate-50);
    border-bottom: 1px solid var(--lp-slate-100);
}

.dash-preview-dots {
    display: flex;
    gap: 0.35rem;
}

.dash-preview-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-preview-dots span:nth-child(1) { background: #ef4444; }
.dash-preview-dots span:nth-child(2) { background: #f59e0b; }
.dash-preview-dots span:nth-child(3) { background: #0F9EBA; }

.dash-preview-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lp-slate-500);
}

.dash-preview-tabs {
    display: flex;
    gap: 0;
    padding: 0 1.25rem;
    border-bottom: 1px solid var(--lp-slate-100);
    overflow-x: auto;
}

.dash-tab {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp-slate-400);
    letter-spacing: 0.03em;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
}

.dash-tab.active {
    color: var(--lp-teal-700);
    border-bottom-color: var(--lp-teal-600);
}

.dash-preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.dash-metric-card {
    background: var(--lp-slate-50);
    border: 1px solid var(--lp-slate-100);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.dash-metric-label {
    display: block;
    font-size: 0.65rem;
    color: var(--lp-slate-400);
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-metric-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    line-height: 1.2;
}

.dash-metric-change {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--lp-slate-400);
    margin-top: 0.15rem;
}

.dash-metric-change.positive {
    color: var(--lp-teal-600);
}

.dash-preview-chart {
    padding: 0.5rem 1.25rem 0;
    position: relative;
}

.chart-line {
    width: 100%;
    height: 90px;
    display: block;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0 0.5rem;
    font-size: 0.65rem;
    color: var(--lp-slate-300);
    font-weight: 500;
}

.dash-preview-signal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--lp-teal-50);
    border-top: 1px solid var(--lp-teal-100);
}

.oracle-signal-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.oracle-signal-buy {
    background: var(--lp-teal-700);
    color: #fff;
}

.dash-signal-text {
    font-size: 0.78rem;
    color: var(--lp-slate-600);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   DATA SOURCES BAR
   ============================================ */
.logos-bar {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--lp-slate-100);
}

.logos-bar p {
    text-align: center;
    font-size: 0.82rem;
    color: var(--lp-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    max-width: 140px;
}

/* ============================================
   SECTION SHARED
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--lp-slate-500);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--lp-slate-50);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.how-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--lp-slate-200);
    transition: transform 0.2s, box-shadow 0.2s;
}

.how-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.how-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lp-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.how-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-slate-900);
    margin-bottom: 0.5rem;
}

.how-step-card p {
    font-size: 0.92rem;
    color: var(--lp-slate-500);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   CONTRAST (Before / After)
   ============================================ */
.contrast-section {
    padding: var(--section-gap) 0;
    background: #fff;
}

.contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contrast-col {
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
}

.contrast-without {
    background: var(--lp-slate-50);
    border: 1px solid var(--lp-slate-200);
}

.contrast-with {
    background: var(--lp-teal-50);
    border: 1px solid var(--lp-teal-200);
}

.contrast-col-header {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid;
}

.contrast-without-header {
    color: var(--lp-slate-400);
    border-color: var(--lp-slate-200);
}

.contrast-with-header {
    color: var(--lp-teal-700);
    border-color: var(--lp-teal-200);
}

.contrast-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.contrast-item:last-child {
    margin-bottom: 0;
}

.contrast-item svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contrast-without .contrast-item {
    color: var(--lp-slate-500);
}

.contrast-without .contrast-item svg {
    color: var(--lp-slate-300);
}

.contrast-with .contrast-item {
    color: var(--lp-slate-700);
}

.contrast-with .contrast-item svg {
    color: var(--lp-teal-600);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: var(--section-gap) 0;
    background: var(--lp-slate-50);
}

/* Feature Hero — Oracle / Capsula */
.feature-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--lp-teal-700) 0%, var(--lp-teal-800) 100%);
    border-radius: var(--lp-radius-lg);
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.feature-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-hero-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

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

.feature-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--lp-radius-full);
    margin-bottom: 0.75rem;
}

.feature-hero h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-hero p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin: 0;
    max-width: 600px;
}

/* 6-card grid (3 cols x 2 rows) */
.feature-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-slate-100);
    transition: all 0.25s ease;
}

.feature-card:hover {
    border-color: var(--lp-teal-200);
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-2px);
}

.icon {
    width: 48px;
    height: 48px;
    background: var(--lp-teal-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-teal-600);
    margin-bottom: 1.25rem;
}

.icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-slate-900);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--lp-slate-500);
    line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-gap) 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.price-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-slate-200);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
}

.price-card .features-list {
    flex: 1;
}

.price-card:hover {
    border-color: var(--lp-slate-300);
    box-shadow: var(--lp-shadow-md);
}

.price-card.popular {
    border: 2px solid var(--lp-teal-500);
    box-shadow: var(--lp-shadow-lg);
    transform: scale(1.03);
    background: #fff;
}

.price-card.popular:hover {
    box-shadow: var(--lp-shadow-xl);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-teal-700);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-slate-900);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--lp-slate-900);
}

.price span {
    font-size: 1rem;
    color: var(--lp-slate-400);
    font-weight: 400;
}

.price-desc {
    font-size: 0.88rem;
    color: var(--lp-slate-400);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
    padding: 0;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: var(--lp-slate-600);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.features-list li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 0.6rem;
    flex-shrink: 0;
    background: var(--lp-teal-100);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* ============================================
   PRICING — B2B v2
   ============================================ */

.pricing-roi-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(90deg, var(--lp-teal-50) 0%, #fff 50%, var(--lp-teal-50) 100%);
    border: 1px solid var(--lp-teal-200);
    border-radius: var(--lp-radius-full);
    padding: 0.75rem 1.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lp-teal-800);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.5;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
    margin-top: 2rem;
}

.price-card-featured {
    background: #fff;
    border: 2px solid var(--lp-teal-500);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    position: relative;
    overflow: hidden;
}

.price-card-featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-teal-500), var(--lp-teal-700));
}

.price-card-featured-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--lp-teal-700);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.price-card-featured-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.price-card-featured-left {
    padding: 2.5rem 2rem 2.5rem 2.5rem;
    border-right: 1px solid var(--lp-slate-100);
}

.price-card-featured-right {
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    background: var(--lp-slate-50);
}

.price-card-featured-left h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    margin-bottom: 0.4rem;
    padding-right: 130px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    letter-spacing: -0.04em;
    line-height: 1;
}

.price-period-stack {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.price-period {
    font-size: 1rem;
    color: var(--lp-slate-400);
    font-weight: 400;
}

.price-annual-note {
    font-size: 0.78rem;
    color: var(--lp-slate-400);
    font-weight: 500;
    line-height: 1.3;
}

.price-seats-callout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lp-teal-50);
    border: 1px solid var(--lp-teal-200);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--lp-teal-800);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.price-card-featured-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.price-card-featured-ctas .btn { margin: 0; }

.btn-ghost {
    border: 1.5px solid var(--lp-teal-300);
    color: var(--lp-teal-700);
    background: transparent;
    padding: 0.85rem 1.75rem;
    font-size: 0.92rem;
    border-radius: var(--lp-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: var(--lp-teal-50);
    border-color: var(--lp-teal-500);
}

.pricing-social-proof {
    border-top: 1px solid var(--lp-slate-100);
    padding-top: 1.25rem;
}

.pricing-testimonial p {
    font-size: 0.88rem;
    color: var(--lp-slate-600);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.pricing-testimonial span {
    font-size: 0.78rem;
    color: var(--lp-slate-400);
    font-weight: 600;
}

.features-list-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-slate-400);
    margin-bottom: 1rem;
}

.price-card-demo {
    background: #fff;
    border: 1px solid var(--lp-slate-200);
    border-radius: var(--lp-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.25s ease;
}

.price-card-demo:hover {
    border-color: var(--lp-slate-300);
    box-shadow: var(--lp-shadow-md);
}

.price-card-demo-icon {
    width: 48px;
    height: 48px;
    background: var(--lp-slate-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-slate-500);
}

.price-card-demo h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-slate-900);
    margin: 0;
}

.price-card-demo > p {
    font-size: 0.88rem;
    color: var(--lp-slate-500);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.features-list-minimal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.features-list-minimal li {
    font-size: 0.85rem;
    color: var(--lp-slate-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list-minimal li::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: var(--lp-slate-100);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

/* FAQ */
.pricing-faq {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-slate-700);
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.pricing-faq-item {
    background: var(--lp-slate-50);
    border: 1px solid var(--lp-slate-200);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.pricing-faq-item[open] { border-color: var(--lp-teal-300); }

.pricing-faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lp-slate-800);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
}

.pricing-faq-question::-webkit-details-marker { display: none; }

.pricing-faq-question::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--lp-slate-400);
    flex-shrink: 0;
}

.pricing-faq-item[open] .pricing-faq-question::after {
    content: "−";
    color: var(--lp-teal-600);
}

.pricing-faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.85rem;
    color: var(--lp-slate-500);
    line-height: 1.65;
    margin: 0;
}

/* Demo Form Section */
.demo-section {
    padding: var(--section-gap) 0;
    background: var(--lp-slate-50);
    border-top: 1px solid var(--lp-slate-200);
}

.demo-form-wrapper {
    max-width: 620px;
    margin: 0 auto;
}

.demo-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.demo-form-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lp-slate-900);
    margin-bottom: 0.6rem;
}

.demo-form-header p {
    font-size: 1rem;
    color: var(--lp-slate-500);
    line-height: 1.6;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--lp-slate-200);
    border-radius: var(--lp-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--lp-shadow-md);
}

.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.demo-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.demo-form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-slate-700);
}

.demo-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--lp-slate-200);
    border-radius: var(--lp-radius);
    font-size: 0.9rem;
    color: var(--lp-slate-800);
    background: #fff;
    transition: border-color 0.2s;
    width: 100%;
    font-family: inherit;
    resize: vertical;
}

.demo-input:focus {
    outline: none;
    border-color: var(--lp-teal-400);
    box-shadow: 0 0 0 3px var(--lp-teal-50);
}

@media (max-width: 968px) {
    .pricing-layout { grid-template-columns: 1fr; }
    .price-card-featured-body { grid-template-columns: 1fr; }
    .price-card-featured-left {
        border-right: none;
        border-bottom: 1px solid var(--lp-slate-100);
        padding: 2rem;
    }
    .price-card-featured-right { padding: 2rem; }
    .price-card-featured-left h3 { padding-right: 80px; }
    .pricing-faq-grid { grid-template-columns: 1fr; }
    .demo-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .price-amount { font-size: 2.8rem; }
    .price-card-featured-badge { position: static; display: inline-block; margin-bottom: 1rem; }
    .price-card-featured-left h3 { padding-right: 0; }
    .price-card-featured-ctas { flex-direction: column; }
    .price-card-featured-ctas .btn { width: 100%; text-align: center; }
    .demo-form { padding: 1.75rem; }
}

/* ============================================
   STATS / TRUST
   ============================================ */
.about-section {
    padding: var(--section-gap) 0;
    background: var(--lp-slate-50);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card-v2 {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-slate-100);
    text-align: center;
    box-shadow: var(--lp-shadow-sm);
    transition: all 0.25s ease;
}

.stat-card-v2:hover {
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-number.green { color: var(--lp-teal-600); }
.stat-number.orange { color: var(--lp-orange-500); }
.stat-number.slate { color: var(--lp-slate-800); }

.stat-label {
    font-size: 0.85rem;
    color: var(--lp-slate-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--lp-slate-400);
    line-height: 1.5;
    font-weight: 400;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
    padding: var(--section-gap) 0;
    background: linear-gradient(135deg, var(--lp-teal-800) 0%, var(--lp-teal-900) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--lp-teal-800);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

.cta-section .btn-primary:hover {
    background: var(--lp-teal-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    border-top: 1px solid var(--lp-slate-100);
    padding: 3rem 0;
    text-align: center;
    color: var(--lp-slate-400);
    font-size: 0.85rem;
    background: #fff;
}

.footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--lp-slate-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--lp-slate-600);
}

/* ============================================
   FLOATING NOTICES / ALERTS
   ============================================ */
.landing-notice {
    position: fixed;
    top: 84px;
    right: 20px;
    z-index: 9999;
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: fadeInDown 0.3s ease-out;
}

.landing-notice--success { background: var(--lp-teal-700); }
.landing-notice--alert   { background: #EF4444; }

/* ============================================
   MOBILE TOGGLE
   ============================================ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--lp-slate-700);
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   RESPONSIVE — Tablet (max 968px)
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-gap: 5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-proof {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dashboard-preview {
        max-width: 480px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .feature-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .feature-hero p {
        max-width: 100%;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card.popular {
        transform: none;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-gap: 4rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .hero-ctas .btn-outline {
        margin-left: 0;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

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

    .how-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .dashboard-preview {
        animation: none;
    }

    .mobile-toggle {
        display: block;
    }

    .landing-navbar .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--lp-slate-100);
        align-items: center;
        gap: 1rem;
        box-shadow: var(--lp-shadow-lg);
    }

    .landing-navbar .nav-links.open {
        display: flex;
        animation: fadeInDown 0.25s ease-out;
    }

    .landing-navbar .nav-links a,
    .landing-navbar .nav-links .btn {
        margin: 0 !important;
    }

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

    .logos-bar {
        padding: 2.5rem 0 1.5rem;
    }

    .logos-bar p {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .logos-grid {
        gap: 1.5rem;
    }

    .logo-img {
        height: 26px;
        max-width: 100px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 0.5rem;
    }

    .dash-preview-tabs {
        padding: 0 0.75rem;
    }

    .dash-tab {
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
    }

    .dash-preview-metrics {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .dash-metric-value {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .contrast-col {
        padding: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE — Compact Mobile (max 640px)
   ============================================ */
@media (max-width: 640px) {
    .landing-notice {
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        border-radius: 0;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2.5rem;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .hero-content p {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        margin-bottom: 2rem;
    }

    .hero-ctas .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-proof-item {
        font-size: 0.78rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.88rem;
    }

    .feature-hero {
        padding: 1.5rem 1.25rem;
    }

    .feature-hero-icon {
        width: 48px;
        height: 48px;
    }

    .feature-hero-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-hero h3 {
        font-size: 1.15rem;
    }

    .feature-hero p {
        font-size: 0.88rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-card-v2 {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .stat-desc {
        font-size: 0.72rem;
    }

    .price {
        font-size: 2.2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn-primary {
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
    }

    .logo-img {
        height: 22px;
        max-width: 85px;
    }

    .logos-grid {
        gap: 1rem;
    }

    .dash-preview-signal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
