/* ============================================================
   IMMOENGINE LANDING PAGE – CSS
   Brand: Manrope, #F20D0D (Signature Red)
   Completely separate from Wertsicherungsrechner styles
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    --ie-red: #F20D0D;
    --ie-red-hover: #D10B0B;
    --ie-red-light: rgba(242, 13, 13, 0.08);
    --ie-red-glow: rgba(242, 13, 13, 0.25);
    --ie-dark: #1A1A1A;
    --ie-dark-soft: #2A2A2A;
    --ie-gray-900: #1A1A1A;
    --ie-gray-800: #333333;
    --ie-gray-700: #4A4A4A;
    --ie-gray-600: #666666;
    --ie-gray-500: #888888;
    --ie-gray-400: #AAAAAA;
    --ie-gray-300: #CCCCCC;
    --ie-gray-200: #E5E5E5;
    --ie-gray-100: #F0F0F0;
    --ie-gray-50: #F9F9F9;
    --ie-white: #FFFFFF;
    --ie-font: 'Manrope', sans-serif;
    --ie-radius: 12px;
    --ie-radius-sm: 8px;
    --ie-radius-lg: 16px;
    --ie-radius-xl: 24px;
    --ie-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --ie-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    --ie-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Styleguide v1.0 */
    --ie-shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --ie-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
    --ie-shadow-red: 0 8px 30px rgba(242, 13, 13, 0.3);
    --ie-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ie-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
/* Override WordPress theme background on immoengine pages */
html:has(.landing-page) {
    background: #FFFFFF !important;
    background-image: none !important;
}

.landing-page,
.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.landing-page {
    font-family: var(--ie-font);
    color: var(--ie-dark);
    background: var(--ie-white) !important;
    background-image: none !important;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page * {
    border-radius: 0;
    /* Reset global IR override */
}

/* Override the IR theme's global border-radius: 0 rule for landing page elements */
.landing-page .ie-rounded {
    border-radius: var(--ie-radius) !important;
}

.landing-page .ie-rounded-sm {
    border-radius: var(--ie-radius-sm) !important;
}

.landing-page .ie-rounded-lg {
    border-radius: var(--ie-radius-lg) !important;
}

.landing-page .ie-rounded-xl {
    border-radius: var(--ie-radius-xl) !important;
}

.landing-page .ie-rounded-full {
    border-radius: 50% !important;
}

.landing-page .ie-rounded-pill {
    border-radius: 999px !important;
}

/* --- Container --- */
.ie-container {
    max-width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
    /* Styleguide: Container Padding = 32px */
}

/* --- Typography --- */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
    font-family: var(--ie-font);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ie-dark);
    letter-spacing: -0.02em;
}

.ie-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ie-red);
    margin-bottom: 16px;
}

.ie-section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--ie-red);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.ie-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--ie-transition);
}

.ie-header.scrolled {
    box-shadow: var(--ie-shadow);
}

.ie-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ie-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ie-logo img {
    height: 56px;
    width: auto;
}

.ie-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ie-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ie-gray-700);
    text-decoration: none;
    transition: var(--ie-transition-fast);
    position: relative;
}

.ie-nav a:hover {
    color: var(--ie-red);
}

.ie-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ie-red);
    transition: width 0.3s ease;
}

.ie-nav a:hover::after {
    width: 100%;
}

.ie-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--ie-red);
    color: var(--ie-white) !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: var(--ie-radius-sm) !important;
    transition: var(--ie-transition);
    border: none;
    cursor: pointer;
}

.ie-nav-cta:hover {
    background: var(--ie-red-hover);
    transform: translateY(-1px);
    box-shadow: var(--ie-shadow-red);
}

.ie-nav-cta::after {
    display: none !important;
}

/* Mobile Menu Button */
.ie-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--ie-dark);
}

.ie-mobile-toggle svg {
    width: 28px;
    height: 28px;
}

/* Mobile Menu */
.ie-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

.ie-mobile-menu.active {
    display: flex;
}

.ie-mobile-menu a {
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ie-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--ie-gray-100);
    transition: var(--ie-transition-fast);
}

.ie-mobile-menu a:hover {
    color: var(--ie-red);
    padding-left: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ie-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    /* Header offset */
    overflow: hidden;
}

.ie-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ie-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ie-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.65) 50%,
            rgba(26, 26, 26, 0.4) 100%);
    z-index: 1;
}

.ie-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}

.ie-hero h1 {
    font-size: 58px;
    /* Landing Hero – größer als Subpage (36px) */
    color: var(--ie-white);
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.ie-hero h1 .ie-accent {
    color: var(--ie-red);
}

.ie-hero-subtitle {
    font-size: 1.35rem;
    /* ~22px – gut lesbar im Hero */
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 580px;
}

.ie-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ie-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--ie-font);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--ie-radius) !important;
    transition: var(--ie-transition);
    cursor: pointer;
    border: none;
}

.ie-btn-hero-primary {
    background: var(--ie-red);
    color: var(--ie-white);
    box-shadow: var(--ie-shadow-red);
    border-radius: 8px !important;
    /* Styleguide: Button Radius = 8px */
}

.ie-btn-hero-primary:hover {
    background: var(--ie-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(242, 13, 13, 0.4);
    filter: brightness(1.08);
    /* Styleguide: Hover = Brightness Shift */
}

.ie-btn-hero-primary:active {
    transform: scale(0.97);
    /* Styleguide: active:scale-95 */
}

.ie-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--ie-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px !important;
    /* Styleguide: Button Radius = 8px */
}

.ie-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Stats Bar */
.ie-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ie-stat {
    text-align: left;
}

.ie-stat-value {
    font-size: 2.4rem;
    /* Größere Stats für Hero-Impact */
    font-weight: 800;
    color: var(--ie-white);
    line-height: 1;
    margin-bottom: 6px;
}

.ie-stat-value .ie-accent {
    color: var(--ie-red);
}

.ie-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   FEATURE HIGHLIGHT SECTION
   ============================================================ */
.ie-feature-section {
    padding: 96px 0;
    /* Styleguide: Section Margins = 48px × 2 */
    background: var(--ie-gray-50);
}

.ie-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ie-feature-mockup {
    position: relative;
    background: var(--ie-white);
    border-radius: var(--ie-radius-lg) !important;
    box-shadow: var(--ie-shadow-xl);
    padding: 32px;
    border: 1px solid var(--ie-gray-200);
}

.ie-feature-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ie-gray-100);
}

.ie-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
    background: var(--ie-gray-200);
}

.ie-mockup-dot:first-child {
    background: #FF5F56;
}

.ie-mockup-dot:nth-child(2) {
    background: #FFBD2E;
}

.ie-mockup-dot:nth-child(3) {
    background: #27C93F;
}

.ie-feature-card-inner {
    background: var(--ie-gray-50);
    border-radius: var(--ie-radius) !important;
    padding: 28px;
    border: 1px solid var(--ie-gray-100);
}

.ie-feature-card-inner h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ie-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.ie-feature-big-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ie-red);
    line-height: 1;
    margin-bottom: 8px;
}

.ie-feature-big-label {
    font-size: 0.95rem;
    color: var(--ie-gray-600);
    font-weight: 500;
}

.ie-feature-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.ie-bar {
    height: 8px;
    background: var(--ie-gray-200);
    border-radius: 999px !important;
    overflow: hidden;
    position: relative;
}

.ie-bar-fill {
    height: 100%;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--ie-red), #FF4444);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-feature-text h2 {
    font-size: 32px;
    /* Landing Section H2 – größer als Subpage (24px) */
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.ie-feature-text p {
    font-size: 16px;
    /* Styleguide: Body = 16px */
    color: var(--ie-gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    /* Styleguide: Element Gap = 16px */
}

.ie-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.ie-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--ie-gray-700);
    font-weight: 500;
}

.ie-feature-list li .ie-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--ie-red-light);
    color: var(--ie-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px !important;
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 1px;
}

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.ie-tools-section {
    padding: 96px 0;
    /* Styleguide: Section Margins = 48px × 2 */
    background: var(--ie-white);
}

.ie-tools-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.ie-tools-header h2 {
    font-size: 32px;
    /* Landing Section H2 – größer als Subpage (24px) */
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.ie-tools-header p {
    font-size: 1.05rem;
    color: var(--ie-gray-500);
    font-weight: 400;
}

.ie-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ie-tool-card {
    position: relative;
    background: var(--ie-white);
    border: 1px solid var(--ie-gray-200);
    border-radius: 12px !important;
    /* Styleguide: Card Radius = 12px */
    padding: 36px 28px;
    transition: var(--ie-transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
}

.ie-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ie-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-tool-card:hover {
    border-color: transparent;
    box-shadow: var(--ie-shadow-soft);
    /* Styleguide: shadow-soft on hover */
    transform: translateY(-4px);
    /* Styleguide: translateY(-4px) */
}

.ie-tool-card:hover::before {
    transform: scaleX(1);
}

/* 3D Icon container – supports both emoji and <img> */
.ie-tool-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--ie-transition);
}

.ie-tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.ie-tool-card:hover .ie-tool-icon img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.ie-tool-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ie-dark);
}

.ie-tool-card p {
    font-size: 0.92rem;
    color: var(--ie-gray-600);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.ie-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ie-red);
    transition: var(--ie-transition-fast);
}

.ie-tool-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ie-tool-card:hover .ie-tool-link svg {
    transform: translateX(4px);
}

/* ============================================================
   VPI CHART SECTION
   ============================================================ */
.ie-chart-section {
    padding: 100px 0 80px;
    background: var(--ie-dark);
    position: relative;
    overflow: hidden;
}

.ie-chart-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ie-red-glow), transparent 70%);
    pointer-events: none;
}

.ie-chart-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 13, 13, 0.1), transparent 70%);
    pointer-events: none;
}

.ie-chart-card {
    background: var(--ie-white);
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.ie-chart-header {
    padding: 28px 32px 0;
    border-bottom: 1px solid var(--ie-gray-100);
    padding-bottom: 16px;
}

.ie-chart-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ie-dark);
    margin-bottom: 4px;
}

.ie-chart-header p {
    font-size: 0.8rem;
    color: var(--ie-gray-400);
}

.ie-chart-canvas-wrap {
    padding: 24px 32px;
    position: relative;
    height: 420px;
}

.ie-chart-canvas-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}

.ie-chart-footer {
    display: flex;
    justify-content: space-between;
    padding: 12px 32px;
    background: var(--ie-gray-50);
    border-top: 1px solid var(--ie-gray-100);
    font-size: 0.75rem;
    color: var(--ie-gray-400);
}

@media (max-width: 768px) {
    .ie-chart-canvas-wrap {
        height: 300px;
        padding: 16px;
    }

    .ie-chart-header {
        padding: 20px 16px 12px;
    }

    .ie-chart-footer {
        flex-direction: column;
        gap: 4px;
        padding: 10px 16px;
        text-align: center;
    }
}

/* ============================================================
   INFORMATION SECTION – MieWeG & Rechtliches
   ============================================================ */
.ie-info-section {
    padding: 100px 0 80px;
    background: var(--ie-gray-50);
    position: relative;
}

.ie-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ie-gray-200), transparent);
}

.ie-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ie-info-card {
    background: var(--ie-white);
    border-radius: 14px !important;
    padding: 28px 24px;
    border: 1px solid var(--ie-gray-100);
    transition: var(--ie-transition);
    position: relative;
}

.ie-info-card:hover {
    border-color: var(--ie-red);
    box-shadow: 0 8px 30px rgba(242, 13, 13, 0.08);
    transform: translateY(-2px);
}

.ie-info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--ie-red-light);
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ie-info-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ie-red);
}

.ie-info-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ie-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.ie-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ie-info-list li {
    font-size: 0.88rem;
    color: var(--ie-gray-600);
    padding: 6px 0;
    border-bottom: 1px solid var(--ie-gray-50);
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.ie-info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50% !important;
    background: var(--ie-red);
    opacity: 0.5;
}

.ie-info-list li:last-child {
    border-bottom: none;
}

/* Bottom area: Scope + Datenbasis */
.ie-info-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ie-info-bottom-card {
    background: var(--ie-white);
    border-radius: 14px !important;
    padding: 32px;
    border: 1px solid var(--ie-gray-100);
}

.ie-info-bottom-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ie-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.ie-info-bottom-card p {
    font-size: 0.9rem;
    color: var(--ie-gray-600);
    line-height: 1.7;
}

.ie-info-scope-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ie-info-scope-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ie-info-scope-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 28px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: 6px !important;
    flex-shrink: 0;
    margin-top: 2px;
}

.ie-info-scope-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.ie-info-scope-badge-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

.ie-info-scope-badge-gray {
    background: var(--ie-gray-100);
    color: var(--ie-gray-600);
}

.ie-info-scope-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--ie-dark);
    margin-bottom: 2px;
}

.ie-info-scope-item p {
    font-size: 0.82rem;
    color: var(--ie-gray-500);
    line-height: 1.5;
    margin: 0;
}

.ie-info-disclaimer {
    margin-top: 20px;
    padding: 16px;
    background: rgba(242, 13, 13, 0.04);
    border-left: 3px solid var(--ie-red);
    border-radius: 0 8px 8px 0 !important;
    font-size: 0.82rem;
    color: var(--ie-gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ie-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ie-info-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ie-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.ie-newsletter-section {
    padding: 80px 0;
    background: var(--ie-dark);
    position: relative;
    overflow: hidden;
}

.ie-newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ie-red-glow), transparent 70%);
    pointer-events: none;
}

.ie-newsletter-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.ie-newsletter-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--ie-white);
    margin-bottom: 10px;
}

.ie-newsletter-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.ie-newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ie-newsletter-input {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--ie-radius-sm) !important;
    color: var(--ie-white);
    font-size: 0.95rem;
    font-family: var(--ie-font);
    width: 300px;
    transition: var(--ie-transition);
    outline: none;
}

.ie-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ie-newsletter-input:focus {
    border-color: var(--ie-red);
    background: rgba(255, 255, 255, 0.12);
}

.ie-newsletter-btn {
    padding: 14px 28px;
    background: var(--ie-red);
    color: var(--ie-white);
    font-family: var(--ie-font);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--ie-radius-sm) !important;
    cursor: pointer;
    transition: var(--ie-transition);
    white-space: nowrap;
}

.ie-newsletter-btn:hover {
    background: var(--ie-red-hover);
    transform: translateY(-1px);
    box-shadow: var(--ie-shadow-red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ie-footer {
    background: var(--ie-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 32px;
}

.ie-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.ie-footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}

.ie-footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 280px;
}

.ie-footer h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.ie-footer-links {
    list-style: none;
    padding: 0;
}

.ie-footer-links li {
    margin-bottom: 10px;
}

.ie-footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--ie-transition-fast);
}

.ie-footer-links a:hover {
    color: var(--ie-white);
    padding-left: 4px;
}

.ie-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ie-footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.ie-footer-legal {
    display: flex;
    gap: 24px;
}

.ie-footer-legal a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--ie-transition-fast);
}

.ie-footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.ie-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--ie-white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-cookie-banner.visible {
    transform: translateY(0);
}

.ie-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.ie-cookie-text {
    flex: 1;
}

.ie-cookie-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ie-dark);
    margin-bottom: 6px;
}

.ie-cookie-text p {
    font-size: 0.85rem;
    color: var(--ie-gray-600);
    line-height: 1.5;
}

.ie-cookie-text a {
    color: var(--ie-red);
    text-decoration: underline;
}

.ie-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ie-cookie-btn {
    padding: 10px 22px;
    font-family: var(--ie-font);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--ie-radius-sm) !important;
    cursor: pointer;
    transition: var(--ie-transition);
    border: none;
}

.ie-cookie-btn-accept {
    background: var(--ie-red);
    color: var(--ie-white);
}

.ie-cookie-btn-accept:hover {
    background: var(--ie-red-hover);
}

.ie-cookie-btn-necessary {
    background: var(--ie-gray-100);
    color: var(--ie-gray-700);
    border: 1px solid var(--ie-gray-200);
}

.ie-cookie-btn-necessary:hover {
    background: var(--ie-gray-200);
}

.ie-cookie-btn-settings {
    background: transparent;
    color: var(--ie-gray-500);
    text-decoration: underline;
    padding: 10px 12px;
}

.ie-cookie-btn-settings:hover {
    color: var(--ie-dark);
}

/* ============================================================
   COOKIE SETTINGS MODAL
   ============================================================ */
.ie-cookie-settings-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.ie-cookie-settings-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ie-cookie-settings-modal {
    background: var(--ie-white);
    border-radius: 16px !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 520px;
    padding: 36px 32px 28px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-cookie-settings-overlay.active .ie-cookie-settings-modal {
    transform: translateY(0) scale(1);
}

.ie-cookie-settings-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--ie-gray-50);
    border-radius: 50% !important;
    cursor: pointer;
    color: var(--ie-gray-500);
    transition: var(--ie-transition-fast);
    font-size: 0;
}

.ie-cookie-settings-close:hover {
    background: var(--ie-gray-100);
    color: var(--ie-dark);
}

.ie-cookie-settings-close svg {
    width: 16px;
    height: 16px;
}

.ie-cookie-settings-header {
    margin-bottom: 24px;
}

.ie-cookie-settings-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ie-dark);
    margin-bottom: 8px;
}

.ie-cookie-settings-header p {
    font-size: 0.9rem;
    color: var(--ie-gray-500);
    line-height: 1.6;
}

.ie-cookie-category {
    border: 1px solid var(--ie-gray-100);
    border-radius: 12px !important;
    padding: 20px;
    margin-bottom: 12px;
    transition: var(--ie-transition-fast);
}

.ie-cookie-category:hover {
    border-color: var(--ie-gray-200);
}

.ie-cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ie-cookie-category-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ie-dark);
    margin-bottom: 2px;
}

.ie-cookie-category-info p {
    font-size: 0.8rem;
    color: var(--ie-gray-400);
    line-height: 1.4;
}

/* Toggle Switch */
.ie-cookie-toggle {
    position: relative;
    width: 48px;
    min-width: 48px;
    height: 26px;
    cursor: pointer;
}

.ie-cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ie-cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--ie-gray-200);
    border-radius: 26px !important;
    transition: var(--ie-transition);
}

.ie-cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50% !important;
    background: var(--ie-white);
    bottom: 3px;
    left: 3px;
    transition: var(--ie-transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.ie-cookie-toggle input:checked+.ie-cookie-toggle-slider {
    background: var(--ie-red);
}

.ie-cookie-toggle input:checked+.ie-cookie-toggle-slider::before {
    transform: translateX(22px);
}

.ie-cookie-toggle input:disabled+.ie-cookie-toggle-slider {
    background: var(--ie-red);
    opacity: 0.6;
    cursor: not-allowed;
}

.ie-cookie-toggle input:disabled+.ie-cookie-toggle-slider::before {
    transform: translateX(22px);
}

.ie-cookie-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 4px !important;
    margin-left: 8px;
}

.ie-cookie-badge-required {
    background: var(--ie-gray-100);
    color: var(--ie-gray-500);
}

.ie-cookie-settings-actions {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.ie-cookie-settings-save {
    flex: 1;
    padding: 14px 24px;
    background: var(--ie-red);
    color: var(--ie-white);
    border: none;
    border-radius: 8px !important;
    font-family: var(--ie-font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ie-transition);
}

.ie-cookie-settings-save:hover {
    background: var(--ie-red-hover);
}

.ie-cookie-settings-accept-all {
    flex: 1;
    padding: 14px 24px;
    background: var(--ie-gray-50);
    color: var(--ie-dark);
    border: 1px solid var(--ie-gray-200);
    border-radius: 8px !important;
    font-family: var(--ie-font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ie-transition);
}

.ie-cookie-settings-accept-all:hover {
    background: var(--ie-gray-100);
}

/* ============================================================
   LOGIN MODAL
   ============================================================ */
.ie-login-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 24px;
}

.ie-login-overlay.active {
    opacity: 1;
    visibility: visible;
}

.ie-login-modal {
    background: var(--ie-white);
    border-radius: 16px !important;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 420px;
    padding: 44px 40px 36px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ie-login-overlay.active .ie-login-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.ie-login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--ie-gray-50);
    border-radius: 50% !important;
    cursor: pointer;
    color: var(--ie-gray-500);
    transition: var(--ie-transition-fast);
    font-size: 0;
}

.ie-login-close:hover {
    background: var(--ie-gray-100);
    color: var(--ie-dark);
}

.ie-login-close svg {
    width: 18px;
    height: 18px;
}

/* Header */
.ie-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.ie-login-icon {
    width: 56px;
    height: 56px;
    background: var(--ie-red-light);
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ie-login-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ie-red);
}

.ie-login-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ie-dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.ie-login-header p {
    font-size: 0.9rem;
    color: var(--ie-gray-500);
    font-weight: 400;
}

/* Form */
.ie-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ie-login-field {
    position: relative;
}

.ie-login-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ie-gray-700);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.ie-login-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--ie-font);
    font-size: 0.95rem;
    color: var(--ie-dark);
    background: var(--ie-gray-50);
    border: 1.5px solid var(--ie-gray-200);
    border-radius: 10px !important;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ie-login-input::placeholder {
    color: var(--ie-gray-400);
}

.ie-login-input:focus {
    border-color: var(--ie-red);
    box-shadow: 0 0 0 3px rgba(242, 13, 13, 0.1);
    background: var(--ie-white);
}

.ie-login-input.error {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Password field with toggle */
.ie-login-password-wrap {
    position: relative;
}

.ie-login-password-wrap .ie-login-input {
    padding-right: 48px;
}

.ie-login-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ie-gray-400);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.ie-login-password-toggle:hover {
    color: var(--ie-gray-700);
}

.ie-login-password-toggle svg {
    width: 20px;
    height: 20px;
}

/* Remember me + forgot password row */
.ie-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -4px;
}

.ie-login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--ie-gray-600);
    cursor: pointer;
}

.ie-login-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ie-red);
    cursor: pointer;
}

.ie-login-forgot {
    font-size: 0.85rem;
    color: var(--ie-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ie-login-forgot:hover {
    color: var(--ie-red-hover);
    text-decoration: underline;
}

/* Submit button */
.ie-login-submit {
    width: 100%;
    padding: 14px;
    background: var(--ie-red);
    color: var(--ie-white);
    font-family: var(--ie-font);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 10px !important;
    cursor: pointer;
    transition: var(--ie-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.ie-login-submit:hover {
    background: var(--ie-red-hover);
    transform: translateY(-1px);
    box-shadow: var(--ie-shadow-red);
    filter: brightness(1.08);
}

.ie-login-submit:active {
    transform: scale(0.98);
}

.ie-login-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

/* Loading spinner in button */
.ie-login-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50% !important;
    animation: ieLoginSpin 0.6s linear infinite;
    display: none;
}

.ie-login-submit.loading .ie-login-spinner {
    display: block;
}

.ie-login-submit.loading .ie-login-submit-text {
    display: none;
}

@keyframes ieLoginSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Error message */
.ie-login-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px !important;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: #DC2626;
    display: none;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.ie-login-error.visible {
    display: flex;
}

.ie-login-error svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Divider */
.ie-login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
    color: var(--ie-gray-400);
    font-size: 0.8rem;
    font-weight: 500;
}

.ie-login-divider::before,
.ie-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ie-gray-200);
}

/* Footer link */
.ie-login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--ie-gray-100);
    font-size: 0.88rem;
    color: var(--ie-gray-500);
}

.ie-login-footer a {
    color: var(--ie-red);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ie-login-footer a:hover {
    color: var(--ie-red-hover);
    text-decoration: underline;
}

/* Header login button */
.ie-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: transparent;
    color: var(--ie-gray-700);
    font-family: var(--ie-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid var(--ie-gray-200);
    border-radius: 8px !important;
    cursor: pointer;
    transition: var(--ie-transition-fast);
}

.ie-nav-login:hover {
    border-color: var(--ie-red);
    color: var(--ie-red);
    background: var(--ie-red-light);
}

.ie-nav-login svg {
    width: 16px;
    height: 16px;
}

/* Logged-in state header */
.ie-nav-user {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ie-gray-700);
}

.ie-nav-user-avatar {
    width: 32px;
    height: 32px;
    background: var(--ie-red);
    color: var(--ie-white);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.ie-nav-logout {
    font-size: 0.82rem;
    color: var(--ie-gray-400);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.ie-nav-logout:hover {
    color: var(--ie-red);
}

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.ie-legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.ie-legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.ie-legal-page .ie-legal-subtitle {
    font-size: 1rem;
    color: var(--ie-gray-500);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--ie-gray-200);
}

.ie-legal-page h2 {
    font-size: 1.35rem;
    margin: 40px 0 16px;
    padding-top: 24px;
}

.ie-legal-page h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
    font-weight: 700;
}

.ie-legal-page p {
    font-size: 0.95rem;
    color: var(--ie-gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.ie-legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.ie-legal-page ul li {
    font-size: 0.95rem;
    color: var(--ie-gray-700);
    line-height: 1.8;
    margin-bottom: 4px;
}

.ie-legal-page a {
    color: var(--ie-red);
    text-decoration: underline;
}

.ie-legal-page a:hover {
    color: var(--ie-red-hover);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.ie-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ie-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.ie-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ie-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.ie-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ie-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.ie-delay-1 {
    transition-delay: 0.1s;
}

.ie-delay-2 {
    transition-delay: 0.2s;
}

.ie-delay-3 {
    transition-delay: 0.3s;
}

.ie-delay-4 {
    transition-delay: 0.4s;
}

/* Bar animation */
.ie-bar-fill[data-width] {
    width: 0;
}

.ie-feature-mockup.visible .ie-bar-fill[data-width="78"] {
    width: 78%;
}

.ie-feature-mockup.visible .ie-bar-fill[data-width="62"] {
    width: 62%;
}

.ie-feature-mockup.visible .ie-bar-fill[data-width="45"] {
    width: 45%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ie-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ie-feature-mockup {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .ie-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .ie-nav {
        display: none;
    }

    .ie-mobile-toggle {
        display: block;
    }

    .ie-hero {
        min-height: 75vh;
    }

    .ie-hero-content {
        padding: 40px 0;
    }

    .ie-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .ie-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ie-btn-hero {
        justify-content: center;
    }

    .ie-tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ie-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .ie-newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .ie-newsletter-input {
        width: 100%;
    }

    .ie-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ie-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .ie-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ie-cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .ie-cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .ie-cookie-btn {
        width: 100%;
    }

    .ie-feature-section,
    .ie-tools-section {
        padding: 60px 0;
    }
}

/* ============================================================
   ULTRA-WIDE / HIGH-RES DISPLAY SCALING
   Fluid responsive design for extremely wide screens
   Content scales proportionally using vw and clamp() without 
   being constrained by fixed max-width limits or CSS zoom.
   ============================================================ */

/* 1440p+ / Wide Desktop */
@media screen and (min-width: 1600px) {
    .ie-container {
        max-width: 88vw;
        /* No fixed pixel limit */
    }
}

/* 2K / QHD displays (2200px+) */
@media screen and (min-width: 2200px) {
    .ie-container {
        max-width: 82vw;
        padding: 0 48px;
    }

    .landing-page {
        font-size: 1.05rem;
    }

    .landing-page .ie-hero h1 {
        font-size: clamp(48px, 4vw, 80px);
    }

    .landing-page .ie-feature-text h2,
    .landing-page .ie-tools-header h2 {
        font-size: clamp(32px, 2.5vw, 54px);
    }

    .landing-page .ie-hero-subtitle {
        font-size: clamp(1.35rem, 1.5vw, 2rem);
    }

    .ie-tools-grid {
        gap: 48px;
    }
}

/* Wide 2K / Ultrawide (2800px+) */
@media screen and (min-width: 2800px) {
    .ie-container {
        max-width: 75vw;
        padding: 0 64px;
    }

    .landing-page {
        font-size: 1.15rem;
    }

    .landing-page .ie-hero h1 {
        font-size: clamp(56px, 4.5vw, 100px);
    }

    .ie-header-inner {
        height: 96px;
    }

    .ie-logo img {
        height: 72px;
    }

    .ie-nav {
        gap: 48px;
    }

    .ie-nav a,
    .ie-nav-login {
        font-size: 1.1rem;
    }
}

/* 4K displays and above (3400px+) */
@media screen and (min-width: 3400px) {
    .ie-container {
        max-width: 70vw;
        padding: 0 80px;
    }

    .landing-page {
        font-size: 1.25rem;
    }

    .landing-page .ie-hero h1 {
        font-size: clamp(72px, 5vw, 120px);
    }

    .landing-page .ie-feature-text h2,
    .landing-page .ie-tools-header h2 {
        font-size: clamp(42px, 3vw, 72px);
    }
}

/* Extreme widths (very low browser zoom on high-res) */
@media screen and (min-width: 4500px) {
    .ie-container {
        max-width: 65vw;
        padding: 0 96px;
    }

    .landing-page {
        font-size: 1.5rem;
    }

    .ie-header-inner {
        height: 120px;
    }

    .ie-logo img {
        height: 90px;
    }
}