/* ===================================================
   ES24 B2B LANDINGPAGE - VERSION V42
   Farb-Design: Klassisch & Vertrauensvoll
   Marineblau #0F172A | Smaragdgrün #10B981 | Strom-Gelb #F59E0B | Weiß #FFFFFF
   =================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;600;700;800;900&display=swap");

/* ===== FULL WIDTH BREAKOUT ===== */
.es24-lp-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ===== CSS VARIABLEN - FARBPALETTE V42 ===== */
:root {
    /* Hauptfarben */
    --es24-navy:        #0F172A;
    --es24-navy-mid:    #1E293B;
    --es24-navy-light:  #334155;
    --es24-navy-subtle: #0B1220;

    /* Akzentfarben */
    --es24-green:       #10B981;
    --es24-green-light: #34D399;
    --es24-green-dark:  #059669;
    --es24-green-glow:  rgba(16, 185, 129, 0.25);

    /* Highlight */
    --es24-amber:       #F59E0B;
    --es24-amber-light: #FCD34D;
    --es24-amber-dark:  #D97706;

    /* Neutral */
    --es24-white:       #FFFFFF;
    --es24-gray-50:     #F8FAFC;
    --es24-gray-100:    #F1F5F9;
    --es24-gray-200:    #E2E8F0;
    --es24-gray-400:    #94A3B8;
    --es24-gray-600:    #475569;
    --es24-gray-800:    #1E293B;

    /* Design-System */
    --es24-radius:      16px;
    --es24-radius-sm:   10px;
    --es24-shadow-sm:   0 1px 3px rgba(0,0,0,0.12);
    --es24-shadow:      0 4px 20px rgba(15, 23, 42, 0.15);
    --es24-shadow-lg:   0 20px 60px rgba(15, 23, 42, 0.25);
    --es24-shadow-green: 0 8px 30px rgba(16, 185, 129, 0.35);
    --es24-transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.es24-lp-wrapper * { box-sizing: border-box; margin: 0; padding: 0; }

.es24-lp-wrapper {
    font-family: "Inter", "Outfit", sans-serif;
    background: var(--es24-white);
    color: var(--es24-navy);
    overflow-x: hidden;
    line-height: 1.6;
}

/* =================== HERO – DUNKEL (Navy) =================== */
.es24-lp-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--es24-navy-subtle) 0%, var(--es24-navy) 40%, #0D2137 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 40px 90px;
    overflow: hidden;
}

/* Subtiler grüner Glow-Hintergrund */
.es24-lp-hero::before {
    content: "";
    position: absolute;
    top: -30%; left: -20%;
    width: 60%; height: 80%;
    background: radial-gradient(ellipse at center, rgba(16,185,129,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.es24-lp-hero::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--es24-white));
    pointer-events: none;
    z-index: 1;
}

.es24-lp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Badge */
.es24-lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--es24-green-light);
    padding: 9px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 38px;
}

.es24-lp-badge-dot {
    width: 8px; height: 8px;
    background: var(--es24-green);
    border-radius: 50%;
    animation: es24-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px var(--es24-green);
}

@keyframes es24-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

/* Hero H1 */
.es24-lp-hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 28px;
    color: var(--es24-white);
}

.es24-lp-hero h1 .es24-lp-highlight {
    background: linear-gradient(135deg, var(--es24-green), var(--es24-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.es24-lp-hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--es24-gray-400);
    max-width: 800px;
    margin: 0 auto 55px;
    line-height: 1.75;
}

.es24-lp-hero-sub strong { color: var(--es24-white); }

.es24-lp-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================== BUTTONS =================== */
.es24-lp-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--es24-green-dark), var(--es24-green));
    color: #fff !important;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 17px; font-weight: 700;
    text-decoration: none !important;
    box-shadow: var(--es24-shadow-green), 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--es24-transition);
    border: none; cursor: pointer; letter-spacing: 0.3px;
    position: relative; overflow: hidden;
}

.es24-lp-btn-primary::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--es24-green), var(--es24-green-light));
    opacity: 0; transition: opacity 0.3s;
}

.es24-lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(16,185,129,0.5), 0 6px 20px rgba(0,0,0,0.3);
    color: #fff !important;
}

.es24-lp-btn-primary:hover::before { opacity: 1; }
.es24-lp-btn-primary span { position: relative; z-index: 1; }

.es24-lp-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px; font-weight: 600;
    text-decoration: none !important;
    transition: var(--es24-transition); cursor: pointer;
}

.es24-lp-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--es24-green);
    transform: translateY(-2px);
    color: var(--es24-green-light) !important;
}

/* Button auf weißem Hintergrund */
.es24-lp-btn-primary-light {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--es24-green-dark), var(--es24-green));
    color: #fff !important;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 17px; font-weight: 700;
    text-decoration: none !important;
    box-shadow: var(--es24-shadow-green);
    transition: var(--es24-transition);
    border: none; cursor: pointer;
}

.es24-lp-btn-primary-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(16,185,129,0.4);
    color: #fff !important;
}

/* =================== STATS BAR – HELL (Weiß mit Grüner Border) =================== */
.es24-lp-stats {
    background: var(--es24-white);
    border-bottom: 1px solid var(--es24-gray-200);
    padding: 70px 40px;
    position: relative;
}

.es24-lp-stats::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--es24-navy), var(--es24-green), var(--es24-amber));
}

.es24-lp-stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.es24-lp-stat-item {
    padding: 30px 20px;
    border-radius: var(--es24-radius);
    background: var(--es24-gray-50);
    border: 1px solid var(--es24-gray-200);
    transition: var(--es24-transition);
}

.es24-lp-stat-item:hover {
    border-color: var(--es24-green);
    box-shadow: var(--es24-shadow-green);
    transform: translateY(-4px);
}

.es24-lp-stat-number {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: var(--es24-green);
    line-height: 1;
    margin-bottom: 10px;
}

.es24-lp-stat-label {
    font-size: 13px;
    color: var(--es24-gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* =================== SECTION STRUKTUR =================== */
/* Helle Sektionen */
.es24-lp-section-light {
    padding: 100px 40px;
    background: var(--es24-white);
    position: relative;
}

/* Dunkle Sektionen (Navy) */
.es24-lp-section-dark {
    padding: 100px 40px;
    background: var(--es24-navy);
    position: relative;
    color: var(--es24-white);
}

/* Graue Sektionen */
.es24-lp-section-gray {
    padding: 100px 40px;
    background: var(--es24-gray-50);
    border-top: 1px solid var(--es24-gray-200);
    border-bottom: 1px solid var(--es24-gray-200);
}

.es24-lp-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header – auf hellem Hintergrund */
.es24-lp-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.es24-lp-section-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--es24-green-dark);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px;
}

.es24-lp-section-dark .es24-lp-section-tag {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--es24-green-light);
}

.es24-lp-section-header h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--es24-navy);
}

.es24-lp-section-dark .es24-lp-section-header h2 {
    color: var(--es24-white);
}

.es24-lp-section-header h2 span { color: var(--es24-green); }

.es24-lp-section-dark .es24-lp-section-header h2 span {
    color: var(--es24-green-light);
}

.es24-lp-section-header p {
    font-size: 1.1rem;
    color: var(--es24-gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
}

.es24-lp-section-dark .es24-lp-section-header p {
    color: var(--es24-gray-400);
}

/* =================== POWER CARDS – HELL =================== */
.es24-lp-power-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.es24-lp-power-card {
    background: var(--es24-white);
    border: 1.5px solid var(--es24-gray-200);
    border-radius: var(--es24-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--es24-transition);
    box-shadow: var(--es24-shadow-sm);
}

.es24-lp-power-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--es24-green), var(--es24-amber));
}

.es24-lp-power-card:hover {
    transform: translateY(-6px);
    border-color: var(--es24-green);
    box-shadow: var(--es24-shadow-green), var(--es24-shadow);
}

.es24-lp-power-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.es24-lp-power-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--es24-navy);
    margin-bottom: 14px;
}

.es24-lp-power-card p {
    color: var(--es24-gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

.es24-lp-power-number {
    display: inline-block;
    font-family: "Outfit", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--es24-green);
    margin-top: 18px;
}

.es24-lp-power-number small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--es24-gray-400);
}

/* Amber Highlight für besondere Karten */
.es24-lp-power-card.amber-accent::before {
    background: linear-gradient(90deg, var(--es24-amber), var(--es24-amber-light));
}

.es24-lp-power-card.amber-accent h3 { color: var(--es24-amber-dark); }
.es24-lp-power-card.amber-accent .es24-lp-power-number { color: var(--es24-amber-dark); }

/* =================== VIDEO SECTION – DUNKEL =================== */
.es24-lp-video-section {
    background: var(--es24-navy);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.es24-lp-video-section::before {
    content: "";
    position: absolute;
    bottom: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(ellipse at right center, rgba(16,185,129,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.es24-lp-video-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
}

.es24-lp-video-inner h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--es24-white);
    margin-bottom: 16px;
}

.es24-lp-video-inner h2 span { color: var(--es24-green-light); }
.es24-lp-video-inner p { color: var(--es24-gray-400); font-size: 1.1rem; margin-bottom: 0; }

.es24-lp-video-wrap {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: var(--es24-radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(16,185,129,0.3);
    margin-top: 50px;
}

.es24-lp-video-wrap iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border: none; border-radius: var(--es24-radius);
}

.es24-lp-video-placeholder {
    background: var(--es24-navy-mid);
    border-radius: var(--es24-radius);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    margin-top: 50px; padding: 80px 60px; text-align: center;
}

.es24-lp-video-play-btn {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--es24-green-dark), var(--es24-green));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px; font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(16,185,129,0.5);
    cursor: pointer; transition: var(--es24-transition);
    animation: es24-pulse-green 2.5s ease-in-out infinite;
}

.es24-lp-video-play-btn:hover { transform: scale(1.1); }

@keyframes es24-pulse-green {
    0%,100%{ box-shadow: 0 0 25px rgba(16,185,129,0.4) }
    50%{ box-shadow: 0 0 60px rgba(16,185,129,0.8) }
}

/* =================== MODULE GRID – GRAU/HELL =================== */
.es24-lp-modules-section {
    background: var(--es24-gray-50);
    padding: 100px 40px;
    border-top: 1px solid var(--es24-gray-200);
}

.es24-lp-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

/* Aktive Module */
.es24-lp-module-card {
    background: var(--es24-white);
    border: 1.5px solid var(--es24-gray-200);
    border-radius: var(--es24-radius);
    padding: 35px;
    transition: var(--es24-transition);
    position: relative;
    box-shadow: var(--es24-shadow-sm);
}

.es24-lp-module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--es24-shadow);
}

.es24-lp-module-card.active {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16,185,129,0.04), var(--es24-white));
}

.es24-lp-module-card.active:hover {
    border-color: var(--es24-green);
    box-shadow: var(--es24-shadow-green);
}

.es24-lp-module-card.planned {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245,158,11,0.03), var(--es24-white));
    opacity: 0.85;
}

.es24-lp-module-status {
    position: absolute; top: 16px; right: 16px;
    font-size: 11px; font-weight: 700; padding: 5px 14px;
    border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}

.es24-lp-module-card.active .es24-lp-module-status {
    background: rgba(16,185,129,0.12);
    color: var(--es24-green-dark);
    border: 1px solid rgba(16,185,129,0.3);
}

.es24-lp-module-card.planned .es24-lp-module-status {
    background: rgba(245,158,11,0.12);
    color: var(--es24-amber-dark);
    border: 1px solid rgba(245,158,11,0.3);
}

.es24-lp-module-num {
    font-family: "Outfit", sans-serif;
    font-size: 3rem; font-weight: 900;
    color: var(--es24-gray-200); line-height: 1; margin-bottom: 12px;
}

.es24-lp-module-card.active .es24-lp-module-num { color: rgba(16,185,129,0.2); }
.es24-lp-module-card.planned .es24-lp-module-num { color: rgba(245,158,11,0.2); }

.es24-lp-module-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }

.es24-lp-module-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--es24-navy); margin-bottom: 10px; padding-right: 80px;
}

.es24-lp-module-card.planned h3 { color: var(--es24-amber-dark); }
.es24-lp-module-card p { font-size: 0.9rem; color: var(--es24-gray-600); line-height: 1.7; }

/* =================== PRICING – DUNKEL (Navy) =================== */
.es24-lp-pricing-section {
    background: var(--es24-navy);
    padding: 110px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.es24-lp-pricing-section::before {
    content: "";
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 100%;
    background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.es24-lp-pricing-section .es24-lp-section-header h2 { color: var(--es24-white); }
.es24-lp-pricing-section .es24-lp-section-header p { color: var(--es24-gray-400); }

.es24-lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 460px));
    gap: 32px;
    max-width: 1000px;
    margin: 60px auto 0;
    justify-content: center;
    position: relative; z-index: 2;
}

.es24-lp-price-card {
    background: var(--es24-navy-mid);
    border: 1.5px solid var(--es24-navy-light);
    border-radius: var(--es24-radius);
    padding: 55px 45px;
    position: relative;
    transition: var(--es24-transition);
}

.es24-lp-price-card:hover {
    transform: translateY(-6px);
    border-color: var(--es24-green);
    box-shadow: var(--es24-shadow-green), 0 30px 80px rgba(0,0,0,0.4);
}

.es24-lp-price-card.featured {
    background: linear-gradient(135deg, #0F2A20, #0F1F2A);
    border-color: var(--es24-green);
    box-shadow: var(--es24-shadow-green), 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(1.04);
}

.es24-lp-price-card.featured:hover {
    transform: scale(1.06) translateY(-6px);
}

.es24-lp-price-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--es24-amber), var(--es24-amber-light));
    color: var(--es24-navy);
    font-size: 12px; font-weight: 800;
    padding: 7px 24px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}

.es24-lp-price-name {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--es24-gray-400); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}

.es24-lp-price-amount {
    font-family: "Outfit", sans-serif;
    font-size: 4.5rem; font-weight: 900;
    color: var(--es24-green); line-height: 1; margin-bottom: 6px;
}

.es24-lp-price-amount span { font-size: 1.3rem; font-weight: 400; color: var(--es24-gray-400); }
.es24-lp-price-period { font-size: 0.95rem; color: var(--es24-gray-400); margin-bottom: 38px; }

.es24-lp-price-features { list-style: none; text-align: left; margin-bottom: 42px; }

.es24-lp-price-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--es24-gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; gap: 12px;
}

.es24-lp-price-features li::before {
    content: "✓";
    color: var(--es24-green);
    font-weight: 800; font-size: 1rem;
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: rgba(16,185,129,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}

/* =================== TRUST BADGES =================== */
.es24-lp-trust-row {
    display: flex; justify-content: center; align-items: center;
    gap: 50px; flex-wrap: wrap;
    padding: 55px 40px;
    background: var(--es24-white);
    border-top: 1px solid var(--es24-gray-200);
    border-bottom: 1px solid var(--es24-gray-200);
}

.es24-lp-trust-badge {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--es24-gray-600); font-weight: 600;
}

.es24-lp-trust-badge-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

/* =================== FOOTER CTA – HELL MIT GRÜNEM AKZENT =================== */
.es24-lp-footer-cta {
    background: linear-gradient(135deg, var(--es24-gray-50), var(--es24-white));
    border-top: 4px solid var(--es24-green);
    padding: 100px 40px;
    text-align: center;
    position: relative; overflow: hidden;
}

.es24-lp-footer-cta::before {
    content: "";
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(16,185,129,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.es24-lp-footer-cta h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--es24-navy);
    margin-bottom: 20px;
    position: relative;
}

.es24-lp-footer-cta h2 span { color: var(--es24-green); }

.es24-lp-footer-cta p {
    font-size: 1.1rem;
    color: var(--es24-gray-600);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto; margin-right: auto;
    line-height: 1.75;
    position: relative;
}

.es24-lp-footer-cta .es24-lp-hero-cta { margin-bottom: 0; }

/* =================== AMBER HIGHLIGHT BOXES =================== */
.es24-lp-amber-box {
    background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.04));
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: var(--es24-radius);
    padding: 28px 35px;
    margin-top: 30px;
}

.es24-lp-amber-box h4 {
    color: var(--es24-amber-dark);
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}

.es24-lp-amber-box p { color: var(--es24-gray-600); font-size: 0.9rem; margin: 0; }

/* =================== DIVIDER =================== */
.es24-lp-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--es24-green), var(--es24-amber), transparent);
}

/* =================== ANIMATIONEN =================== */
@keyframes es24-fadeUp {
    from { opacity:0; transform:translateY(30px) }
    to   { opacity:1; transform:translateY(0) }
}

/* =================== SCROLLBAR =================== */
.es24-lp-wrapper::-webkit-scrollbar { width: 6px; }
.es24-lp-wrapper::-webkit-scrollbar-track { background: var(--es24-gray-100); }
.es24-lp-wrapper::-webkit-scrollbar-thumb { background: var(--es24-green); border-radius: 3px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
    .es24-lp-power-grid { grid-template-columns: repeat(2, 1fr); }
    .es24-lp-modules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .es24-lp-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .es24-lp-pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .es24-lp-price-card.featured { transform: scale(1); }
    .es24-lp-trust-row { gap: 25px; }
}

@media (max-width: 768px) {
    .es24-lp-hero { padding: 90px 24px 70px; }
    .es24-lp-section-light,
    .es24-lp-section-dark,
    .es24-lp-section-gray,
    .es24-lp-modules-section,
    .es24-lp-pricing-section,
    .es24-lp-video-section { padding: 70px 24px; }
    .es24-lp-stats { padding: 50px 24px; }
    .es24-lp-power-grid { grid-template-columns: 1fr; }
    .es24-lp-modules-grid { grid-template-columns: 1fr; }
    .es24-lp-hero-cta { flex-direction: column; align-items: center; }
    .es24-lp-btn-primary,
    .es24-lp-btn-secondary,
    .es24-lp-btn-primary-light { width: 100%; max-width: 360px; justify-content: center; }
    .es24-lp-trust-row { gap: 20px; padding: 35px 24px; }
    .es24-lp-footer-cta { padding: 70px 24px; }
}

@media (max-width: 480px) {
    .es24-lp-stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
    .es24-lp-stat-item { padding: 20px 12px; }
    .es24-lp-pricing-grid { grid-template-columns: 1fr; }
}
