/* =============================================
   NEXT STEP DIGITAL — LANDING PAGE STYLES
   landing.css — loaded only on landing page template
   ============================================= */

:root {
    --blue:        #0275d3;
    --blue-dark:   #0155a0;
    --blue-light:  #eff6ff;
    --blue-border: #bfdbfe;
    --navy:        #0e1f3d;
    --navy-light:  #162b55;
    --slate:       #334155;
    --slate-mid:   #475569;
    --slate-light: #64748b;
    --border:      #e2e8f0;
    --bg:          #f8fafc;
    --white:       #ffffff;
    --green:       #16a34a;
    --green-light: #f0fdf4;

    --font-heading: 'Sora', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius:    6px;
    --radius-lg: 12px;
    --radius-xl: 18px;
    --shadow:    0 4px 24px rgba(14,31,61,0.09);
    --shadow-lg: 0 16px 56px rgba(14,31,61,0.14);
    --transition: 0.22s ease;
    --max-w: 1100px;
}

/* =============================================
   BASE RESET (scoped to landing)
   ============================================= */
.lp-wrap *, .lp-wrap *::before, .lp-wrap *::after { box-sizing: border-box; }
.lp-wrap { font-family: var(--font-body); color: var(--slate); line-height: 1.7; }
.lp-wrap img { max-width: 100%; display: block; }
.lp-wrap h1, .lp-wrap h2, .lp-wrap h3, .lp-wrap h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.lp-wrap a { color: var(--blue); text-decoration: none; }

/* =============================================
   LAYOUT
   ============================================= */
.lp-container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* =============================================
   HEADER — minimal, no nav
   ============================================= */
.lp-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding-block: 1rem;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 8px rgba(14,31,61,0.05);
}

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

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

.lp-header-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--slate-mid);
    font-weight: 500;
}

.lp-trust-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* =============================================
   HERO — two column, form right
   ============================================= */
.lp-hero {
    background: var(--navy);
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 65% at 65% 40%, rgba(2,117,211,0.2) 0%, transparent 65%);
    pointer-events: none;
}

.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 1.25rem;
}

.lp-hero-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: #93c5fd;
}

.lp-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 1.1rem;
}

.lp-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 500px;
}

.lp-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.lp-benefit {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.lp-benefit-icon {
    width: 20px;
    height: 20px;
    background: rgba(22,163,74,0.25);
    border: 1px solid rgba(22,163,74,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-benefit-icon svg { width: 11px; height: 11px; color: #4ade80; }

.lp-hero-reassurance {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.lp-reassurance-item {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lp-reassurance-item svg { width: 13px; height: 13px; color: rgba(255,255,255,0.3); }

/* =============================================
   FORM CARD
   ============================================= */
.lp-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.lp-form-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.lp-form-subtitle {
    font-size: 0.8rem;
    color: var(--slate-mid);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.lp-form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
}

.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--slate);
    background: var(--white);
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2,117,211,0.1);
}

.lp-form-group textarea { resize: vertical; min-height: 80px; }

.lp-form-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
}

.lp-form-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2,117,211,0.35);
}

.lp-form-submit svg { width: 15px; height: 15px; }

.lp-form-privacy {
    font-size: 0.72rem;
    color: var(--slate-light);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
.lp-section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.lp-section--bg { background: var(--bg); }
.lp-section--white { background: var(--white); }
.lp-section--navy { background: var(--navy); }

.lp-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 0.75rem;
}

.lp-section--navy .lp-eyebrow { color: #93c5fd; }

.lp-section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.lp-section--navy .lp-section-title { color: var(--white); }

.lp-section-intro {
    font-size: 1rem;
    color: var(--slate-mid);
    line-height: 1.75;
    max-width: 580px;
}

.lp-section--navy .lp-section-intro { color: rgba(255,255,255,0.65); }

/* =============================================
   PROBLEM SECTION
   ============================================= */
.lp-problems-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.lp-problem-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.lp-problem-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
    transition: border-color var(--transition);
}

.lp-problem-item:hover { border-color: var(--blue-border); }

.lp-problem-item svg { width: 14px; height: 14px; color: var(--slate-light); flex-shrink: 0; margin-top: 2px; }

.lp-problem-panel {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    color: var(--white);
    position: sticky;
    top: 90px;
}

.lp-problem-panel h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.lp-panel-points {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.lp-panel-point {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.lp-panel-point-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* =============================================
   WHAT YOU'LL GET
   ============================================= */
.lp-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
}

.lp-deliverable {
    background: var(--white);
    padding: 1.75rem;
    transition: background var(--transition);
}

.lp-deliverable:hover { background: var(--blue-light); }

.lp-deliverable-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    transition: background var(--transition);
}

.lp-deliverable:hover .lp-deliverable-icon { background: rgba(2,117,211,0.15); }
.lp-deliverable-icon svg { width: 16px; height: 16px; color: var(--blue); }

.lp-deliverable h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.lp-deliverable p { font-size: 0.84rem; color: var(--slate-mid); line-height: 1.6; }

/* =============================================
   TYPICAL IMPROVEMENTS
   ============================================= */
.lp-improvements-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.lp-improvement {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--green-light);
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.5;
}

.lp-improvement svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* =============================================
   ABOUT
   ============================================= */
.lp-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lp-about-content p {
    font-size: 0.975rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 0.9rem;
}

.lp-about-points {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.lp-about-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--slate);
    font-weight: 500;
}

.lp-about-point svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }

.lp-about-visual {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.lp-about-quote {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.75;
    font-style: italic;
    padding-left: 1.1rem;
    border-left: 3px solid var(--blue);
    margin-bottom: 1.5rem;
}

.lp-about-meta { font-size: 0.82rem; color: var(--slate-light); }
.lp-about-meta strong { color: var(--navy); display: block; font-style: normal; font-size: 0.9rem; }

/* =============================================
   PROCESS
   ============================================= */
.lp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
}

.lp-process-step {
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03);
    transition: background var(--transition);
}

.lp-process-step:hover { background: rgba(255,255,255,0.06); }

.lp-step-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(2,117,211,0.4);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.lp-process-step h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.45rem; }
.lp-process-step p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.lp-process-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
}

/* =============================================
   FINAL CTA
   ============================================= */
.lp-final-cta { background: var(--bg); }

.lp-final-cta-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
}

.lp-final-cta-text h2 { margin-bottom: 0.75rem; }
.lp-final-cta-text p { font-size: 0.975rem; color: var(--slate-mid); line-height: 1.75; margin-bottom: 0.75rem; }

/* =============================================
   FOOTER — minimal
   ============================================= */
.lp-footer {
    background: var(--navy);
    padding-block: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lp-footer img { height: 28px; width: auto; opacity: 0.6; }
.lp-footer p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

.lp-footer-links { display: flex; gap: 1.25rem; }
.lp-footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--transition); }
.lp-footer-links a:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   NOTICE (form feedback)
   ============================================= */
.lp-notice {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.lp-notice--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.lp-notice--error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .lp-hero-inner,
    .lp-final-cta-inner { grid-template-columns: 1fr; }
    .lp-process-steps { grid-template-columns: repeat(2, 1fr); }
    .lp-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-improvements-inner { grid-template-columns: 1fr; }
    .lp-problems-inner,
    .lp-about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-problem-panel { position: static; }
}

@media (max-width: 600px) {
    .lp-header-trust { display: none; }
    .lp-process-steps { grid-template-columns: 1fr; }
    .lp-deliverables-grid { grid-template-columns: 1fr; }
    .lp-hero-reassurance { flex-direction: column; gap: 0.75rem; }
}
