@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ==========================================================
   LBT2 CSS VARIABLES — GREEN TRUST DESIGN SYSTEM
   ========================================================== */

.lbt2-template {
    --lbt2-green:        #22c55e;
    --lbt2-green-hover:  #16a34a;
    --lbt2-green-light:  #dcfce7;
    --lbt2-green-border: #bbf7d0;
    --lbt2-slate-900:    #0f172a;
    --lbt2-slate-700:    #334155;
    --lbt2-slate-600:    #475569;
    --lbt2-slate-400:    #94a3b8;
    --lbt2-slate-200:    #e2e8f0;
    --lbt2-slate-100:    #f1f5f9;
    --lbt2-slate-50:     #f8fafc;
    --lbt2-white:        #ffffff;
    --lbt2-red:          #dc2626;
    --lbt2-radius-card:  16px;
    --lbt2-radius-btn:   12px;
    --lbt2-shadow-card:  0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(34,197,94,.08);
    --lbt2-shadow-green: 0 4px 20px rgba(34,197,94,.25);
    --lbt2-font-head:    'Plus Jakarta Sans', -apple-system, sans-serif;
    --lbt2-font-body:    'Inter', -apple-system, sans-serif;
    font-family:         var(--lbt2-font-body);
    color:               var(--lbt2-slate-700);
    line-height:         1.65;
}

/* ==========================================================
   BASE RESETS
   ========================================================== */

.lbt2-template *,
.lbt2-template *::before,
.lbt2-template *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lbt2-template a { color: var(--lbt2-green); text-decoration: none; }
.lbt2-template a:hover { color: var(--lbt2-green-hover); }
.lbt2-template ul { list-style: none; }
.lbt2-template p { color: var(--lbt2-slate-600); }

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

.lbt2-template .lbt2-heading {
    font-family: var(--lbt2-font-head);
    font-weight: 800;
    color: var(--lbt2-slate-900);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.lbt2-template h2.lbt2-heading { font-size: clamp(26px, 4vw, 40px); }
.lbt2-template h3 {
    font-family: var(--lbt2-font-head);
    font-weight: 700;
    color: var(--lbt2-slate-900);
    line-height: 1.3;
}

.lbt2-template .lbt2-section-label {
    display: block;
    width: fit-content;
    margin: 0 auto 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lbt2-green-hover);
    background: var(--lbt2-green-light);
    border: 1px solid var(--lbt2-green-border);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */

.lbt2-template .lbt2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 40px;
    font-family: var(--lbt2-font-head);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--lbt2-radius-btn);
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

@keyframes lbt2Pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
    60%       { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
}

.lbt2-template .lbt2-btn-primary {
    background: var(--lbt2-green);
    color: #fff;
    animation: lbt2Pulse 2.8s ease-in-out infinite;
    box-shadow: var(--lbt2-shadow-green);
}
.lbt2-template .lbt2-btn-primary:hover {
    background: var(--lbt2-green-hover);
    animation: none;
    box-shadow: 0 6px 28px rgba(34,197,94,.4);
    transform: translateY(-2px);
    color: #fff;
}

.lbt2-template .lbt2-btn-cta {
    background: #fff;
    color: var(--lbt2-green-hover);
    font-size: 17px;
    padding: 18px 48px;
}
.lbt2-template .lbt2-btn-cta:hover {
    background: var(--lbt2-green-light);
    transform: translateY(-2px);
    color: var(--lbt2-green-hover);
}

/* ==========================================================
   SECTION BACKGROUNDS
   ========================================================== */

.lbt2-template .lbt2-bg-white    { background: var(--lbt2-white); }
.lbt2-template .lbt2-bg-light    { background: var(--lbt2-slate-50); }
.lbt2-template .lbt2-bg-dark     { background: #0f172a; }
.lbt2-template .lbt2-bg-green    { background: var(--lbt2-green); }
.lbt2-template .lbt2-bg-gradient {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

/* ==========================================================
   SECTION INNER — base layout
   ========================================================== */

.lbt2-template .lbt2-section-inner {
    position: relative;
    padding: 80px 0;
}

.lbt2-template .lbt2-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================
   SCROLL REVEAL ANIMATION
   =========================================================
   IMPORTANT: Only opacity is animated — NO transform.
   A transform on .lbt2-section would create a new containing
   block, breaking overflow:hidden on .lbt2-section-inner and
   causing hero particles to escape into adjacent sections.

   First section gets lbt2-visible server-side (always above fold).
   Other sections reveal as they enter viewport via IntersectionObserver.
   CSS animation-delay fallback: sections become visible after 2s
   even if JS fails, to prevent permanently invisible content.
   ========================================================== */

.lbt2-template .lbt2-section {
    opacity: 0;
    transition: opacity .65s cubic-bezier(.22,1,.36,1);
    /* Fallback: if JS never runs, fade in after 2 seconds */
    animation: lbt2FadeInFallback 0.65s ease 2s forwards;
}
@keyframes lbt2FadeInFallback {
    to { opacity: 1; }
}
.lbt2-template .lbt2-section.lbt2-visible {
    opacity: 1;
    animation: none;
}

/* ==========================================================
   1. HERO
   ========================================================== */

.lbt2-template .lbt2-s-hero {
    text-align: center;
}

.lbt2-template .lbt2-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.lbt2-template .lbt2-hero-h1 {
    font-family: var(--lbt2-font-head);
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 900;
    color: var(--lbt2-slate-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.lbt2-template .lbt2-hero-h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 5px;
    background: var(--lbt2-green);
    border-radius: 3px;
    margin: 16px auto 0;
}

.lbt2-template .lbt2-hero-h2 {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--lbt2-slate-600);
    margin-bottom: 16px;
    font-weight: 500;
}

.lbt2-template .lbt2-hero-text {
    font-size: 16px;
    color: var(--lbt2-slate-500, #64748b);
    max-width: 560px;
    margin: 0 auto 36px;
}

.lbt2-template .lbt2-hero-cta {
    margin-bottom: 32px;
}

.lbt2-template .lbt2-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lbt2-template .lbt2-hero-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--lbt2-slate-700);
    background: var(--lbt2-white);
    border: 1.5px solid var(--lbt2-slate-200);
    border-radius: 100px;
    padding: 6px 16px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .lbt2-template .lbt2-hero-h1::after { margin: 12px auto 0; }
    .lbt2-template .lbt2-btn-primary { width: 100%; }
    .lbt2-template .lbt2-hero-badge { font-size: 12px; }
}

/* ==========================================================
   HERO — SOCIAL MEDIA FLOATING PARTICLES
   ========================================================== */

/*
 * Speed & opacity are controlled via CSS custom properties injected
 * by render_css(): --lbt2-p-speed (multiplier) and --lbt2-p-opacity.
 * Defaults defined on the container element.
 */

/* Keyframes — opacity removed from keyframes; controlled via base opacity only */
@keyframes lbt2Float1 {
    0%   { transform: translateY(0px)   rotate(0deg)   scale(1);    }
    30%  { transform: translateY(-32px) rotate(9deg)   scale(1.1);  }
    65%  { transform: translateY(-14px) rotate(-5deg)  scale(0.94); }
    100% { transform: translateY(0px)   rotate(0deg)   scale(1);    }
}
@keyframes lbt2Float2 {
    0%   { transform: translateY(0px)   rotate(0deg)   scale(1);    }
    35%  { transform: translateY(-24px) rotate(-12deg) scale(1.12); }
    72%  { transform: translateY(-40px) rotate(6deg)   scale(0.9);  }
    100% { transform: translateY(0px)   rotate(0deg)   scale(1);    }
}
@keyframes lbt2Float3 {
    0%   { transform: translateY(0px)   rotate(0deg)  scale(1);    }
    45%  { transform: translateY(-20px) rotate(14deg) scale(1.08); }
    100% { transform: translateY(0px)   rotate(0deg)  scale(1);    }
}
@keyframes lbt2Float4 {
    0%   { transform: translateY(0px)   rotate(0deg)   scale(1);    }
    28%  { transform: translateY(-36px) rotate(-7deg)  scale(1.07); }
    75%  { transform: translateY(-10px) rotate(4deg)   scale(0.93); }
    100% { transform: translateY(0px)   rotate(0deg)   scale(1);    }
}

/* Particle container — ONLY inside hero section */
.lbt2-template .lbt2-s-hero .lbt2-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    --lbt2-p-speed:   1.0;
    --lbt2-p-opacity: 0.20;
}

/* Ensure hero section-inner is position:relative and clips particles */
.lbt2-template .lbt2-s-hero .lbt2-section-inner {
    position: relative;
    overflow: hidden;
}
/* Hero content sits above particles */
.lbt2-template .lbt2-s-hero .lbt2-hero-content {
    position: relative;
    z-index: 1;
}

/* Base particle style — ONLY inside hero section */
.lbt2-template .lbt2-s-hero .lbt2-particle {
    position: absolute;
    display: block;
    border-radius: 10px;
    opacity: var(--lbt2-p-opacity);
    will-change: transform;
}
.lbt2-template .lbt2-s-hero .lbt2-particle svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ── 16 PARTICLES — LEFT SIDE (p1–p8) — hero only ── */
.lbt2-template .lbt2-s-hero .lbt2-p1  { width:46px; height:46px; top:8%;  left:4%;  animation: lbt2Float1 calc(3.6s * var(--lbt2-p-speed)) ease-in-out infinite 0s;   }
.lbt2-template .lbt2-s-hero .lbt2-p2  { width:34px; height:34px; top:22%; left:9%;  animation: lbt2Float2 calc(4.2s * var(--lbt2-p-speed)) ease-in-out infinite 0.6s;  }
.lbt2-template .lbt2-s-hero .lbt2-p3  { width:40px; height:40px; top:38%; left:3%;  animation: lbt2Float3 calc(3.4s * var(--lbt2-p-speed)) ease-in-out infinite 1.2s;  }
.lbt2-template .lbt2-s-hero .lbt2-p4  { width:30px; height:30px; top:55%; left:12%; animation: lbt2Float4 calc(4.8s * var(--lbt2-p-speed)) ease-in-out infinite 0.3s;  }
.lbt2-template .lbt2-s-hero .lbt2-p5  { width:42px; height:42px; top:68%; left:5%;  animation: lbt2Float1 calc(3.9s * var(--lbt2-p-speed)) ease-in-out infinite 1.8s;  }
.lbt2-template .lbt2-s-hero .lbt2-p6  { width:28px; height:28px; top:80%; left:14%; animation: lbt2Float2 calc(4.5s * var(--lbt2-p-speed)) ease-in-out infinite 0.9s;  }
.lbt2-template .lbt2-s-hero .lbt2-p7  { width:36px; height:36px; top:88%; left:7%;  animation: lbt2Float3 calc(3.2s * var(--lbt2-p-speed)) ease-in-out infinite 2.1s;  }
.lbt2-template .lbt2-s-hero .lbt2-p8  { width:44px; height:44px; top:45%; left:18%; animation: lbt2Float4 calc(5.4s * var(--lbt2-p-speed)) ease-in-out infinite 0.5s;  }

/* ── 16 PARTICLES — RIGHT SIDE (p9–p16) — hero only ── */
.lbt2-template .lbt2-s-hero .lbt2-p9  { width:44px; height:44px; top:6%;  right:5%;  animation: lbt2Float2 calc(3.8s * var(--lbt2-p-speed)) ease-in-out infinite 0.4s;  }
.lbt2-template .lbt2-s-hero .lbt2-p10 { width:32px; height:32px; top:20%; right:10%; animation: lbt2Float1 calc(4.4s * var(--lbt2-p-speed)) ease-in-out infinite 1.5s;  }
.lbt2-template .lbt2-s-hero .lbt2-p11 { width:38px; height:38px; top:36%; right:4%;  animation: lbt2Float4 calc(3.5s * var(--lbt2-p-speed)) ease-in-out infinite 0.8s;  }
.lbt2-template .lbt2-s-hero .lbt2-p12 { width:48px; height:48px; top:52%; right:13%; animation: lbt2Float3 calc(4.0s * var(--lbt2-p-speed)) ease-in-out infinite 2.0s;  }
.lbt2-template .lbt2-s-hero .lbt2-p13 { width:30px; height:30px; top:65%; right:6%;  animation: lbt2Float1 calc(3.3s * var(--lbt2-p-speed)) ease-in-out infinite 0.2s;  }
.lbt2-template .lbt2-s-hero .lbt2-p14 { width:42px; height:42px; top:76%; right:15%; animation: lbt2Float2 calc(4.7s * var(--lbt2-p-speed)) ease-in-out infinite 1.1s;  }
.lbt2-template .lbt2-s-hero .lbt2-p15 { width:36px; height:36px; top:85%; right:7%;  animation: lbt2Float4 calc(3.6s * var(--lbt2-p-speed)) ease-in-out infinite 1.7s;  }
.lbt2-template .lbt2-s-hero .lbt2-p16 { width:28px; height:28px; top:14%; right:19%; animation: lbt2Float3 calc(5.0s * var(--lbt2-p-speed)) ease-in-out infinite 0.7s;  }

/* ==========================================================
   HERO — RISE MODE (bottom → top loop)
   Icons emerge from below, drift upward with a slight sway,
   fade in at the bottom and fade out as they leave the top.
   The top/left/right from float rules are overridden here.
   ========================================================== */

@keyframes lbt2Rise {
    0%   { transform: translateY(0)      rotate(-4deg)  scale(0.8);  opacity: 0; }
    8%   { opacity: var(--lbt2-p-opacity); }
    88%  { opacity: var(--lbt2-p-opacity); }
    100% { transform: translateY(-130vh) rotate(6deg)   scale(1.05); opacity: 0; }
}
@keyframes lbt2RiseSway {
    0%   { transform: translateY(0)      rotate(5deg)  scale(0.85);  opacity: 0; }
    8%   { opacity: var(--lbt2-p-opacity); }
    40%  { transform: translateY(-52vh)  rotate(-6deg) scale(1);     }
    88%  { opacity: var(--lbt2-p-opacity); }
    100% { transform: translateY(-130vh) rotate(4deg)  scale(1.1);   opacity: 0; }
}

/* In rise mode every particle starts just below the section and floats upward.
   Horizontal positions are spread evenly across the full width. */
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-particle {
    top: 105% !important;
    opacity: 0;
}

/* 16 particles spread evenly (left 3%→97%) with staggered delays */
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p1  { left:3%;   right:auto; width:38px; height:38px; animation: lbt2Rise     calc(7s * var(--lbt2-p-speed)) linear infinite calc(0s   * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p2  { left:9%;   right:auto; width:28px; height:28px; animation: lbt2RiseSway calc(6s * var(--lbt2-p-speed)) linear infinite calc(0.7s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p3  { left:16%;  right:auto; width:34px; height:34px; animation: lbt2Rise     calc(8s * var(--lbt2-p-speed)) linear infinite calc(1.4s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p4  { left:23%;  right:auto; width:42px; height:42px; animation: lbt2RiseSway calc(6.5s * var(--lbt2-p-speed)) linear infinite calc(2.1s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p5  { left:31%;  right:auto; width:30px; height:30px; animation: lbt2Rise     calc(7.5s * var(--lbt2-p-speed)) linear infinite calc(0.4s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p6  { left:39%;  right:auto; width:36px; height:36px; animation: lbt2RiseSway calc(5.5s * var(--lbt2-p-speed)) linear infinite calc(3.0s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p7  { left:47%;  right:auto; width:44px; height:44px; animation: lbt2Rise     calc(9s * var(--lbt2-p-speed)) linear infinite calc(1.8s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p8  { left:55%;  right:auto; width:32px; height:32px; animation: lbt2RiseSway calc(6.8s * var(--lbt2-p-speed)) linear infinite calc(0.9s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p9  { left:62%;  right:auto; width:38px; height:38px; animation: lbt2Rise     calc(7.2s * var(--lbt2-p-speed)) linear infinite calc(2.5s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p10 { left:69%;  right:auto; width:26px; height:26px; animation: lbt2RiseSway calc(5.8s * var(--lbt2-p-speed)) linear infinite calc(1.1s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p11 { left:76%;  right:auto; width:40px; height:40px; animation: lbt2Rise     calc(8.5s * var(--lbt2-p-speed)) linear infinite calc(3.5s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p12 { left:82%;  right:auto; width:34px; height:34px; animation: lbt2RiseSway calc(6.2s * var(--lbt2-p-speed)) linear infinite calc(0.3s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p13 { left:87%;  right:auto; width:30px; height:30px; animation: lbt2Rise     calc(7.8s * var(--lbt2-p-speed)) linear infinite calc(2.0s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p14 { left:92%;  right:auto; width:44px; height:44px; animation: lbt2RiseSway calc(6.4s * var(--lbt2-p-speed)) linear infinite calc(4.2s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p15 { left:6%;   right:auto; width:28px; height:28px; animation: lbt2Rise     calc(8.2s * var(--lbt2-p-speed)) linear infinite calc(5.0s * var(--lbt2-p-speed)); }
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p16 { left:52%;  right:auto; width:36px; height:36px; animation: lbt2RiseSway calc(7.0s * var(--lbt2-p-speed)) linear infinite calc(1.6s * var(--lbt2-p-speed)); }

/* In rise mode, the base opacity rule must be reset (animation handles opacity itself) */
.lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-particle {
    opacity: 0; /* animation keyframes control opacity */
}

/* Mobile rise mode: keep all particles visible but smaller */
@media (max-width: 768px) {
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p4,
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p5,
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p6,
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p12,
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p13,
    .lbt2-template .lbt2-s-hero .lbt2-particles-rise .lbt2-p14 { display: none; }
}

/* Mobile: smaller particles, only show the 8 outermost ones */
@media (max-width: 768px) {
    .lbt2-template .lbt2-s-hero .lbt2-particle { opacity: calc(var(--lbt2-p-opacity) * 0.8); }
    /* Scale down all particles on mobile */
    .lbt2-template .lbt2-s-hero .lbt2-p1  { width:26px; height:26px; }
    .lbt2-template .lbt2-s-hero .lbt2-p2  { width:20px; height:20px; }
    .lbt2-template .lbt2-s-hero .lbt2-p3  { width:22px; height:22px; }
    .lbt2-template .lbt2-s-hero .lbt2-p4  { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p5  { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p6  { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p7  { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p8  { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p9  { width:24px; height:24px; }
    .lbt2-template .lbt2-s-hero .lbt2-p10 { width:18px; height:18px; }
    .lbt2-template .lbt2-s-hero .lbt2-p11 { width:22px; height:22px; }
    .lbt2-template .lbt2-s-hero .lbt2-p12 { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p13 { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p14 { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p15 { display:none; }
    .lbt2-template .lbt2-s-hero .lbt2-p16 { width:20px; height:20px; }
}

/* ==========================================================
   2. TRUST BADGES
   ========================================================== */

.lbt2-template .lbt2-s-trust-badges .lbt2-heading { text-align: center; }

.lbt2-template .lbt2-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.lbt2-template .lbt2-trust-badge {
    background: var(--lbt2-white);
    border: 1px solid var(--lbt2-slate-200);
    border-radius: var(--lbt2-radius-card);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--lbt2-shadow-card);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lbt2-template .lbt2-trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(34,197,94,.14);
}

.lbt2-template .lbt2-trust-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.lbt2-template .lbt2-trust-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--lbt2-slate-900);
    margin-bottom: 6px;
}

.lbt2-template .lbt2-trust-desc {
    font-size: 13px;
    color: var(--lbt2-slate-600);
    line-height: 1.5;
}

/* ==========================================================
   3. BENEFITS
   ========================================================== */

.lbt2-template .lbt2-s-benefits .lbt2-heading { text-align: center; }
.lbt2-template .lbt2-s-benefits .lbt2-section-label { display: block; text-align: center; }

.lbt2-template .lbt2-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.lbt2-template .lbt2-benefit-card {
    background: var(--lbt2-white);
    border: 1px solid var(--lbt2-slate-200);
    border-radius: var(--lbt2-radius-card);
    padding: 36px 32px;
    box-shadow: var(--lbt2-shadow-card);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lbt2-template .lbt2-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34,197,94,.12);
}

.lbt2-template .lbt2-benefit-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.lbt2-template .lbt2-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lbt2-slate-900);
    margin-bottom: 10px;
}

.lbt2-template .lbt2-benefit-text {
    font-size: 14px;
    color: var(--lbt2-slate-600);
    line-height: 1.65;
}

/* ==========================================================
   4. STEPS
   ========================================================== */

.lbt2-template .lbt2-s-steps .lbt2-heading { text-align: center; }
.lbt2-template .lbt2-s-steps .lbt2-section-label { display: block; text-align: center; }

.lbt2-template .lbt2-steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.lbt2-template .lbt2-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--lbt2-white);
    border: 1px solid var(--lbt2-slate-200);
    border-radius: var(--lbt2-radius-card);
    padding: 32px 28px;
    box-shadow: var(--lbt2-shadow-card);
    position: relative;
}

.lbt2-template .lbt2-step-number {
    font-family: var(--lbt2-font-head);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--lbt2-green-hover);
    background: var(--lbt2-green-light);
    border: 1.5px solid var(--lbt2-green-border);
    border-radius: 8px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.lbt2-template .lbt2-step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--lbt2-slate-900);
    margin-bottom: 8px;
}

.lbt2-template .lbt2-step-text {
    font-size: 14px;
    color: var(--lbt2-slate-600);
    line-height: 1.6;
}

/* ==========================================================
   5. STATS BAR
   ========================================================== */

/* Stats bar — always dark gradient, no matter what bg class is set */
.lbt2-template .lbt2-s-stats-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.lbt2-template .lbt2-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.lbt2-template .lbt2-stat {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.lbt2-template .lbt2-stat:last-child { border-right: none; }

.lbt2-template .lbt2-stat-numwrap {
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
}

.lbt2-template .lbt2-stat-number {
    font-family: var(--lbt2-font-head);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: inline;
    line-height: 1;
}

.lbt2-template .lbt2-stat-suffix {
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 800;
    color: var(--lbt2-green);
    vertical-align: top;
    margin-top: 4px;
    display: inline;
}

.lbt2-template .lbt2-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.6);
    margin-top: 4px;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

@media (max-width: 600px) {
    .lbt2-template .lbt2-stats-row { flex-direction: row; flex-wrap: wrap; }
    .lbt2-template .lbt2-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ==========================================================
   6. FAQ
   ========================================================== */

.lbt2-template .lbt2-s-faq .lbt2-heading { text-align: center; }

.lbt2-template .lbt2-faq-list {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lbt2-template .lbt2-faq-item {
    background: var(--lbt2-white);
    border: 1.5px solid var(--lbt2-slate-200);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lbt2-template .lbt2-faq-item:hover { border-color: var(--lbt2-green-border); }
.lbt2-template .lbt2-faq-item.lbt2-open {
    border-color: var(--lbt2-green);
    box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}

.lbt2-template .lbt2-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .15s ease;
}
.lbt2-template .lbt2-faq-question:hover { background: var(--lbt2-slate-50); }

.lbt2-template .lbt2-faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--lbt2-slate-900);
    line-height: 1.4;
    flex: 1;
}

.lbt2-template .lbt2-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--lbt2-slate-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--lbt2-slate-600);
    transition: background .2s ease, transform .3s ease, color .2s ease;
    line-height: 1;
}
.lbt2-template .lbt2-faq-item.lbt2-open .lbt2-faq-icon {
    background: var(--lbt2-green-light);
    color: var(--lbt2-green-hover);
    transform: rotate(45deg);
}

.lbt2-template .lbt2-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.lbt2-template .lbt2-faq-item.lbt2-open .lbt2-faq-answer {
    max-height: 800px;
}

.lbt2-template .lbt2-faq-answer-inner {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--lbt2-slate-600);
    line-height: 1.7;
    border-top: 1px solid var(--lbt2-slate-200);
    padding-top: 18px;
}

/* ==========================================================
   7. SEO TEXT
   ========================================================== */

.lbt2-template .lbt2-s-seo-text .lbt2-heading { text-align: center; margin-bottom: 28px; }
.lbt2-template .lbt2-s-seo-text .lbt2-section-label { display: block; text-align: center; }

.lbt2-template .lbt2-seo-content {
    max-width: 820px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
    color: var(--lbt2-slate-700);
    text-align: center;
}
.lbt2-template .lbt2-seo-content p { margin-bottom: 16px; }
.lbt2-template .lbt2-seo-content h3 {
    font-size: 19px;
    margin: 32px 0 12px;
}
.lbt2-template .lbt2-seo-content ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.lbt2-template .lbt2-seo-content li { margin-bottom: 6px; }

/* Responsive scrollable tables */
.lbt2-template .lbt2-seo-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}
.lbt2-template .lbt2-seo-content th {
    background: var(--lbt2-slate-900);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.lbt2-template .lbt2-seo-content td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--lbt2-slate-200);
}
.lbt2-template .lbt2-seo-content tr:nth-child(even) td { background: var(--lbt2-slate-50); }

/* ==========================================================
   8. PAYMENT LOGOS
   ========================================================== */

.lbt2-template .lbt2-s-payment-logos { padding: 48px 0 !important; }
.lbt2-template .lbt2-s-payment-logos .lbt2-section-label { display: block; text-align: center; margin-bottom: 24px; }

.lbt2-template .lbt2-payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
}

.lbt2-template .lbt2-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--lbt2-white) 0%, #f8fbff 100%);
    border: 2px solid var(--lbt2-slate-200);
    border-radius: 16px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--lbt2-slate-900);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    letter-spacing: 0.3px;
}

.lbt2-template .lbt2-payment-badge:hover {
    border-color: var(--lbt2-green);
    box-shadow: 0 8px 24px rgba(34,197,94,.2);
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, var(--lbt2-white) 0%, #f0fdf4 100%);
}

.lbt2-template .lbt2-payment-badge:active {
    transform: translateY(-2px) scale(1.02);
}

.lbt2-template .lbt2-payment-note {
    text-align: center;
    font-size: 13px;
    color: var(--lbt2-slate-600);
    margin-top: 20px;
}

/* ==========================================================
   9. CTA
   ========================================================== */

.lbt2-template .lbt2-s-cta { text-align: center; }

/* CTA backgrounds — class is on same element as lbt2-s-cta */
.lbt2-template .lbt2-s-cta.lbt2-cta-green,
.lbt2-template .lbt2-s-cta.lbt2-bg-gradient {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #fff;
}
.lbt2-template .lbt2-s-cta.lbt2-cta-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}
.lbt2-template .lbt2-s-cta.lbt2-cta-light {
    background: var(--lbt2-slate-50);
}

.lbt2-template .lbt2-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.lbt2-template .lbt2-cta-heading {
    font-family: var(--lbt2-font-head);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.lbt2-template .lbt2-cta-light .lbt2-cta-heading { color: var(--lbt2-slate-900); }

.lbt2-template .lbt2-cta-text {
    font-size: 16px;
    color: rgba(255,255,255,.88);
    margin-bottom: 36px;
    line-height: 1.6;
}
.lbt2-template .lbt2-cta-light .lbt2-cta-text { color: var(--lbt2-slate-600); }

/* ==========================================================
   10. COMPARISON TABLE
   ========================================================== */

.lbt2-template .lbt2-s-comparison .lbt2-heading { text-align: center; margin-bottom: 40px; }

.lbt2-template .lbt2-table-wrap {
    overflow-x: auto;
    border-radius: var(--lbt2-radius-card);
    box-shadow: var(--lbt2-shadow-card);
    border: 1px solid var(--lbt2-slate-200);
}

.lbt2-template .lbt2-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--lbt2-white);
}

.lbt2-template .lbt2-table th {
    background: var(--lbt2-slate-900);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-family: var(--lbt2-font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.lbt2-template .lbt2-table th.lbt2-col-us {
    background: var(--lbt2-green);
    color: #fff;
    position: relative;
}

.lbt2-template .lbt2-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--lbt2-slate-100);
    color: var(--lbt2-slate-700);
    vertical-align: middle;
}

.lbt2-template .lbt2-table tr:last-child td { border-bottom: none; }

.lbt2-template .lbt2-table .lbt2-row-label {
    font-weight: 600;
    color: var(--lbt2-slate-900);
    background: var(--lbt2-slate-50);
}

.lbt2-template .lbt2-table .lbt2-col-us-val {
    background: #f0fdf4;
    font-weight: 700;
}

.lbt2-template .lbt2-table td.lbt2-check {
    color: var(--lbt2-green-hover);
    font-weight: 700;
}

.lbt2-template .lbt2-table td.lbt2-cross {
    color: var(--lbt2-slate-400);
}

.lbt2-template .lbt2-table tr:hover td { background: var(--lbt2-slate-50); }
.lbt2-template .lbt2-table tr:hover td.lbt2-col-us-val { background: #e7faf0; }
.lbt2-template .lbt2-table tr:hover td.lbt2-row-label { background: var(--lbt2-slate-100); }

/* ==========================================================
   11. PRO / CONTRA
   ========================================================== */

.lbt2-template .lbt2-s-procontra .lbt2-heading { text-align: center; margin-bottom: 40px; }

.lbt2-template .lbt2-procontra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 640px) {
    .lbt2-template .lbt2-procontra-grid { grid-template-columns: 1fr; }
}

.lbt2-template .lbt2-pro-card,
.lbt2-template .lbt2-contra-card {
    border-radius: var(--lbt2-radius-card);
    padding: 32px;
    box-shadow: var(--lbt2-shadow-card);
}

.lbt2-template .lbt2-pro-card {
    background: #f0fdf4;
    border: 1.5px solid var(--lbt2-green-border);
}

.lbt2-template .lbt2-contra-card {
    background: #fff;
    border: 1.5px solid var(--lbt2-slate-200);
}

.lbt2-template .lbt2-procontra-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.lbt2-template .lbt2-pro-label { color: var(--lbt2-green-hover); }
.lbt2-template .lbt2-contra-label { color: var(--lbt2-slate-700); }

.lbt2-template .lbt2-procontra-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lbt2-template .lbt2-pro-item,
.lbt2-template .lbt2-contra-item {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lbt2-template .lbt2-pro-item {
    color: #15803d;
}
.lbt2-template .lbt2-pro-item::before {
    content: '✓';
    font-weight: 800;
    font-size: 15px;
    color: var(--lbt2-green);
    flex-shrink: 0;
    margin-top: 1px;
}

.lbt2-template .lbt2-contra-item {
    color: var(--lbt2-slate-600);
}
.lbt2-template .lbt2-contra-item::before {
    content: '⚠';
    font-size: 13px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================
   12. RELATED PRODUCTS
   ========================================================== */

.lbt2-template .lbt2-s-related-products .lbt2-heading { text-align: center; }
.lbt2-template .lbt2-s-related-products .lbt2-section-label { display: block; text-align: center; }

.lbt2-template .lbt2-related-subtitle {
    font-size: 16px;
    color: var(--lbt2-slate-600);
    margin-bottom: 40px;
    text-align: center;
}

.lbt2-template .lbt2-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.lbt2-template .lbt2-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    background: var(--lbt2-white);
    border: 2px solid var(--lbt2-slate-200);
    border-radius: var(--lbt2-radius-card);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.lbt2-template .lbt2-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lbt2-green) 0%, var(--lbt2-green-hover) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.lbt2-template .lbt2-product-card:hover::before {
    transform: scaleX(1);
}

.lbt2-template .lbt2-product-card:hover {
    border-color: var(--lbt2-green-border);
    box-shadow: var(--lbt2-shadow-card);
    transform: translateY(-4px);
}

.lbt2-template .lbt2-product-icon {
    font-size: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--lbt2-green-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lbt2-template .lbt2-product-card:hover .lbt2-product-icon {
    background: var(--lbt2-green);
    transform: scale(1.1);
    filter: brightness(1.1);
}

.lbt2-template .lbt2-product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lbt2-slate-900);
    margin: 8px 0 0 0;
    line-height: 1.3;
}

.lbt2-template .lbt2-product-desc {
    font-size: 14px;
    color: var(--lbt2-slate-600);
    margin: 4px 0 8px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.lbt2-template .lbt2-product-arrow {
    font-size: 20px;
    color: var(--lbt2-green);
    font-weight: 700;
    margin-top: 8px;
    transition: transform 0.3s ease;
}

.lbt2-template .lbt2-product-card:hover .lbt2-product-arrow {
    transform: translateX(4px);
}

/* ==========================================================
   SECTION INNER PADDING OVERRIDE
   ========================================================== */

.lbt2-template .lbt2-s-hero .lbt2-section-inner { padding: 96px 0; }
.lbt2-template .lbt2-s-stats-bar .lbt2-section-inner { padding: 48px 0; }
.lbt2-template .lbt2-s-payment-logos .lbt2-section-inner { padding: 48px 0; }
.lbt2-template .lbt2-s-cta .lbt2-section-inner { padding: 96px 0; }

@media (max-width: 768px) {
    .lbt2-template .lbt2-s-hero .lbt2-section-inner { padding: 64px 0; }
    .lbt2-template .lbt2-s-cta .lbt2-section-inner { padding: 64px 0; }
    .lbt2-template .lbt2-benefits-grid { grid-template-columns: 1fr; }
    .lbt2-template .lbt2-steps-list { grid-template-columns: 1fr; }
    .lbt2-template .lbt2-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .lbt2-template .lbt2-related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lbt2-template .lbt2-product-card { padding: 24px 16px; }
    .lbt2-template .lbt2-product-icon { width: 60px; height: 60px; font-size: 32px; }
    .lbt2-template .lbt2-product-title { font-size: 16px; }
}

@media (max-width: 480px) {
    .lbt2-template .lbt2-related-grid { grid-template-columns: 1fr; gap: 12px; }
    .lbt2-template .lbt2-product-card { padding: 20px 12px; }
}
