:root {
    --primary: #0088ff;
    --primary-color: #0088ff;
    --primary-hover: #0066cc;
    --secondary-color: #1a202c; /* Clean dark text color */
    --background-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    --card-bg: #FFFFFF;
    --text-main: #1a202c;
    --text-muted: #64748B;
    --shadow-soft: 0 10px 25px rgba(0, 136, 255, 0.1);
    --shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--background-gradient);
    min-height: 100vh;
}

.container {
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 0 1.25rem;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
}

.main-header {
    background: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Reservierter Platz bis global-header.js den Inhalt injectet (verhindert CLS) */
    min-height: 96px;
}
@media (max-width: 768px) {
    .main-header { min-height: 72px; }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.15rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav .nav-masterclass {
    color: #2e63d7;
    font-weight: 700;
    position: relative;
}
.header-nav .nav-masterclass i {
    font-size: 0.9em;
    margin-right: 2px;
}
.header-nav .nav-masterclass:hover {
    color: #1e3a5f;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 2px;
    border: 1px solid #e2e8f0;
}
.lang-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    min-width: 44px;
    min-height: 36px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    color: #94a3b8;
    transition: all 0.2s;
    line-height: 1;
    letter-spacing: 0.02em;
}
.lang-switcher a:hover {
    color: #0f172a;
}
.lang-switcher a.active-lang {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    pointer-events: none;
}

/* === Trial Banner & Badge === */
.trial-banner {
    text-align: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    animation: trialPulse 2s ease-in-out infinite;
}
@keyframes trialPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4); }
}
.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.btn-trial {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35) !important;
    font-size: 1rem !important;
    animation: btnTrialPulse 2s ease-in-out infinite;
    position: relative;
}
@keyframes btnTrialPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35); }
    50% { transform: scale(1.05); box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6); }
}
.btn-trial:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5) !important;
    transform: translateY(-2px);
    animation: none;
}

.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    min-height: 44px;
    background: #2e63d7;
    color: #fff;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.header-login-btn:hover,
.header-login-btn:focus {
    background: #204bb0;
}

.header-login-btn i {
    font-size: 13px;
}

.logo {
    flex-shrink: 0;
}

.header-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.lang-btn {
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.footer-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-lang .lang-btn {
    padding: 2px 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-lang .lang-btn.active {
    color: var(--primary-color);
}

/* ===== VALUE HERO ===== */
.value-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('bilder/insta-banner.svg') center center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.value-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.3) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.value-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.value-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.value-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.value-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #fff;
    color: #1e3a5f;
    border: none;
    border-radius: 99px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 99px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.9rem;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    padding: 6rem 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 200px;
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    margin: 0 auto 1rem;
    font-family: 'Poppins', sans-serif;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,136,255,0.08);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-card.highlight .step-icon {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}

.step-card.highlight .step-number {
    background: #10b981;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.85rem;
    padding-top: 4.5rem;
    flex-shrink: 0;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown,
.features-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle,
.features-dropdown-toggle {
    cursor: pointer;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.features-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.features-dropdown:hover .features-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu,
.features-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    min-width: 280px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.features-dropdown:hover .features-dropdown-menu,
.features-dropdown:focus-within .features-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.features-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 1.25rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.features-dropdown-menu a:hover {
    background: rgba(0,136,255,0.06);
    color: var(--primary);
}

.features-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.audience-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-color: transparent;
}

.audience-visual {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.audience-visual i {
    font-size: 4.5rem;
    color: rgba(255,255,255,0.9);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.audience-card-body {
    padding: 1.75rem 2rem 2rem;
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
    padding: 48px 0 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('bilder/banner-mitte.svg') center center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.3) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    height: 80px;
    margin-bottom: 14px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.hero-section h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.hero-section h2 {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.18);
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.toggle-label:hover {
    color: rgba(255,255,255,0.85);
}

.toggle-label.active {
    color: var(--text-main);
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.discount-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Switch Container – hidden, toggle via label clicks */
.switch {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    display: none;
}

.slider:before {
    display: none;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid-section {
    padding-top: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

/* Popular Sash */
.popular-sash {
    position: absolute;
    top: 15px;
    right: -60px;
    background: var(--primary-color);
    color: white;
    padding: 6px 65px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.card-header .plan-name {
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: #4A90E2; /* Blue like in screenshot for names */
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
    color: #1E4ED0; /* Deeper blue for price */
    font-family: 'Poppins', sans-serif;
}

.price-vat-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    margin-bottom: 0;
}
.billed-yearly-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.period {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

.card-body {
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-main);
    justify-content: flex-start;
    text-align: left !important;
}

.feature-list i {
    color: #10B981; /* Success Green */
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}

.checkout-email {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #F1F5F9;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
    color: var(--secondary-color);
}

.checkout-email:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.card-footer .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px 0 rgba(255, 107, 107, 0.39);
}

.btn-primary {
    background: #4A90E2; /* Lighter blue as in screenshot primary */
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    text-align: left;
}

.table-main-header {
    background: #4A90E2;
    color: white;
}

.table-main-header th {
    padding: 1.5rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.table-main-header th:first-child {
    background: white;
    color: #4A90E2;
    text-align: left;
    border: none;
}

.feature-col {
    width: 40%;
}

.plan-col {
    width: 20%;
    text-align: center;
}

.category-row td {
    background: #4A90E2;
    padding: 1.25rem 2rem;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 15px solid white; /* Visual gap between sections */
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background: #f8fbff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.05);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 136, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    grid-column: span 2;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-status {
    grid-column: span 2;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: #e6fffa;
    color: #2c7a7b;
    border: 1px solid #b2f5ea;
}

.form-status.error {
    display: block;
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .btn-submit {
        grid-column: span 1;
    }
}

.category-row:first-child td {
    border-top: none;
}

.comparison-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid #F1F5F9;
    font-weight: 500;
}

.comparison-table tr:hover td {
    background: #F8FAFC;
}

.comparison-table tr.category-row:hover td {
    background: #4A90E2; /* Keep blue on hover */
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.status-check {
    color: #10B981;
    font-size: 1.5rem;
}

.status-cross {
    color: #EF4444;
    font-size: 1.5rem;
}

.hint-icon {
    color: #4A90E2;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    cursor: help;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-box {
    visibility: hidden;
    width: 280px;
    background-color: #2D3748; /* Slightly lighter/cleaner dark blue-gray */
    color: #FFFFFF;
    text-align: left;
    border-radius: 12px;
    padding: 16px;
    position: absolute;
    z-index: 1000;
    bottom: 160%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
    white-space: normal;
    font-family: 'Poppins', sans-serif; /* Explicitly reset from FontAwesome */
    text-transform: none; /* Ensure no uppercase overlap */
    letter-spacing: normal;
}

.tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.hint-icon:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}

.tooltip-title {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
    color: #4A90E2;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tooltip-text {
    display: block;
    opacity: 0.95;
}

/* ─── AUTO-REPLY PITCH ─── */
.auto-reply-pitch {
    padding: 5rem 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}
.auto-reply-pitch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('bilder/banner-unten.svg') center center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.auto-reply-pitch::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.3) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.auto-reply-pitch .container {
    position: relative;
    z-index: 1;
}
.ar-pitch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: stretch;
}
@media (max-width: 900px) {
    .ar-pitch-grid { grid-template-columns: 1fr; }
}
.ar-pitch-grid .ar-pitch-card {
    max-width: none;
    padding: 40px 32px;
    margin: 0;
}
.ar-pitch-card {
    max-width: 780px;
    margin: 0 auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    backdrop-filter: blur(12px);
}
.ar-pitch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 20px;
}
.ar-pitch-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.ar-pitch-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.ar-pitch-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    max-width: 540px;
    margin: 0 auto 28px;
    text-align: left;
}
.ar-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}
.ar-feat i { color: #34d399; font-size: 16px; flex-shrink: 0; }
.ar-pitch-price {
    margin-bottom: 24px;
}
.ar-price-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
}
.ar-price-label {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 4px;
}
.ar-pitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #2563eb;
    padding: 14px 36px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.ar-pitch-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

@media (max-width: 768px) {
    .ar-pitch-card { padding: 32px 24px; }
    .ar-pitch-title { font-size: 1.5rem; }
    .ar-pitch-features { grid-template-columns: 1fr; }
    .ar-price-amount { font-size: 2rem; }
}

/* Included Features Grid */
.included-features-section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #0088ff 0%, #00c6ff 100%);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 136, 255, 0.25);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Skip Link (Accessibility) - only visible on keyboard focus */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 0.75rem 1.5rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border-radius: 0 0 8px 0;
}

/* FAQ Section */
.faq-section {
    padding: 0 0 5rem;
}

.faq-title {
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-height: 48px;
}

.faq-question:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: -3px;
    border-radius: 16px;
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.35rem 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Focus visible for all interactive elements (Accessibility) */
.btn:focus-visible,
.switch input:focus-visible + .slider {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* --- Contact Section --- */
/* Final CTA Section */
.final-cta-section {
    padding: 60px 0;
}

.cta-banner-img {
    width: 100%;
    max-width: 576px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.btn-large {
    padding: 1.5rem 3.5rem !important;
    font-size: 1.25rem !important;
}

.btn-cta-start {
    background: white;
    color: #0088ff; /* Explicitly use the primary blue */
    border: none;
    font-weight: 800;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-start:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-image {
    position: relative;
    z-index: 1;
}

.branded-badge {
    background: white;
    color: #1a202c; /* Explicitly dark for visibility */
    padding: 2.5rem;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); /* Softer shadow */
    transform: rotate(5deg);
}

.badge-title {
    font-weight: 900;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: #1a202c;
    text-transform: uppercase;
}

.stars {
    color: #f59e0b; /* Gold Stars */
    margin-top: 10px;
    font-size: 1.4rem;
    display: flex;
    gap: 5px;
}

/* Footer Section */
/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 60px 0 30px;
    border-top: none;
    text-align: left;
    /* Reservierter Platz bis global-footer.js den Inhalt injectet (verhindert CLS) */
    min-height: 380px;
}
@media (max-width: 768px) {
    .main-footer { min-height: 540px; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo-new {
    height: 56px;
    margin-bottom: 16px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.social-icon:hover, .social-icon:focus-visible {
    background: #0088ff;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #60a5fa;
}

.main-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-footer .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.main-footer .footer-links a:hover {
    color: #fff;
}

.footer-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.footer-partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.footer-partner-logo:hover {
    opacity: 1;
}

.footer-bottom-new {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-copy {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-legal {
    color: #64748b;
    font-size: 11px;
    line-height: 1.6;
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
    }
    
    .cta-content {
        margin-bottom: 3rem;
    }
}

/* Footer Disclaimer */
.footer-disclaimer {
    margin-top: 32px;
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.footer-pricing-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Success Banner */
#success-banner {
    background: #059669;
    color: #fff;
    text-align: center;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#success-banner button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: 16px;
    vertical-align: middle;
    opacity: 0.8;
    transition: opacity 0.2s;
}

#success-banner button:hover {
    opacity: 1;
}

/* ── Mobile Burger + Menu (global, desktop hidden by default) ────────── */
.mobile-burger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 12px;
    margin-left: auto;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 8px;
    transition: background 0.15s;
}
.mobile-burger:hover {
    background: rgba(0,136,255,0.08);
}
.mobile-burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #0f172a;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
}
.mobile-burger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-burger.open span:nth-child(2) {
    opacity: 0;
}
.mobile-burger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    z-index: 9998;
    overflow-y: auto;
    padding-top: 80px;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
    display: block;
    animation: mobileMenuIn 0.25s ease-out;
}
@keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-menu-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}
.mobile-menu-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}
.mobile-menu-section:last-child {
    border-bottom: none;
}
.mobile-menu-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 12px 4px;
}
.mobile-menu-section a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 12px 16px;
    color: #0f172a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
}
.mobile-menu-section a:hover {
    background: rgba(0,136,255,0.08);
    color: #0088ff;
}
.mobile-menu-section a i {
    width: 22px;
    color: #0088ff;
    font-size: 17px;
    text-align: center;
}
.mobile-menu-section a.mobile-login {
    margin-top: 12px;
    background: linear-gradient(135deg, #0088ff 0%, #2563eb 100%);
    color: #fff;
    font-weight: 700;
    justify-content: center;
}
.mobile-menu-section a.mobile-login i {
    color: #fff;
}
.mobile-menu-section a.mobile-login:hover {
    background: linear-gradient(135deg, #0066cc 0%, #1e40af 100%);
    color: #fff;
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }

    .header-container {
        gap: 8px;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-burger {
        display: flex;
    }

    .header-logo-img {
        height: 40px !important;
    }

    /* Value Hero Mobile */
    .value-hero {
        padding: 50px 0 40px;
    }

    .value-hero-title {
        font-size: 1.8rem;
    }

    .value-hero-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .value-hero-stats {
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .value-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Steps Mobile */
    .steps-section {
        padding: 3rem 0;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-card {
        max-width: 100%;
    }

    .step-connector {
        padding-top: 0;
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }

    /* Audience Mobile */
    .audience-section {
        padding: 3rem 0;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .audience-visual {
        width: 100%;
    }

    .audience-visual i {
        font-size: 3.5rem;
    }

    .audience-card-body {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .audience-card h3 {
        font-size: 1.1rem;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1,
    .hero-section h2 {
        font-size: 1.6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .popular-sash {
        font-size: 0.65rem;
        padding: 5px 55px;
        right: -65px;
        top: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.1rem;
        min-height: 48px;
    }

    .faq-answer {
        padding: 0 1.1rem 1rem;
    }

    .table-responsive {
        font-size: 0.75rem;
        border-radius: 12px;
        margin: 0 -0.5rem;
        width: calc(100% + 1rem);
    }

    .comparison-table td {
        padding: 0.6rem 0.4rem;
        word-break: break-word;
    }

    .table-main-header th {
        padding: 0.75rem 0.4rem;
        font-size: 0.7rem;
    }

    .feature-col {
        width: 30%;
    }

    .comparison-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .included-features-section {
        padding: 4rem 0;
    }

    .contact-container {
        padding: 30px 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .btn-submit,
    .form-status {
        grid-column: span 1;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .branded-badge {
        width: 160px;
        height: 160px;
        padding: 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.85rem;
    }

    .billing-toggle-wrapper {
        gap: 0.75rem;
    }

    .toggle-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .value-hero {
        padding: 36px 0 30px;
    }

    .value-hero-title {
        font-size: 1.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 2rem 0 1.25rem;
    }

    .hero-section h1,
    .hero-section h2 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .price {
        font-size: 2.75rem;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-text h3 {
        font-size: 1.05rem;
    }

    .final-cta-section {
        padding: 3rem 0 5rem;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.25rem 2.5rem !important;
        font-size: 1.1rem !important;
    }

    .badge-title {
        font-size: 1.2rem;
    }

    .stars {
        font-size: 1rem;
    }
}
