/* ============================================
   FENCEPOST LANDING PAGE
   ============================================ */

:root {
    --lp-primary: #B07A3A;
    --lp-primary-dark: #8C5E28;
    --lp-primary-light: #D4A86A;
    --lp-accent: #2B7A4B;
    --lp-accent-light: #E8F5EC;
    --lp-dark: #1A1612;
    --lp-text: #3D3530;
    --lp-muted: #7A6F68;
    --lp-bg: #FFFCF7;
    --lp-bg-alt: #F7F2EB;
    --lp-border: #E7DDD3;
    --lp-white: #FFFFFF;
    --lp-radius: 16px;
    --lp-max-width: 1200px;
}

/* Reset for landing page */
.lp {
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    color: var(--lp-text);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

.lp * {
    box-sizing: border-box;
}

.lp-container {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
    height: 64px;
}

.lp-nav-inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.lp-logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--lp-dark);
    letter-spacing: -0.03em;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.lp-nav-links a:hover {
    color: var(--lp-dark);
}

.lp-nav-login {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-nav-login input {
    height: 38px;
    padding: 0 14px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: inherit;
    background: var(--lp-white);
    color: var(--lp-text);
    width: 170px;
    transition: border-color 200ms ease;
}

.lp-nav-login input::placeholder {
    color: var(--lp-muted);
    opacity: 0.7;
}

.lp-nav-login input:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(176, 122, 58, 0.12);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 180ms ease;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    color: white;
    box-shadow: 0 2px 8px rgba(176, 122, 58, 0.25);
}

.lp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(176, 122, 58, 0.35);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-primary);
    border: 1.5px solid var(--lp-primary);
}

.lp-btn-outline:hover {
    background: rgba(176, 122, 58, 0.06);
}

.lp-btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

.lp-btn-white {
    background: var(--lp-white);
    color: var(--lp-primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lp-btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ============================================
   HERO SECTION
   ============================================ */

.lp-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--lp-bg) 0%, var(--lp-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 122, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 122, 75, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--lp-accent-light);
    color: var(--lp-accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.lp-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--lp-dark);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 1.15rem;
    color: var(--lp-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--lp-border);
}

.lp-stat {
    text-align: center;
}

.lp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
}

.lp-stat-label {
    font-size: 0.82rem;
    color: var(--lp-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================
   PAIN POINTS / AUTHENTICITY
   ============================================ */

.lp-section {
    padding: 80px 0;
}

.lp-section-alt {
    background: var(--lp-bg-alt);
}

.lp-section-dark {
    background: var(--lp-dark);
    color: var(--lp-white);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.lp-section-dark .lp-section-header h2 {
    color: var(--lp-white);
}

.lp-section-header p {
    font-size: 1.05rem;
    color: var(--lp-muted);
    max-width: 600px;
    margin: 0 auto;
}

.lp-section-dark .lp-section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* Pain points cards */
.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-pain-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.lp-pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.lp-pain-icon-red {
    background: #FEF2F2;
    color: #DC2626;
}

.lp-pain-icon-amber {
    background: #FFFBEB;
    color: #D97706;
}

.lp-pain-icon-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.lp-pain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 10px;
}

.lp-pain-card p {
    font-size: 0.92rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MODULES / FEATURES
   ============================================ */

.lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lp-module-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 36px 32px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.lp-module-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.lp-module-icon-green {
    background: linear-gradient(135deg, #E8F5EC, #D1FADF);
    color: #16A34A;
}

.lp-module-icon-brown {
    background: linear-gradient(135deg, #FDF4E7, #FDEBD0);
    color: var(--lp-primary);
}

.lp-module-icon-blue {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    color: #2563EB;
}

.lp-module-icon-purple {
    background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
    color: #7C3AED;
}

.lp-module-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 8px;
}

.lp-module-card .lp-module-tagline {
    font-size: 0.92rem;
    color: var(--lp-primary);
    font-weight: 500;
    margin: 0 0 16px;
}

.lp-module-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-module-benefits li {
    font-size: 0.9rem;
    color: var(--lp-muted);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lp-module-benefits li::before {
    content: '\2713';
    color: var(--lp-accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   VET CONSULTANCY
   ============================================ */

.lp-vet-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.lp-vet-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.lp-vet-content > p {
    font-size: 1rem;
    color: var(--lp-muted);
    margin: 0 0 28px;
    line-height: 1.7;
}

.lp-vet-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-vet-benefit {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.lp-vet-benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FEF2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.lp-vet-benefit h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 4px;
}

.lp-vet-benefit p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.6;
}

/* Vet visual — stacked cards */
.lp-vet-visual {
    display: flex;
    justify-content: center;
}

.lp-vet-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.lp-vet-quote-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.lp-vet-quote-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.lp-vet-quote-card > p {
    font-size: 0.95rem;
    color: var(--lp-text);
    font-style: italic;
    line-height: 1.65;
    margin: 0 0 18px;
}

.lp-vet-quote-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-vet-quote-author strong {
    font-size: 0.88rem;
    color: var(--lp-dark);
}

.lp-vet-quote-author span {
    font-size: 0.8rem;
    color: var(--lp-muted);
}

.lp-vet-data-card {
    background: var(--lp-bg-alt);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 18px 24px;
    margin-top: -12px;
    margin-left: 24px;
    margin-right: -8px;
    position: relative;
    z-index: 1;
}

.lp-vet-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--lp-text);
    border-bottom: 1px solid rgba(231, 221, 211, 0.5);
}

.lp-vet-data-row:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .lp-vet-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-vet-visual {
        order: -1;
    }
}

/* ============================================
   COMING SOON BANNER
   ============================================ */

.lp-coming-soon-banner {
    background: linear-gradient(135deg, var(--lp-dark), #2D251E);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.lp-coming-soon-banner span {
    display: inline-block;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-light));
    color: white;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 12px;
    border-radius: 999px;
    margin-right: 6px;
    vertical-align: middle;
}

/* ============================================
   AI SECTION
   ============================================ */

.lp-ai-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.lp-ai-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.lp-ai-content p {
    font-size: 1rem;
    color: var(--lp-muted);
    margin: 0 0 24px;
    line-height: 1.7;
}

.lp-ai-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.lp-ai-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-ai-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(176, 122, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.lp-ai-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 3px;
}

.lp-ai-feature-text p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin: 0;
}

.lp-ai-visual {
    background: linear-gradient(135deg, #1A1612, #2D251E);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.lp-ai-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 122, 58, 0.15), transparent);
}

.lp-ai-chat {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.lp-ai-bubble {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 85%;
}

.lp-ai-bubble-user {
    background: rgba(176, 122, 58, 0.2);
    color: var(--lp-primary-light);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.lp-ai-bubble-ai {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.lp-ai-bubble-ai strong {
    color: var(--lp-primary-light);
}

/* ============================================
   PRICING
   ============================================ */

.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-toggle-active {
    color: var(--lp-dark);
    font-weight: 700;
}

.lp-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    cursor: pointer;
}

.lp-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.lp-toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 28px;
    transition: background 0.25s;
}

.lp-toggle-slider::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.lp-toggle-switch input:checked + .lp-toggle-slider {
    background: var(--lp-primary);
}

.lp-toggle-switch input:checked + .lp-toggle-slider::before {
    transform: translateX(22px);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.lp-price-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.lp-price-card-featured {
    border: 2px solid var(--lp-primary);
    box-shadow: 0 8px 32px rgba(176, 122, 58, 0.15);
}

.lp-price-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.lp-price-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 6px;
}

.lp-price-card .lp-price-desc {
    font-size: 0.82rem;
    color: var(--lp-muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.lp-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.lp-price-dollar {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--lp-dark);
    letter-spacing: -0.03em;
}

.lp-price-period {
    font-size: 0.88rem;
    color: var(--lp-muted);
}

.lp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.lp-price-features li {
    font-size: 0.85rem;
    color: var(--lp-text);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(231, 221, 211, 0.4);
}

.lp-price-features li:last-child {
    border-bottom: none;
}

.lp-price-check {
    color: var(--lp-accent);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ── Price Calculator Slider ── */

.lp-calc-slider-wrap {
    margin: 24px 0 0;
    padding: 0 4px;
}

.lp-calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    cursor: pointer;
}

.lp-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-primary);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    cursor: grab;
}

.lp-calc-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lp-primary);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    cursor: grab;
}

.lp-calc-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--lp-muted);
    font-weight: 500;
    user-select: none;
}

/* ============================================
   LEAD MAGNET / CTA
   ============================================ */

.lp-cta-box {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.lp-cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.lp-cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.lp-cta-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.lp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.lp-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--lp-border);
}

.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-footer-copy {
    font-size: 0.85rem;
    color: var(--lp-muted);
}

.lp-footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-links a {
    font-size: 0.85rem;
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.lp-footer-links a:hover {
    color: var(--lp-dark);
}

/* ============================================
   SEO / NEWSLETTER
   ============================================ */

.lp-newsletter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lp-newsletter-form {
    display: flex;
    gap: 10px;
}

.lp-newsletter-form input {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.lp-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lp-newsletter-form input:focus {
    outline: none;
    border-color: var(--lp-primary-light);
}

.lp-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.lp-topic-tag {
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 500;
}

/* ============================================
   VALUE LADDER TABLE
   ============================================ */

.lp-table-wrap {
    overflow-x: auto;
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-border);
    margin-top: 40px;
}

.lp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.lp-table th {
    background: var(--lp-bg-alt);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    color: var(--lp-dark);
    border-bottom: 1px solid var(--lp-border);
    white-space: nowrap;
}

.lp-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(231, 221, 211, 0.4);
    color: var(--lp-text);
}

.lp-table tr:last-child td {
    border-bottom: none;
}

.lp-table tr:hover td {
    background: rgba(176, 122, 58, 0.03);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.lp-contact-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lp-form-full {
    grid-column: 1 / -1;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lp-dark);
}

.lp-form-group input,
.lp-form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--lp-bg);
    color: var(--lp-text);
    transition: border-color 200ms ease;
    resize: vertical;
}

.lp-form-group input:focus,
.lp-form-group textarea:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(176, 122, 58, 0.1);
}

.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder {
    color: var(--lp-muted);
    opacity: 0.6;
}

/* ============================================
   BLOG
   ============================================ */

.lp-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.lp-blog-card {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px 28px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.lp-blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.lp-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lp-blog-tag {
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(176, 122, 58, 0.1);
    color: var(--lp-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.lp-blog-date {
    font-size: 0.8rem;
    color: var(--lp-muted);
}

.lp-blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-dark);
    margin: 0 0 8px;
}

.lp-blog-card p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0 0 14px;
    line-height: 1.6;
}

.lp-blog-read {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lp-primary);
    text-decoration: none;
    transition: color 150ms ease;
}

.lp-blog-read:hover {
    color: var(--lp-primary-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-ai-row,
    .lp-newsletter-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lp-nav-links {
        display: none;
    }

    .lp-pain-grid {
        grid-template-columns: 1fr;
    }

    .lp-modules-grid {
        grid-template-columns: 1fr;
    }

    .lp-form-grid {
        grid-template-columns: 1fr;
    }

    .lp-contact-card {
        padding: 28px 20px;
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .lp-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .lp-cta-box {
        padding: 40px 24px;
    }

    .lp-footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .lp-newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .lp-nav-login input {
        width: 120px;
    }

    .lp-hero h1 {
        font-size: 2rem;
    }
}
