/* === CSS Reset & Variables === */
:root {
    --bg-darker: #f7f8fa;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;

    --accent-gold: #d97706;
    --accent-gold-hover: #b45309;
    --accent-red: #ea3323;
    --accent-red-hover: #f74d3f;
    --accent-orange: #ff5e00;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --glow-gold: 0 0 20px rgba(226, 180, 59, 0.4);
    --glow-red: 0 0 20px rgba(234, 51, 35, 0.4);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 2.5rem;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-italic {
    font-style: italic;
}

.accent-gold {
    color: var(--accent-gold);
}

.accent-red {
    color: var(--accent-red);
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.large-p {
    font-size: 1.15rem;
}

.highlight-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.15rem;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* === Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === Components === */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: #fff;
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-red-hover), #ff8033);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(234, 51, 35, 0.6);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    padding: 0.6rem 1.5rem;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.full-width {
    width: 100%;
    display: block;
}

.large-btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(234, 51, 35, 0.6);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 15px rgba(234, 51, 35, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(234, 51, 35, 0);
    }
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(226, 180, 59, 0.15);
    color: var(--accent-gold);
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid rgba(226, 180, 59, 0.3);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* === Animations === */
.fade-el {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-el.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo img {
    height: 50px;
    object-fit: contain;
}

/* === Hero Section === */
.top-wrapper {
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 2rem;
    padding-left: 5%;
}

.hero h1 {
    font-size: 3.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero .hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero .hero-subtext strong {
    color: #111827;
}

.split-text {
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.split-text p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

/* === Target Audience === */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 180, 59, 0.3);
    background: #f9fafb;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-muted);
}

/* === Truth Section === */
.truth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-list {
    list-style: none;
    margin: 2rem 0;
}

.stats-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: var(--bg-darker);
    padding: 1rem 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-red);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    width: 100px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.truth-box {
    background: rgba(226, 180, 59, 0.05);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(226, 180, 59, 0.2);
}

.truth-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* === Process === */
.list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.list-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 6px;
    position: relative;
    padding-left: 3rem;
    font-weight: 500;
    transition: var(--transition);
}

.list-item:hover {
    background: #f9fafb;
}

.list-item::before {
    content: "⨯";
    position: absolute;
    left: 1.2rem;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.emphasis-box {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    display: inline-block;
    max-width: 600px;
    margin: 0 auto;
}

/* === Result & Offer === */
.split-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4cd964;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(76, 217, 100, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.transformation-results {
    margin-top: 3rem;
}

.transformation-results p {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    padding: 1rem;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 6px 6px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-red));
}

.badge-premium {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(226, 180, 59, 0.1);
    color: var(--accent-gold);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.price-old {
    color: var(--text-muted);
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 2rem;
}

.price-new span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.inklusive-title {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.perks-list {
    list-style: none;
    margin-bottom: 2rem;
}

.perks-list li {
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.no-bs p {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

/* === Scarcity === */
.scarcity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.urgency-box {
    background: linear-gradient(145deg, var(--bg-card), #101115);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(234, 51, 35, 0.2);
    text-align: center;
    position: relative;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.limit-badge {
    display: inline-block;
    background: rgba(234, 51, 35, 0.1);
    color: var(--accent-red);
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    border: 1px solid rgba(234, 51, 35, 0.3);
}

.limit-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.limit-features span {
    background: rgba(0, 0, 0, 0.03);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* === Final CTA === */
.final-cta {
    position: relative;
    padding: 8rem 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 255, 255, 0.8) 50%, var(--bg-dark) 100%);
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 5rem;
}

blockquote {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.decision-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.decision-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.action-trigger {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* === Footer === */
.footer {
    background: #f0f0f5;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* === Form Page === */
.form-page {
    background: var(--bg-dark);
}

.form-container-wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 1rem 4rem 1rem;
}

.form-box {
    background: var(--bg-card);
    width: 100%;
    max-width: 600px;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-box h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-box>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.06);
}

.btn-submit {
    margin-top: 1rem;
    font-size: 1.1rem;
    width: 100%;
}

.secure-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* === Responsiveness === */
@media (max-width: 900px) {

    .split-offer,
    .truth-grid,
    .scarcity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card,
    .urgency-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .decision-box {
        padding: 2rem;
    }

    .footer-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 0.75rem;
    }
}

/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 800px;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    z-index: 99999;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: cookieSlideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.cookie-text h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.cookie-text p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cookie-small {
    font-size: 0.85rem;
}

.cookie-small a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.hidden {
    display: none;
}

@keyframes cookieSlideUp {
    from {
        transform: translate(-50%, 30px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 768px) {

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}