/* ============================================
   InspectorData Landing Pages — Shared Styles
   High-conversion landing page template
   ============================================ */

/* === Google Fonts loaded in HTML === */
/* DM Sans (body) + Outfit (headings) */

:root {
    /* Brand */
    --brand: #00AEEF;
    --brand-dark: #0093CC;
    --brand-darker: #007AA8;
    --brand-light: #E0F5FD;
    --brand-glow: rgba(0, 174, 239, 0.15);

    /* Neutrals */
    --slate-950: #0B1120;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;

    /* Accents */
    --green: #10B981;
    --green-light: #D1FAE5;
    --orange: #F59E0B;
    --orange-light: #FEF3C7;
    --red: #EF4444;
    --red-light: #FEE2E2;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.16);
    --shadow-brand: 0 8px 32px rgba(0, 174, 239, 0.25);
    --shadow-brand-lg: 0 16px 48px rgba(0, 174, 239, 0.35);

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-2xl: 28px;
    --r-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--slate-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--brand-dark); }

/* === Layout === */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: 96px 0;
}

/* ============================================
   HEADER
   ============================================ */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    padding: 14px 0;
    transition: box-shadow 0.3s var(--ease);
}

.lp-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.lp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--slate-900);
    text-decoration: none;
}

.lp-logo img {
    height: 42px;
    width: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.lp-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s;
}

.lp-nav a:hover { color: var(--brand); }

.lp-header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === Buttons === */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-brand);
    position: relative;
    overflow: hidden;
}

.lp-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s var(--ease);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
    color: var(--white);
}

.lp-btn-primary:hover::after { left: 100%; }

.lp-btn-primary-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--r-xl);
}

.lp-btn-secondary {
    background: var(--white);
    color: var(--slate-700);
    padding: 10px 22px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--slate-200);
}

.lp-btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.lp-btn-ghost {
    background: transparent;
    color: var(--brand);
    padding: 10px 20px;
    border-radius: var(--r-md);
}

.lp-btn-ghost:hover {
    background: var(--brand-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.lp-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-content { max-width: 560px; }

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: var(--brand-dark);
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.lp-badge i { font-size: 0.7rem; }

.lp-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.lp-hero h1 .highlight {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-desc {
    font-size: 1.15rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 32px;
}

.lp-hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.lp-hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

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

.lp-proof-item i {
    color: var(--green);
    font-size: 0.75rem;
}

/* Hero Image */
.lp-hero-visual {
    position: relative;
}

.lp-hero-img-wrap {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
}

.lp-hero-img-wrap img {
    width: 100%;
    display: block;
}

.lp-hero-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-800);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 6s ease-in-out infinite;
}

.lp-hero-float i {
    font-size: 1.1rem;
}

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

/* ============================================
   PAIN POINTS
   ============================================ */
.lp-pain {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.lp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.lp-section-header .lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin-bottom: 16px;
}

.lp-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.lp-pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-pain-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    transition: all 0.3s var(--ease);
}

.lp-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.lp-pain-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.lp-pain-icon.red { background: var(--red-light); color: var(--red); }
.lp-pain-icon.orange { background: var(--orange-light); color: var(--orange); }
.lp-pain-icon.blue { background: var(--brand-light); color: var(--brand); }

.lp-pain-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

/* ============================================
   FEATURES GRID
   ============================================ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--green));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.lp-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* ============================================
   SOLUTION / ALTERNATING SECTION
   ============================================ */
.lp-solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.lp-solution-row:not(:last-child) {
    border-bottom: 1px solid var(--slate-100);
}

.lp-solution-row.reverse {
    direction: rtl;
}

.lp-solution-row.reverse > * {
    direction: ltr;
}

.lp-solution-img {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

.lp-solution-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.lp-solution-content p {
    font-size: 1rem;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.lp-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--slate-700);
}

.lp-check-list li i {
    color: var(--green);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   TRUST / SOCIAL PROOF
   ============================================ */
.lp-trust {
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.lp-trust::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 174, 239, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.lp-trust-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lp-trust h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}

.lp-trust p {
    color: var(--slate-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

.lp-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lp-trust-badge-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-lg);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand);
}

.lp-trust-badge span {
    font-size: 0.85rem;
    color: var(--slate-300);
    font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.lp-faq-item.open {
    border-color: var(--brand);
}

.lp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-800);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.lp-faq-q:hover { color: var(--brand); }

.lp-faq-q i {
    font-size: 0.8rem;
    color: var(--slate-400);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-q i {
    transform: rotate(180deg);
    color: var(--brand);
}

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.lp-faq-item.open .lp-faq-a {
    max-height: 400px;
}

.lp-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ============================================
   INLINE TRIAL SIGNUP FORM
   ============================================ */
.lp-cta-section {
    background: linear-gradient(135deg, var(--slate-950) 0%, var(--slate-900) 50%, #0B1A2E 100%);
    position: relative;
    overflow: hidden;
}

.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.lp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.lp-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.lp-cta-content p {
    color: var(--slate-400);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.lp-cta-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-cta-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--slate-300);
}

.lp-cta-perk i {
    color: var(--green);
    font-size: 0.75rem;
}

/* Trial Form Card */
.lp-trial-card {
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.lp-trial-card h3 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 6px;
}

.lp-trial-card .lp-trial-sub {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.lp-trial-field {
    margin-bottom: 16px;
}

.lp-trial-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.lp-trial-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--slate-800);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    background: var(--slate-50);
}

.lp-trial-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
    background: var(--white);
}

.lp-trial-input::placeholder {
    color: var(--slate-400);
}

.lp-trial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-trial-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--r-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--slate-50);
    cursor: pointer;
    appearance: none;
    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='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s var(--ease);
}

.lp-trial-select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.lp-trial-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--r-lg);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-brand);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.lp-trial-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
}

.lp-trial-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lp-trial-terms {
    text-align: center;
    font-size: 0.78rem;
    color: var(--slate-400);
    margin-top: 14px;
}

.lp-trial-terms a {
    color: var(--slate-500);
    text-decoration: underline;
}

/* Trial success state */
.lp-trial-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.lp-trial-success.show { display: block; }

.lp-trial-success-check {
    width: 64px;
    height: 64px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--green);
}

.lp-trial-success h3 {
    margin-bottom: 8px;
}

.lp-trial-success p {
    color: var(--slate-500);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* Error message */
.lp-trial-error {
    display: none;
    background: var(--red-light);
    border: 1px solid #fca5a5;
    color: #b91c1c;
    padding: 10px 16px;
    border-radius: var(--r-md);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.lp-trial-error.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */
.lp-footer {
    background: var(--slate-900);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.lp-footer-brand p {
    color: var(--slate-400);
    font-size: 0.88rem;
    margin-top: 12px;
    line-height: 1.6;
}

.lp-footer h4 {
    color: var(--slate-200);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.lp-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer ul a {
    color: var(--slate-400);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.lp-footer ul a:hover { color: var(--brand); }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-footer-bottom p {
    color: var(--slate-500);
    font-size: 0.82rem;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
}

.lp-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.lp-footer-social a:hover {
    background: var(--brand);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero-content { max-width: 100%; }
    .lp-hero h1 { font-size: 2.6rem; }
    .lp-hero-visual { order: -1; max-width: 600px; margin: 0 auto; }
    .lp-solution-row { grid-template-columns: 1fr; gap: 40px; }
    .lp-solution-row.reverse { direction: ltr; }
    .lp-cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-cta-content { text-align: center; }
    .lp-cta-perks { justify-content: center; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .lp-section { padding: 64px 0; }
    .lp-hero { padding: 48px 0 64px; }
    .lp-hero h1 { font-size: 2rem; }
    .lp-section-header h2 { font-size: 1.8rem; }
    .lp-pain-grid { grid-template-columns: 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-hero-cta { flex-direction: column; align-items: stretch; }
    .lp-hero-proof { flex-direction: column; gap: 12px; align-items: flex-start; }
    .lp-nav { display: none; }
    .lp-trial-row { grid-template-columns: 1fr; }
    .lp-cta-perks { grid-template-columns: 1fr; }
    .lp-trust-badges { gap: 24px; }
    .lp-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .lp-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .lp-hero-float { display: none; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.lp-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.lp-fade-in-delay-1 { transition-delay: 0.1s; }
.lp-fade-in-delay-2 { transition-delay: 0.2s; }
.lp-fade-in-delay-3 { transition-delay: 0.3s; }
.lp-fade-in-delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.lp-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.lp-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.lp-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.lp-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.lp-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: none; }
.lp-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: none; }
.lp-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: none; }

/* ============================================
   STATE PAGE SPECIFIC
   ============================================ */
.lp-state-hero {
    background: linear-gradient(135deg, var(--slate-950) 0%, var(--slate-900) 100%);
    color: var(--white);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

.lp-state-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lp-state-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
}

.lp-state-hero p {
    color: var(--slate-300);
}

.lp-state-info {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-xl);
    padding: 32px;
}

.lp-state-info h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-state-info h3 i {
    color: var(--brand);
}

.lp-state-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lp-state-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--slate-600);
}

.lp-state-detail-item strong {
    color: var(--slate-800);
    font-weight: 600;
}

/* ============================================
   PERSONA PAGE SPECIFIC
   ============================================ */
.lp-persona-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    color: #059669;
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.lp-persona-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.lp-persona-stat {
    text-align: center;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--r-xl);
}

.lp-persona-stat .number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 8px;
}

.lp-persona-stat .label {
    font-size: 0.88rem;
    color: var(--slate-500);
}
