/* ================================================================
   IDEOtics Landing Page — style.css
   Includes: base resets, navbar, section helpers, dashboard base,
             landing premium layer (lp-* system)
   ================================================================ */

/* ---- Base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Sora', 'Roboto', system-ui, -apple-system, sans-serif;
    color: #2c322f;
    background: #fff;
    margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ---- Navbar -------------------------------------------------- */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 15, 31, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.lp-nav-bar { padding: 14px 0; }
.lp-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lp-logo img { height: 38px; width: auto; }
.lp-nav-links { display: flex; align-items: center; gap: 24px; }
.lp-nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 8px 20px;
}
.lp-nav-link:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* ---- Section helpers ----------------------------------------- */
.section-inner { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 30px; }
.section-title h5 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    margin: 0;
    color: #14181a;
}
.lp-section-grey { background: #f5f8f5; }

/* ---- Contact / greenblock overrides -------------------------- */
.greenblock { background: #24a828; padding: 50px 0; }
.greenblock img { display: block; max-width: 100%; height: auto; }
.white { color: #fff !important; }

/* ---- Buttons (non-lp) ---------------------------------------- */
.btn-new-primary {
    color: #fff;
    background: linear-gradient(135deg, #34d058, #1c8a1f);
    border: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    padding: 12px 30px;
    box-shadow: 0 12px 28px -10px rgba(36,168,40,0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.btn-new-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px -10px rgba(36,168,40,0.72);
}

/* ================================================================
   IDEOtics — LANDING PAGE PREMIUM LAYER (lp-* system)
   ================================================================ */

:root {
    --lp-green:        #24a828;
    --lp-green-bright: #34d058;
    --lp-green-deep:   #1c8a1f;
    --lp-green-glow:   rgba(36, 168, 40, 0.45);
    --lp-navy:         #0d0f1f;
    --lp-navy-2:       #16182c;
    --lp-navy-soft:    #1f2238;
    --lp-ink:          #14181a;
    --lp-text:         #2c322f;
    --lp-muted:        #5d6661;
    --lp-bg:           #ffffff;
    --lp-bg-soft:      #f5f8f5;
    --lp-border:       #e6ece6;
    --lp-radius:       16px;
    --lp-radius-sm:    10px;
    --lp-radius-pill:  999px;
    --lp-shadow-sm:    0 2px 8px rgba(16, 24, 16, 0.06);
    --lp-shadow-md:    0 10px 30px rgba(16, 24, 16, 0.08);
    --lp-shadow-lg:    0 24px 60px rgba(13, 15, 31, 0.18);
    --lp-shadow-glow:  0 14px 40px rgba(36, 168, 40, 0.32);
    --lp-font-display: 'Sora', 'Roboto', system-ui, -apple-system, sans-serif;
    --lp-ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* Display typography */
.lp-hero-headline,
.lp-section-title,
.lp-problem-title,
.lp-rev-headline,
.lp-story-title,
.lp-about-heading,
.lp-final-cta-title,
.lp-stat-number,
.lp-journey-title,
.lp-cap-title,
.lp-eyebrow {
    font-family: var(--lp-font-display);
    letter-spacing: -0.02em;
}

/* Section rhythm */
.lp-section { padding: 96px 0; }
.lp-section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.18;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    color: #14181a;
}
.lp-section-sub {
    font-size: 17px;
    color: var(--lp-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Eyebrow */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lp-green-deep);
    margin-bottom: 18px;
}
.lp-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--lp-green);
    border-radius: 2px;
}
.lp-eyebrow-center { justify-content: center; }

/* ================================================================
   BUTTONS
   ================================================================ */
.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--lp-green) 0%, var(--lp-green-deep) 100%);
    border: none !important;
    border-radius: var(--lp-radius-pill);
    padding: 14px 30px !important;
    font-size: 16px !important;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
    box-shadow: var(--lp-shadow-glow);
    transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease), filter 0.25s var(--lp-ease);
}
.lp-btn-primary:hover,
.lp-btn-primary:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(36, 168, 40, 0.42);
    filter: brightness(1.05);
}
.lp-btn-primary .lp-btn-arrow { transition: transform 0.25s var(--lp-ease); }
.lp-btn-primary:hover .lp-btn-arrow { transform: translateX(4px); }

.lp-btn-white {
    background: #fff !important;
    color: var(--lp-green-deep) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.lp-btn-white:hover,
.lp-btn-white:focus {
    background: #f3fff3 !important;
    color: var(--lp-green-deep) !important;
}

.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--lp-radius-pill);
    padding: 13px 26px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    transition: background 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease), transform 0.25s var(--lp-ease);
}
.lp-btn-ghost:hover,
.lp-btn-ghost:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ================================================================
   HERO
   ================================================================ */
.lp-hero {
    position: relative;
    min-height: 92vh;
    background:
        linear-gradient(115deg, rgba(8, 10, 20, 0.92) 0%, rgba(10, 14, 24, 0.74) 46%, rgba(15, 35, 18, 0.55) 100%),
        url('../images/lp-og-image.png') center center / cover no-repeat;
    overflow: hidden;
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(900px 520px at 78% 28%, var(--lp-green-glow), transparent 60%),
        radial-gradient(700px 480px at 8% 88%, rgba(36, 168, 40, 0.16), transparent 60%);
    pointer-events: none;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 78%);
    pointer-events: none;
}
.lp-hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 2px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(52, 208, 88, 0.55), transparent);
    box-shadow: 0 0 24px rgba(52, 208, 88, 0.6);
    animation: lp-scan 7s linear infinite;
    pointer-events: none;
}
@keyframes lp-scan {
    0%   { transform: translateY(0); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(92vh); opacity: 0; }
}
.lp-hero-content {
    position: relative;
    z-index: 2;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 90px;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #d6ffd9;
    background: rgba(36, 168, 40, 0.16);
    border: 1px solid rgba(52, 208, 88, 0.4);
    border-radius: var(--lp-radius-pill);
    padding: 7px 16px;
    margin-bottom: 24px;
}
.lp-hero-badge .lp-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-green-bright);
    box-shadow: 0 0 0 0 rgba(52, 208, 88, 0.7);
    animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52, 208, 88, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(52, 208, 88, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 208, 88, 0); }
}
.lp-hero-headline {
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 22px;
    color: #fff;
}
.lp-hero-headline .lp-accent {
    background: linear-gradient(120deg, var(--lp-green-bright), #8af29a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 620px;
}
.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.lp-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--lp-radius-pill);
    padding: 7px 14px;
    backdrop-filter: blur(6px);
}
.lp-chip svg { color: var(--lp-green-bright); flex-shrink: 0; }

/* Hero video */
.lp-hero-video-frame {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(150deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--lp-shadow-lg);
    backdrop-filter: blur(8px);
}
.lp-hero-video-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(150deg, rgba(52,208,88,0.6), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.lp-hero-video { border-radius: 10px; box-shadow: none; display: block; }

/* Scroll cue */
.lp-scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.lp-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 12px;
    position: relative;
}
.lp-scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 7px;
    background: var(--lp-green-bright);
    border-radius: 2px;
    animation: lp-scroll-dot 1.8s infinite;
}
@keyframes lp-scroll-dot {
    0%   { opacity: 0; transform: translate(-50%, 0); }
    40%  { opacity: 1; }
    80%  { opacity: 0; transform: translate(-50%, 12px); }
    100% { opacity: 0; }
}
@media (max-width: 991px) {
    .lp-hero, .lp-hero-content { min-height: auto; }
    .lp-hero-content { padding-top: 96px; padding-bottom: 64px; }
    .lp-scroll-cue { display: none; }
}

/* ================================================================
   PROBLEM
   ================================================================ */
.lp-problem { padding: 100px 0 88px; }
.lp-problem-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
}
.lp-problem-body {
    font-size: 18px;
    line-height: 1.85;
    color: #3a423d;
}
.lp-problem-pullquote {
    position: relative;
    padding: 26px 30px 26px 64px;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
    font-family: var(--lp-font-display);
    color: #14181a;
    background: linear-gradient(135deg, #f2fdf2 0%, #eaf8ea 100%);
    border: 1px solid #d2ecd2;
    border-radius: 14px;
    margin-top: 40px;
}
.lp-problem-pullquote::before {
    content: '\201C';
    position: absolute;
    left: 22px;
    top: 6px;
    font-size: 56px;
    line-height: 1;
    color: var(--lp-green);
    opacity: 0.5;
    font-family: Georgia, serif;
}

/* ================================================================
   REVELATION
   ================================================================ */
.lp-revelation {
    position: relative;
    background: var(--lp-navy);
    padding: 104px 0;
    overflow: hidden;
}
.lp-revelation::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(720px 420px at 50% 0%, rgba(36,168,40,0.22), transparent 65%),
        radial-gradient(500px 360px at 85% 100%, rgba(36,168,40,0.1), transparent 60%);
    pointer-events: none;
}
.lp-revelation .container { position: relative; z-index: 1; }
.lp-rev-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--lp-green-bright);
    margin-bottom: 12px;
}
.lp-rev-headline {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
}
.lp-rev-sub { font-size: 18px; color: rgba(255,255,255,0.78); }

/* ================================================================
   STORY BLOCKS
   ================================================================ */
.lp-story-block {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 72px 0;
    border-bottom: 1px solid #eef1ee;
}
.lp-story-left  { flex-direction: row; }
.lp-story-right { flex-direction: row-reverse; }
.lp-story-text  { flex: 1; min-width: 0; }
.lp-story-label {
    display: inline-block;
    font-family: var(--lp-font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #ecfdec, #ddf6dd);
    border: 1px solid #c3e6c3;
    color: var(--lp-green-deep);
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.lp-story-title {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.22;
    color: #14181a;
    margin-bottom: 16px;
}
.lp-story-text p { font-size: 16px; line-height: 1.85; color: #444b46; }

.lp-img-visual { flex: 0 0 440px; }
.lp-annotated-img {
    position: relative;
    border-radius: 16px;
    box-shadow: var(--lp-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s var(--lp-ease), box-shadow 0.4s var(--lp-ease);
    overflow: hidden;
}
.lp-story-block:hover .lp-annotated-img {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(13,15,31,0.24);
}
.lp-visual-img { border-radius: 16px; width: 100%; }
.lp-annotation {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 6px 18px rgba(0,0,0,0.32);
    line-height: 1.4;
    max-width: 180px;
}
.lp-ann-top-left    { top: 12px; left: 12px; }
.lp-ann-top-right   { top: 12px; right: 12px; }
.lp-ann-bottom-right{ bottom: 12px; right: 12px; }
.lp-ann-bottom-left { bottom: 12px; left: 12px; }
.lp-ann-bottom-center { bottom: 12px; left: 50%; transform: translateX(-50%); }
.lp-ann-green  { background: rgba(20,50,22,0.85); color: #8af29a; }
.lp-ann-red    { background: rgba(50,10,10,0.85); color: #f98989; }
.lp-ann-blue   { background: rgba(10,20,50,0.85); color: #89beff; }
.lp-ann-orange { background: rgba(50,30,5,0.85);  color: #ffca70; }
.lp-ann-dark   { background: rgba(14,18,30,0.9);  color: #e0e6e1; }
.lp-ann-arrow  { font-size: 11px; margin-top: 4px; opacity: 0.85; }
.lp-mini-caption { margin-top: 14px; font-size: 12px; color: var(--lp-muted); font-style: italic; text-align: center; }

@media (max-width: 991px) {
    .lp-story-block,
    .lp-story-left,
    .lp-story-right { flex-direction: column; gap: 36px; }
    .lp-img-visual { flex: none; width: 100%; }
}

/* ================================================================
   POS INTEGRATION
   ================================================================ */
.lp-pos-section { padding: 100px 0; }
.lp-pos-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(160deg, #fbfffb 0%, #f1f8f1 100%);
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--lp-shadow-md);
}
.lp-pos-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.25s var(--lp-ease);
    background: #fff;
    color: #2c322f;
    border: 1px solid var(--lp-border);
}
.lp-pos-pill:hover { transform: translateY(-2px); }
.lp-pos-result {
    background: linear-gradient(135deg, var(--lp-green) 0%, var(--lp-green-deep) 100%);
    box-shadow: var(--lp-shadow-glow);
    color: #fff !important;
    border: none;
}
.lp-pos-plus, .lp-pos-equals {
    font-size: 24px;
    padding: 6px 0;
    opacity: 0.65;
    font-weight: 700;
    text-align: center;
    color: var(--lp-green-deep);
}

/* ================================================================
   PILOT JOURNEY
   ================================================================ */
.lp-journey-steps {
    position: relative;
    padding-left: 0;
    max-width: 760px;
    margin: 0 auto;
}
.lp-journey-step {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 22px;
    box-shadow: var(--lp-shadow-sm);
    transition: transform 0.25s var(--lp-ease), box-shadow 0.25s var(--lp-ease);
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.lp-journey-step:hover {
    transform: translateX(6px);
    box-shadow: var(--lp-shadow-md);
}
.lp-journey-day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lp-green) 0%, var(--lp-green-deep) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(36,168,40,0.3);
    white-space: nowrap;
}
.lp-journey-title {
    font-size: 18px;
    font-weight: 700;
    color: #14181a;
    margin: 0 0 6px;
}
.lp-journey-desc { font-size: 15px; color: #4a524d; margin: 0; line-height: 1.7; }

/* ================================================================
   STATS BANNER
   ================================================================ */
.lp-stats-banner {
    position: relative;
    background: linear-gradient(135deg, var(--lp-navy) 0%, #131a2b 100%);
    padding: 72px 0;
    overflow: hidden;
}
.lp-stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(640px 320px at 50% 120%, rgba(36,168,40,0.22), transparent 60%);
    pointer-events: none;
}
.lp-stats-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.lp-stat {
    flex: 1;
    min-width: 200px;
    padding: 8px 32px;
}
.lp-stat + .lp-stat { border-left: 1px solid rgba(255,255,255,0.1); }
.lp-stat-number {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    background: linear-gradient(120deg, var(--lp-green-bright), #9af0a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.lp-stat-label { font-size: 14px; color: rgba(255,255,255,0.6); }
@media (max-width: 767px) {
    .lp-stat + .lp-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; margin-top: 28px; }
}

/* ================================================================
   ABOUT
   ================================================================ */
.lp-about-section { padding: 100px 0; }
.lp-about-heading { font-size: clamp(26px, 3vw, 38px); font-weight: 800; line-height: 1.15; color: #14181a; }
.lp-about-text { font-size: 17px; line-height: 1.85; color: #3f4641; }

/* ================================================================
   FAQ
   ================================================================ */
.lp-faq-wrap { max-width: 820px; }
.lp-faq-item {
    border: 1px solid var(--lp-border) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: var(--lp-shadow-sm);
    transition: box-shadow 0.25s var(--lp-ease), border-color 0.25s var(--lp-ease);
    overflow: hidden;
}
.lp-faq-item:hover { border-color: #cfe6cf !important; box-shadow: var(--lp-shadow-md); }
.lp-faq-btn {
    width: 100%;
    text-align: left;
    font-family: var(--lp-font-display);
    font-size: 16.5px;
    font-weight: 600;
    padding: 20px 26px;
    color: #16191b;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lp-faq-btn::after {
    content: '+';
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eafaea;
    color: var(--lp-green-deep);
    font-size: 18px;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.25s var(--lp-ease), background 0.25s var(--lp-ease);
}
.lp-faq-btn[aria-expanded="true"]::after {
    content: '-';
    background: var(--lp-green);
    color: #fff;
}
.accordion-button { box-shadow: none !important; }
.accordion-button:not(.collapsed) { background: #fff; color: #16191b; }
.lp-faq-body p { font-size: 15.5px; line-height: 1.8; color: #3a423d; margin: 0; }

/* ================================================================
   FINAL CTA
   ================================================================ */
.lp-final-cta {
    position: relative;
    background: linear-gradient(135deg, var(--lp-navy) 0%, #11321a 100%);
    padding: 110px 0;
    overflow: hidden;
}
.lp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(640px 360px at 50% 0%, rgba(36,168,40,0.35), transparent 60%),
        radial-gradient(500px 300px at 15% 100%, rgba(52,208,88,0.16), transparent 60%);
    pointer-events: none;
}
.lp-final-cta .container { position: relative; z-index: 1; }
.lp-final-cta-title { font-size: clamp(28px, 3.6vw, 46px); font-weight: 800; line-height: 1.14; color: #fff; margin-bottom: 20px; }
.lp-final-cta-sub { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 36px; }

/* ================================================================
   CONTACT SECTION (greenblock.white override)
   ================================================================ */
.greenblock.white {
    background: linear-gradient(180deg, #f7faf7 0%, #eef4ef 100%);
    padding: 90px 0 100px;
    position: relative;
    border-top: 1px solid rgba(36,168,40,0.14);
}
.greenblock.white::before {
    content: "";
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--lp-green), var(--lp-green-bright));
}
.greenblock.white .section-header { text-align: center; margin-bottom: 30px; }
.greenblock.white .section-title h5,
.greenblock.white .section-title h5.white,
.greenblock.white .white {
    color: var(--lp-ink) !important;
}
.greenblock.white .section-title h5 {
    font-family: var(--lp-font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.greenblock.white .contact-us {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(20,22,31,0.08);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--lp-shadow-lg);
}
.greenblock.white .form-label {
    color: #3a4252;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
}
.greenblock.white .form-control {
    background: #fff;
    border: 1px solid #d7dde5;
    border-radius: 12px;
    color: var(--lp-ink);
    padding: 11px 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.greenblock.white .form-control::placeholder { color: #9aa3ad; }
.greenblock.white .form-control:focus {
    border-color: var(--lp-green);
    box-shadow: 0 0 0 4px rgba(36,168,40,0.15);
    outline: none;
}
@media (max-width: 575.98px) {
    .greenblock.white { padding: 64px 0 72px; }
    .greenblock.white .contact-us { padding: 24px 18px; }
}

/* ================================================================
   MOTION / ACCESSIBILITY
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    .lp-hero::after,
    .lp-hero-badge .lp-pulse,
    .lp-scroll-mouse::after { animation: none !important; }
    [data-aos] { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 575px) {
    .lp-section { padding: 64px 0; }
    .lp-problem-pullquote { font-size: 18px; padding: 22px 22px 22px 54px; }
}
