/* ─── Clinicom — Landing Page ──────────────────────────────────────────────── */

:root {
    --green:       #2F6F5E;
    --green-dark:  #235448;
    --green-light: #EBF5F2;
    --gold:        #B89B5E;
    --gold-light:  #F9F3E7;
    --graphite:    #1C2130;
    --cream:       #F7F5F0;
    --cream-dark:  #EDE9E0;
    --white:       #FFFFFF;
    --text:        #1C2130;
    --muted:       #6B7280;
    --border:      #E5E7EB;
    --shadow:      0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:   0 16px 56px rgba(0,0,0,0.14);
    --radius:      12px;
    --radius-lg:   20px;
    --max-w:       1160px;
    --nav-h:       68px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── Container ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .3s, box-shadow .3s;
}
.lp-nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}
.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    transition: color .2s;
}
.lp-nav.scrolled .lp-logo { color: var(--graphite); }
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.lp-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color .15s;
}
.lp-nav-links a:hover { color: #fff; }
.lp-nav.scrolled .lp-nav-links a { color: var(--muted); }
.lp-nav.scrolled .lp-nav-links a:hover { color: var(--green); }
.lp-nav-cta { display: flex; align-items: center; gap: 10px; }

.btn-nav-login {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all .15s;
    display: inline-flex;
    align-items: center;
}
.btn-nav-login:hover { color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
.lp-nav.scrolled .btn-nav-login { color: var(--muted); border-color: var(--border); }
.lp-nav.scrolled .btn-nav-login:hover { color: var(--green); border-color: var(--green); background: var(--green-light); }

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background .15s, transform .1s;
    border: none;
    cursor: pointer;
}
.btn-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.lp-nav.scrolled .btn-nav-cta { background: var(--green); }

.lp-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #fff;
    border-radius: 6px;
}
.lp-nav.scrolled .lp-hamburger { color: var(--graphite); }

/* Mobile nav overlay */
.lp-nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 490;
    background: #fff;
    flex-direction: column;
    padding: 88px 24px 32px;
}
.lp-nav-mobile.open { display: flex; }
.lp-nav-mobile a {
    font-size: 18px;
    font-weight: 600;
    color: var(--graphite);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .15s;
}
.lp-nav-mobile a:hover { color: var(--green); }
.lp-nav-mobile .mobile-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}
.btn-full-primary { background: var(--green); color: #fff; }
.btn-full-ghost { border: 1px solid var(--border); color: var(--muted); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(150deg, #1a4a3c 0%, #2F6F5E 60%, #3D8B77 100%);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    padding: 100px 0 72px;
}
.lp-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(184,155,94,0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}
.lp-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 24px;
    font-weight: 500;
}
.lp-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    animation: dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(1.4); }
}
.lp-hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}
.lp-hero h1 em {
    font-style: normal;
    color: #FFD580;
}
.lp-hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.78);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 40px;
}
.lp-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--green);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    transition: transform .15s, box-shadow .15s;
    letter-spacing: -0.01em;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.28); }
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: background .15s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }
.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.lp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* Hero image side */
.lp-hero-visual { position: relative; }
.lp-hero-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}
.lp-hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 160px;
}
.lp-hero-card.card-tl { top: -18px; left: -18px; }
.lp-hero-card.card-br { bottom: -18px; right: -18px; }
.lp-hero-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-hero-card-icon.green { background: var(--green-light); color: var(--green); }
.lp-hero-card-icon.gold  { background: var(--gold-light);  color: var(--gold); }
.lp-hero-card-n {
    font-size: 22px; font-weight: 800; color: var(--graphite); line-height: 1;
}
.lp-hero-card-l {
    font-size: 11px; color: var(--muted); margin-top: 3px;
}

/* ════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════ */
.lp-stats {
    background: var(--graphite);
    padding: 52px 0;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.lp-stat-item { padding: 0 20px; position: relative; }
.lp-stat-item + .lp-stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 50%; transform: translateY(-50%);
    height: 36px; width: 1px;
    background: rgba(255,255,255,0.1);
}
.lp-stat-num {
    font-size: 42px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    will-change: contents;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.lp-stat-num .accent { color: var(--gold); }
.lp-stat-lbl { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ════════════════════════════════════════════
   SECTIONS BASE
════════════════════════════════════════════ */
.lp-section { padding: 96px 0; }
.lp-section-alt { background: var(--cream); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    width: 18px; height: 2px;
    background: var(--green);
    border-radius: 2px;
    display: block;
}
.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--graphite);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.section-title em { font-style: normal; color: var(--green); }
.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.65;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .eyebrow { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════
   FEATURE CARDS (6-grid)
════════════════════════════════════════════ */
.lp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
}
.lp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-light);
    color: var(--green);
    margin-bottom: 20px;
}
.lp-card h3 { font-size: 17px; font-weight: 700; color: var(--graphite); margin-bottom: 10px; }
.lp-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   FEATURE BLOCKS (alternating)
════════════════════════════════════════════ */
.lp-blocks { display: flex; flex-direction: column; gap: 96px; margin-top: 72px; }
.lp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}
.lp-block.reverse { direction: rtl; }
.lp-block.reverse > * { direction: ltr; }
.lp-block-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}
.lp-block-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-block-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.lp-block-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
}
.lp-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.lp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 14px;
    margin-top: 56px;
}
.lp-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}
.lp-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.lp-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.lp-gallery-item:hover img { transform: scale(1.06); }

/* ════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════ */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(16.66% + 12px);
    right: calc(16.66% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
    opacity: 0.22;
}
.lp-step { text-align: center; }
.lp-step-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 18px rgba(47,111,94,0.38);
    position: relative; z-index: 1;
}
.lp-step h3 { font-size: 17px; font-weight: 700; color: var(--graphite); margin-bottom: 10px; }
.lp-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.lp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
}
.lp-testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.lp-testimonial-stars { color: #F59E0B; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.lp-testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 22px; }
.lp-testimonial-author { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.lp-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-testimonial-name { font-size: 14px; font-weight: 700; color: var(--graphite); }
.lp-testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.lp-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
    align-items: start;
}
.lp-plan {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.lp-plan.featured {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(47,111,94,0.08), var(--shadow-lg);
    transform: scale(1.03);
}
.lp-plan-badge {
    position: absolute;
    top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.lp-plan-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 12px; }
.lp-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.lp-plan-currency { font-size: 20px; font-weight: 700; color: var(--graphite); margin-top: 6px; }
.lp-plan-value { font-size: 46px; font-weight: 800; color: var(--graphite); line-height: 1; letter-spacing: -0.03em; }
.lp-plan-period { font-size: 14px; color: var(--muted); }
.lp-plan-custom { font-size: 28px; font-weight: 800; color: var(--graphite); margin-bottom: 6px; }
.lp-plan-desc { font-size: 13.5px; color: var(--muted); padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 16px 0; }
.lp-plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.lp-plan-feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; color: var(--text);
}
.lp-plan-feat svg { color: var(--green); flex-shrink: 0; }

.btn-plan {
    display: block; width: 100%; text-align: center;
    padding: 13px; border-radius: 9px;
    font-size: 14px; font-weight: 700;
    transition: all .15s; cursor: pointer;
    font-family: inherit; border: none;
}
.btn-plan-outline {
    border: 1.5px solid var(--green);
    color: var(--green);
    background: transparent;
}
.btn-plan-outline:hover { background: var(--green); color: #fff; }
.btn-plan-fill { background: var(--green); color: #fff; }
.btn-plan-fill:hover { background: var(--green-dark); }

/* ════════════════════════════════════════════
   BLOG GRID
════════════════════════════════════════════ */
.lp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px;
}
.lp-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.lp-blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-blog-card-img { aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.lp-blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.lp-blog-card:hover .lp-blog-card-img img { transform: scale(1.07); }
.lp-blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.lp-blog-cat {
    display: inline-block;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--green); background: var(--green-light);
    padding: 3px 10px; border-radius: 100px;
    margin-bottom: 12px;
}
.lp-blog-card h3 {
    font-size: 16px; font-weight: 700; color: var(--graphite);
    line-height: 1.4; margin-bottom: 10px;
    transition: color .15s;
}
.lp-blog-card:hover h3 { color: var(--green); }
.lp-blog-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.lp-blog-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--muted);
    padding-top: 16px; border-top: 1px solid var(--border);
}
.lp-read-more {
    color: var(--green); font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; transition: gap .15s;
}
.lp-read-more:hover { gap: 8px; }

/* Blog listing page */
.lp-blog-hero { background: linear-gradient(135deg, #1a4a3c, #2F6F5E); padding: 120px 0 72px; }
.lp-blog-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 12px; }
.lp-blog-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 520px; }
.lp-blog-hero .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

.lp-blog-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
    padding: 72px 0 96px;
}

/* Blog post */
.lp-post-hero { background: var(--graphite); padding: 120px 0 64px; }
.lp-post-hero .container { max-width: 780px; }
.lp-post-cat-link {
    display: inline-block;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold); margin-bottom: 18px;
    transition: opacity .15s;
}
.lp-post-cat-link:hover { opacity: 0.75; }
.lp-post-hero h1 {
    font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: #fff;
    line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 20px;
}
.lp-post-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); }
.lp-post-meta span { display: flex; align-items: center; gap: 6px; }

.lp-post-body-wrap { padding: 64px 0 96px; }
.lp-post-body-wrap .container { max-width: 780px; }
.lp-post-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; aspect-ratio: 16/7; }
.lp-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.lp-post-content { font-size: 16.5px; color: #374151; line-height: 1.78; }
.lp-post-content h2 { font-size: 24px; font-weight: 800; color: var(--graphite); margin: 40px 0 16px; letter-spacing: -0.015em; }
.lp-post-content h3 { font-size: 19px; font-weight: 700; color: var(--graphite); margin: 32px 0 12px; }
.lp-post-content p { margin-bottom: 22px; }
.lp-post-content ul, .lp-post-content ol { padding-left: 24px; margin-bottom: 22px; }
.lp-post-content li { margin-bottom: 10px; }
.lp-post-content strong { color: var(--graphite); font-weight: 700; }
.lp-post-content blockquote {
    border-left: 4px solid var(--green);
    padding: 18px 24px;
    background: var(--green-light);
    border-radius: 0 10px 10px 0;
    margin: 32px 0;
    font-size: 17px; color: var(--graphite); font-weight: 500; font-style: italic;
}
.lp-post-cta {
    margin-top: 56px;
    background: linear-gradient(135deg, #1a4a3c, #2F6F5E);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: #fff;
}
.lp-post-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.lp-post-cta p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 15px; }

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.lp-cta-section {
    background: linear-gradient(150deg, #1a4a3c 0%, #2F6F5E 70%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.lp-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.lp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(184,155,94,0.08);
}
.lp-cta-section h2 {
    font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; margin-bottom: 16px; position: relative; z-index: 1;
}
.lp-cta-section p {
    font-size: 17px; color: rgba(255,255,255,0.72);
    max-width: 500px; margin: 0 auto 40px; line-height: 1.65; position: relative; z-index: 1;
}
.lp-cta-btns {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; position: relative; z-index: 1;
}

/* ════════════════════════════════════════════
   CONTACT / FORMS
════════════════════════════════════════════ */
.lp-page-hero { background: linear-gradient(135deg, #1a4a3c, #2F6F5E); padding: 120px 0 72px; text-align: center; }
.lp-page-hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.lp-page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto; }

.lp-form-section { padding: 72px 0 96px; }
.lp-form-wrap { max-width: 600px; margin: 0 auto; }
.lp-form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow);
}
.lp-form-title { font-size: 22px; font-weight: 800; color: var(--graphite); margin-bottom: 6px; letter-spacing: -0.01em; }
.lp-form-desc { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.lp-field { margin-bottom: 20px; }
.lp-label { display: block; font-size: 13px; font-weight: 600; color: var(--graphite); margin-bottom: 6px; }
.lp-input, .lp-select, .lp-textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: 14px; color: var(--text); background: var(--white);
    font-family: inherit; transition: border-color .15s, box-shadow .15s;
    appearance: none;
}
.lp-input:focus, .lp-select:focus, .lp-textarea:focus {
    outline: none; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(47,111,94,0.12);
}
.lp-textarea { resize: vertical; min-height: 120px; }
.lp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.lp-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
    max-width: 960px; margin: 0 auto;
}
.lp-contact-info h3 { font-size: 22px; font-weight: 800; color: var(--graphite); margin-bottom: 16px; }
.lp-contact-info p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.lp-contact-items { display: flex; flex-direction: column; gap: 20px; }
.lp-contact-item { display: flex; align-items: flex-start; gap: 14px; }
.lp-contact-item-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-light); color: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-contact-item-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 3px; }
.lp-contact-item-value { font-size: 14px; font-weight: 600; color: var(--graphite); }

/* ════════════════════════════════════════════
   ONBOARDING MULTI-STEP
════════════════════════════════════════════ */
.lp-onboarding-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 36px; }
.lp-ob-step {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--muted);
}
.lp-ob-step.active { color: var(--green); }
.lp-ob-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2px solid var(--border); background: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--muted);
    transition: all .2s;
}
.lp-ob-step.active .lp-ob-step-num { border-color: var(--green); background: var(--green); color: #fff; }
.lp-ob-step.done .lp-ob-step-num { border-color: var(--green); background: var(--green); color: #fff; }
.lp-ob-divider { flex: 1; height: 1px; background: var(--border); max-width: 40px; }

.lp-ob-panel { display: none; }
.lp-ob-panel.active { display: block; }

/* ════════════════════════════════════════════
   PRIVACY / LEGAL
════════════════════════════════════════════ */
.lp-legal { padding: 72px 0 96px; }
.lp-legal .container { max-width: 760px; }
.lp-legal h2 { font-size: 24px; font-weight: 800; color: var(--graphite); margin: 40px 0 14px; letter-spacing: -0.01em; }
.lp-legal h2:first-child { margin-top: 0; }
.lp-legal h3 { font-size: 18px; font-weight: 700; color: var(--graphite); margin: 28px 0 10px; }
.lp-legal p  { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 18px; }
.lp-legal ul { padding-left: 22px; margin-bottom: 18px; }
.lp-legal li { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 8px; }
.lp-legal strong { color: var(--graphite); font-weight: 700; }
.lp-legal-toc {
    background: var(--cream); border: 1px solid var(--cream-dark);
    border-radius: var(--radius); padding: 24px 28px; margin-bottom: 48px;
}
.lp-legal-toc h4 { font-size: 14px; font-weight: 700; color: var(--graphite); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-legal-toc ol { padding-left: 18px; }
.lp-legal-toc li { font-size: 14px; margin-bottom: 6px; }
.lp-legal-toc a { color: var(--green); font-weight: 500; transition: opacity .15s; }
.lp-legal-toc a:hover { opacity: 0.75; text-decoration: underline; }
.lp-legal-section { scroll-margin-top: 88px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.lp-footer { background: var(--graphite); padding: 72px 0 32px; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.lp-footer-brand { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.lp-footer-about { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 260px; margin-bottom: 22px; }
.lp-footer-social { display: flex; gap: 10px; }
.lp-footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: background .15s, color .15s;
}
.lp-footer-social a:hover { background: var(--green); color: #fff; }
.lp-footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.lp-footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.lp-footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.42); transition: color .15s; }
.lp-footer-col a:hover { color: rgba(255,255,255,0.9); }
.lp-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.28); }
.lp-footer-legal { display: flex; gap: 20px; }
.lp-footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.28); transition: color .15s; }
.lp-footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════ */
.wa-float-wrap {
    position: fixed; bottom: 28px; right: 28px;
    z-index: 600; display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-float-tip {
    background: var(--graphite); color: #fff;
    font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 8px;
    white-space: nowrap; box-shadow: var(--shadow);
    opacity: 0; transform: translateX(10px);
    transition: opacity .2s, transform .2s; pointer-events: none;
}
.wa-float-wrap:hover .wa-float-tip { opacity: 1; transform: translateX(0); }
.wa-float-btn {
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.5);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.wa-float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ════════════════════════════════════════════
   UTILITIES
════════════════════════════════════════════ */
.mt-btn { margin-top: 32px; display: inline-flex; }
.btn-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 30px; border-radius: 10px;
    font-size: 16px; font-weight: 700;
    cursor: pointer; transition: all .15s; border: none; font-family: inherit;
}
.btn-lg-green { background: var(--green); color: #fff; }
.btn-lg-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(47,111,94,0.35); }
.btn-lg-white { background: #fff; color: var(--green); box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
.btn-lg-white:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
.btn-lg-ghost { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.28); color: #fff; }
.btn-lg-ghost:hover { background: rgba(255,255,255,0.2); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .lp-hero-inner { gap: 40px; }
    .lp-block { gap: 48px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .lp-nav-links, .lp-nav-cta .btn-nav-login { display: none; }
    .lp-hamburger { display: flex; }

    .lp-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
    .lp-hero-sub { max-width: 100%; }
    .lp-hero-actions { justify-content: center; }
    .lp-hero-trust  { justify-content: center; }
    .lp-hero-visual  { display: none; }

    .lp-stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .lp-stat-item::before { display: none; }
    .lp-stat-item { padding: 0 8px; overflow: hidden; }
    .lp-stat-num { font-size: 28px; letter-spacing: -0.02em; white-space: nowrap; }
    .lp-stat-lbl { font-size: 12px; }

    .lp-cards-grid { grid-template-columns: 1fr; }
    .lp-block { grid-template-columns: 1fr; direction: ltr !important; gap: 32px; }
    .lp-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .lp-gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-steps::before { display: none; }
    .lp-testimonials { grid-template-columns: 1fr; }
    .lp-pricing { grid-template-columns: 1fr; }
    .lp-plan.featured { transform: none; }
    .lp-blog-grid { grid-template-columns: 1fr; }
    .lp-blog-full-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-field-row { grid-template-columns: 1fr; }
    .lp-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .lp-form-card { padding: 28px 20px; }
    .lp-section { padding: 64px 0; }
    .lp-blog-hero .container { flex-direction: column; }
}

@media (max-width: 480px) {
    .lp-hero h1 { font-size: 30px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .lp-hero-actions { flex-direction: column; }
    .lp-cta-btns { flex-direction: column; }
    .lp-cta-btns .btn-lg { width: 100%; justify-content: center; }
}
