:root {
    /* Color Palette */
    --bg-white: #FFFFFF;
    --text-blue: #002A5C;    /* Serious Dark Blue for headings */
    --accent-green: #00B533; /* Trustworthy Green for buttons and accents */
    --accent-green-hover: #1acc4b; /* Etwas heller auf Hover */
    --amazon-orange: #FF9900; /* Amazon Orange */
    --amazon-orange-hover: #FFAC33; /* Amazon Orange Hover */
    
    /* Supporting Colors */
    --light-gray: #f8fafc;
    --border-gray: #e2e8f0;
    --text-dark: #334155;
    --text-light: #64748b;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-soft: 0 10px 25px rgba(0, 42, 92, 0.05);
    --shadow-strong: 0 20px 40px rgba(0, 42, 92, 0.1);
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-blue);
    line-height: 1.25;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    padding: 0 !important;
    height: 100vh !important;
    min-height: 500px !important;
    max-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative;
    overflow: hidden !important;
}

/* Background gradient effect making it look premium */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(0, 42, 92, 0.03) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    order: 1; 
    max-height: 100%;
}

.hero-content {
    flex: 1.2;
    order: 2;
    padding-right: 20px;
}

/* Eye-catching Eyebrow Header */
.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-blue);
    background-color: rgba(0, 42, 92, 0.08);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 42, 92, 0.1);
}

.eyebrow.bonus-tag {
    background-color: rgba(0, 181, 51, 0.08); /* Light positive green */
    color: #008f28; /* Darker green for contrast */
    border-color: rgba(0, 181, 51, 0.2);
}

.main-heading {
    font-size: clamp(1.6rem, 4vh + 0.2rem, 3rem) !important;
    font-weight: 900;
    margin-bottom: 0.5rem !important;
    letter-spacing: -1px;
    line-height: 1.05;
}

/* Hervorhebung - Kontrast in Blau & dezent unterstrichen */
.highlight {
    color: #004de6; /* Leuchtenderes/Dunkleres Kontrast-Blau zum sehr dunklen Basiston */
    text-decoration: underline;
    text-decoration-color: rgba(0, 181, 51, 0.4);
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.sub-heading {
    font-size: clamp(0.8rem, 1.5vh, 1rem) !important;
    font-weight: 400;
    margin-bottom: 0.75rem !important;
    color: var(--text-dark);
    line-height: 1.4;
}

/* E-Book Display Aesthetics */
.cover-glass {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Multi-layered neon glow behind the image - significantly more vibrant */
.cover-glass::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 183, 3, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 153, 0, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 1;
    opacity: 0.85; /* Clearly visible always */
    animation: glow-aurora 8s ease-in-out infinite alternate;
}

/* Secondary bloom for extra depth */
.cover-glass::after {
    content: '';
    position: absolute;
    top: 55%;
    left: 48%;
    width: 85%;
    height: 75%;
    background: radial-gradient(ellipse, rgba(255, 183, 3, 0.4) 0%, transparent 75%);
    transform: translate(-50%, -50%) rotate(-5deg);
    filter: blur(45px);
    z-index: 2;
    opacity: 0.7;
}

.ebook-cover {
    width: auto;
    max-width: 100%;
    max-height: 30vh !important; 
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 35px rgba(0, 42, 92, 0.3));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cover-glass:hover .ebook-cover {
    transform: translateY(-15px) rotate(3deg) scale(1.02);
    filter: drop-shadow(0 30px 45px rgba(0, 42, 92, 0.4));
}

@keyframes glow-aurora {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(-48%, -52%) scale(1.1) rotate(5deg); opacity: 0.9; }
    100% { transform: translate(-52%, -48%) scale(1.05) rotate(-5deg); opacity: 0.8; }
}

/* Premium Trust Seal */
.floating-trust-seal {
    position: absolute;
    bottom: -25px; /* Minimal overlap unter dem Bild */
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 14px;
    font-family: var(--font-heading);
    box-shadow: 0 20px 40px rgba(0, 42, 92, 0.15), 0 0 0 3px white, 0 0 0 5px #eab308;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
    background-image: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 100%);
    white-space: nowrap;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.seal-icon {
    background: var(--accent-green);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 181, 51, 0.4), inset 0 0 0 2px rgba(255,255,255,0.4);
    position: relative;
}

.seal-icon::after {
    content: '';
    position: absolute;
    top: -4px; right: -4px; bottom: -4px; left: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 181, 51, 0.4);
}

.seal-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seal-top {
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
    line-height: 1.1;
    color: var(--text-blue);
    text-transform: uppercase;
}

.seal-bottom {
    font-weight: 700;
    font-size: 0.7rem;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

/* Hero Counter */
.hero-counter {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 2;
    position: relative;
    padding-bottom: 20px;
}

.counter-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 28px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0, 42, 92, 0.12);
    border: 2px solid rgba(0, 181, 51, 0.4);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-blue);
    position: relative;
}

.counter-box i {
    color: var(--accent-green) !important;
    font-size: 1.2rem;
}

.counter-number {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent-green);
    font-size: 1.4rem;
    min-width: 50px;
    display: inline-block;
    text-align: center;
}

.live-indicator {
    width: 12px;
    height: 12px;
    background-color: #dc2626;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(220, 38, 38, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* =========================================
   2. PAIN SECTION
   ========================================= */
.pain-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    position: relative;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
}

.pain-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.pain-list {
    list-style: none;
}

.pain-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-gray);
}

.pain-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.icon-box.red-cross {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: inset 0 0 10px rgba(239, 68, 68, 0.05), 0 4px 10px rgba(239, 68, 68, 0.15);
}

.pain-item .text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b; /* Dunklerer Ton für besseren Kontrast */
}

/* =========================================
   3. SOLUTION SECTION (TOP MARKETING)
   ========================================= */
.solution-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    position: relative;
    overflow: hidden;
}

/* Marketing Sub-elements */
.text-center {
    text-align: center;
}

.section-subheading {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight-green {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-green::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -4px;
    right: -4px;
    height: 12px;
    background: rgba(0, 181, 51, 0.2);
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 4px;
}

/* The Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Premium Marketing Cards */
.solution-card {
    background: white;
    padding: 60px 40px 50px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 42, 92, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 42, 92, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Animated gradient bottom border on hover */
.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--text-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    border-radius: 0 0 24px 24px;
    z-index: 2;
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 42, 92, 0.08);
    border-color: transparent;
}

/* Highlight Card specific (The 'Winner') */
.solution-card.highlight-card {
    border: 2px solid var(--accent-green);
    box-shadow: 0 15px 40px rgba(0, 181, 51, 0.15);
    transform: scale(1.03);
    z-index: 5;
}

.solution-card.highlight-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 181, 51, 0.2);
}



/* The 'Empfehlung' Badge */
.solution-card.highlight-card::before {
    content: "⭐ Perfekt für Anfänger";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--amazon-orange) 0%, #ff7300 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(255, 153, 0, 0.3);
    z-index: 10;
    white-space: nowrap;
}

/* Weg-Label (e.g. WEG #1) */
.card-step {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--light-gray);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.solution-card.highlight-card .card-step {
    background: rgba(0, 181, 51, 0.1);
    color: var(--accent-green);
}

/* Icons */
.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 181, 51, 0.05), rgba(0, 181, 51, 0.15));
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 40px auto 25px; /* Added top margin for step label */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 0 4px white, 0 8px 16px rgba(0, 181, 51, 0.1);
    position: relative;
    z-index: 2;
}

.solution-card:hover .card-icon {
    background: var(--accent-green);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: inset 0 0 0 0 white, 0 15px 25px rgba(0, 181, 51, 0.3);
}

/* Title & Description */
.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.card-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Checkpoints */
.card-checkpoints {
    list-style: none;
    text-align: left;
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px dashed rgba(0, 42, 92, 0.08);
}

.card-checkpoints li {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.card-checkpoints li:last-child {
    margin-bottom: 0;
}

/* Enhanced Checkmark Icon */
.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--accent-green);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 181, 51, 0.2);
}

/* Marketing Bridge */
.marketing-bridge {
    text-align: center;
    margin-top: 5rem;
    padding: 3.5rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 42, 92, 0.05);
    border: 1px solid rgba(0, 42, 92, 0.03);
    position: relative;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

.bridge-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 181, 51, 0.08);
    color: var(--accent-green);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 181, 51, 0.05);
}

.bridge-main-text {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: var(--text-blue);
    letter-spacing: -1px;
}

.bridge-subtext {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.bridge-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    text-decoration: none;
    transition: var(--transition-standard);
    box-shadow: 0 12px 30px rgba(0, 181, 51, 0.35);
    animation: bounce-vertical 2.2s infinite ease-in-out;
}

.bridge-cta-arrow:hover {
    background: var(--accent-green-hover);
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(0, 181, 51, 0.45);
}

@keyframes bounce-vertical {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Responsive Bridge */
@media (max-width: 768px) {
    .marketing-bridge {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }
    .bridge-main-text {
        font-size: 1.8rem;
    }
    .bridge-subtext {
        font-size: 1.1rem;
    }
}

/* =========================================
   4. ACTION SECTION
   ========================================= */
.action-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-blue) 0%, #001a3a 100%);
    text-align: center;
    color: white;
}

.action-section .action-heading {
    color: white;
    font-size: 1.9rem;
    margin-bottom: 3rem;
    font-weight: 800;
    line-height: 1.4;
}

.action-container {
    max-width: 900px;
}

.action-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.optin-form {
    max-width: 600px;
    margin: 0 auto 20px;
}

.form-group {
    margin-bottom: 25px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.3rem;
    z-index: 2;
}

.email-input {
    width: 100%;
    padding: 22px 25px 22px 65px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.15rem;
    font-family: var(--font-body);
    transition: var(--transition-standard);
    background: white;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(0, 181, 51, 0.2);
}

.email-input::placeholder {
    color: #94a3b8;
}

.btn-large {
    width: 100%;
    max-width: 540px; /* Strictly limit width to stay inside the 600px form comfortably */
    padding: 22px 25px;
    font-size: 1.35rem; /* Reduced to fit better on one/two lines */
    margin: 0 auto;
}

.privacy-note {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}

.privacy-note i {
    color: var(--accent-green);
    margin-right: 5px;
}

/* =========================================
   BUTTONS AND ANIMATIONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 26px 55px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-standard);
    border: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal; /* Allow wrapping for long button text */
    word-break: break-word;
    text-align: center;
}

.btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-green);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 181, 51, 0.4);
}

.btn-orange {
    background-color: var(--amazon-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 153, 0, 0.4);
    border: 3px solid rgba(255, 153, 0, 0.5); /* Semi-transparent orange border for the "frame" */
}

.btn-primary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 181, 51, 0.5);
}

.btn-orange:hover {
    background-color: var(--amazon-orange-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 153, 0, 0.5);
}

/* Trust Elements Styles */
.trust-above-btn {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 42, 92, 0.05);
}

.trust-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark); /* Slightly darker for better visibility when larger */
    margin-top: 8px;
    opacity: 0.9;
}

.trust-subtext-action {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9); /* Brighter for dark background */
    margin-top: 15px;
    text-align: center;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.pulse-orange {
    animation: pulse-orange 2s infinite;
}

/* Premium shine effect on the main CTA */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 4s infinite 2s;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 181, 51, 0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(0, 181, 51, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 181, 51, 0); }
}

@keyframes pulse-orange {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.8), 0 10px 25px rgba(255, 153, 0, 0.4); 
        border-color: rgba(255, 153, 0, 1);
    }
    70% { 
        transform: scale(1.04); 
        box-shadow: 0 0 0 20px rgba(255, 153, 0, 0), 0 15px 35px rgba(255, 153, 0, 0.3); 
        border-color: rgba(255, 155, 0, 0.5);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0), 0 10px 25px rgba(255, 153, 0, 0.4); 
        border-color: rgba(255, 153, 0, 1);
    }
}

/* CTA Arrow Styles */
.cta-container {
    position: relative;
    display: flex; /* Changed from inline-flex for better block behavior */
    justify-content: center; /* Center children */
    width: 100%; /* Take full width of parent (form) */
    margin: 10px 0;
}

.curved-arrow {
    position: absolute;
    right: -120px;
    top: -30px;
    color: var(--accent-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(5deg);
    pointer-events: none;
    z-index: 5;
    animation: arrow-float 3s ease-in-out infinite;
}

.hero-arrow {
    animation: none !important; /* No movement in hero as requested */
    right: -180px; /* Weiter nach rechts geschoben, um Textüberdeckung zu vermeiden */
}

.curved-arrow svg {
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.arrow-white {
    color: white;
    right: -40px; /* Moved much closer to avoid sticking out too far */
    top: -30px;
    transform: rotate(15deg) scale(0.8);
}

.arrow-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-top: -15px;
    letter-spacing: 1px;
    background: var(--accent-green);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes arrow-float {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    50% { transform: translate(5px, -5px) rotate(8deg); }
}

/* Responsive CTA Arrow */
@media (max-width: 1200px) {
    .curved-arrow {
        right: -90px;
        transform: scale(0.8) rotate(5deg);
    }
    .hero-arrow {
        right: -130px; /* Auch hier weiter nach rechts */
    }
}

@media (max-width: 991px) {
    .curved-arrow {
        display: none; /* Hide on smaller screens to avoid overflow */
    }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Beautiful Fade In Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-image {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInImage 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInImage {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================
   5. FOOTER
   ========================================= */
.footer {
    background-color: #001229;
    color: rgba(255,255,255,0.7);
    padding: 50px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-links {
    margin: 10px 0;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: var(--transition-standard);
    font-size: 0.95rem;
    padding: 0 10px;
}

.footer-links a:hover {
    color: var(--accent-green);
    text-decoration: none;
}

.copyright-text {
    font-size: 0.85rem;
    opacity: 0.5;
    margin-top: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .main-heading { font-size: clamp(2rem, 3.5vh, 2.8rem) !important; letter-spacing: -1px; }
    .hero-container { gap: 40px; }
    .cards-grid { gap: 20px; }
    
    .btn, .btn-large { width: 100%; max-width: 450px; }
}

@media (max-width: 860px) {
    .hero-section {
        height: auto !important;
        max-height: none !important;
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
    }
    
    .hero-image {
        order: 2;
        margin-top: 40px;
        margin-bottom: 20px;
        max-width: 80%;
    }

    .hero-content {
        order: 1;
    }
    
    .eyebrow { margin: 0 auto 1.5rem; }
    
    .cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn { margin: 0 auto; width: 100%; max-width: 100%; padding: 22px 30px; }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-heading { font-size: 2.4rem !important; letter-spacing: -1px; }
    .sub-heading { font-size: 1.05rem !important; }
    
    .pain-section { padding: 60px 0; }
    .section-heading { font-size: 1.8rem; margin-bottom: 2rem; }
    .pain-list-wrapper { padding: 30px 20px; }
    .pain-item .text { font-size: 1.1rem; }
    
    .cards-grid { grid-template-columns: 1fr; }
    .solution-card { padding: 40px 20px; }
    
    .action-section { padding: 60px 0; }
    .action-box { padding: 40px 20px; }
    .action-section .action-heading { font-size: 1.5rem; }
    
    .btn-large { font-size: 1.1rem; padding: 18px; width: 100%; }
    .btn { font-size: 1.1rem; padding: 18px; width: 100%; }
    
    .email-input { padding: 18px 20px 18px 55px; }

    .curved-arrow, .hero-arrow, .arrow-white {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }

    .main-heading { font-size: 1.95rem !important; letter-spacing: -0.5px; }
    .eyebrow { font-size: 0.8rem; line-height: 1.4; white-space: normal; text-align: center; }
    .hero-image { max-width: 100%; margin-top: 30px; }
    
    .pain-item { flex-direction: column; text-align: center; gap: 15px; }
    .icon-box.red-cross { margin-right: 0; }
    
    .hero-counter { margin-top: 20px; }
    .counter-box { font-size: 0.95rem; padding: 10px 15px; width: 100%; justify-content: center; overflow: hidden; }
    .counter-number { font-size: 1.2rem; min-width: 30px; }
    
    .btn { font-size: 0.9rem; padding: 16px 15px; white-space: normal; line-height: 1.4; }
    .btn-large { font-size: 0.9rem; padding: 16px 15px; }
    
    .action-section .action-heading { font-size: 1.3rem; }
}

/* =========================================
   CLIFFHANGER BOX (SECRET METHOD)
   ========================================= */
.cliffhanger-box {
    margin: 4rem auto 0;
    max-width: 800px;
    text-align: center;
    background: linear-gradient(135deg, #001a3a 0%, #002a5c 100%);
    border: 3px solid #ffcc00;
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 20px 50px rgba(0, 42, 92, 0.3), 0 0 0 5px rgba(255, 204, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    z-index: 10;
}

.cliffhanger-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 42, 92, 0.4), 0 0 0 8px rgba(255, 204, 0, 0.15);
}

.cliffhanger-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: rotate-glow 10s linear infinite;
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cliffhanger-box i {
    color: #ffcc00;
    font-size: 3rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.6));
    display: inline-block;
}

.cliffhanger-text {
    font-size: 1.35rem;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.cliffhanger-text strong {
    color: #ffcc00;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cliffhanger-highlight {
    background: linear-gradient(120deg, #ffcc00 0%, #ff9900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.5rem;
    display: inline-block;
    padding: 0 5px;
}

@media (max-width: 768px) {
    .cliffhanger-box {
        padding: 30px 20px;
        margin: 3rem 15px 0;
    }
    .cliffhanger-text {
        font-size: 1.15rem;
    }
    .cliffhanger-highlight {
        font-size: 1.3rem;
    }
    .cliffhanger-box i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cliffhanger-box {
        padding: 25px 15px;
        margin: 2rem 5px 0;
    }
    .cliffhanger-text {
        font-size: 1.05rem;
    }
    .cliffhanger-highlight {
        font-size: 1.15rem;
    }
    .cliffhanger-box i {
        font-size: 2rem;
    }
}

/* =========================================
   EXIT INTENT POPUP
   ========================================= */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 42, 92, 0.85); /* deep blue transparent */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.exit-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 650px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    text-align: center;
}

.exit-popup-overlay.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
}

.exit-popup-close:hover {
    color: white;
}

.exit-popup-header {
    background: #dc2626; /* Red warning */
    color: white;
    padding: 30px 20px 20px;
    position: relative;
}

.exit-popup-header h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.exit-popup-header p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

.exit-popup-body {
    padding: 40px 30px;
}

.exit-popup-body h3 {
    font-size: 1.6rem;
    color: var(--text-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.exit-popup-body p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.exit-popup-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
}

.exit-popup-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px;
    text-align: center !important;
}

.exit-popup-no {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
}

.exit-popup-no:hover {
    color: var(--text-dark);
}

@media (max-width: 600px) {
    .exit-popup-header h2 {
        font-size: 1.8rem;
    }
    .exit-popup-body h3 {
        font-size: 1.3rem;
    }
    .exit-popup-body {
        padding: 30px 20px;
    }
}
