:root {
    /* Bright SaaS Aesthetic Colors */
    --bg-white: #ffffff;
    --bg-soft: #f9fafb;
    --bg-card: #ffffff;

    /* Brand Orange Palette */
    --orange-primary: #ff5106;
    --orange-light: #ffb05f;
    --accent-gradient: linear-gradient(135deg, var(--orange-primary), var(--orange-light));

    --accent-electric: var(--orange-primary);
    /* primary accent is now orange */

    /* Colors */
    --text-primary: #000000;
    --text-secondary: #1f2937;
    --text-gray: #4b5563;
    --black: #000000;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-gradient: linear-gradient(180deg, rgba(255, 81, 6, 0.05), transparent);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.08);

    /* Typography - Engineered Look */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing - High Exclusivity */
    --gap: 32px;
    --section-padding: 64px;
    --section-gap: 64px;

    /* Common UI Colors */
    --white: #ffffff;
}

/* Base Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-soft);
    color: var(--text-secondary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Typography Classes */
h1.hero-headline {
    font-size: clamp(40px, 8vw, 84px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--gap);
}

.headline-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mono-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orange-primary);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 16px;
    display: inline-block;
    width: fit-content;
}

.body-large {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap);
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background: var(--bg-card);
    border-radius: 12px;
    position: relative;
    padding: 40px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-card:hover {
    box-shadow: var(--shadow-hover);
}

.bento-card::before {
    display: none;
}

.section {
    padding: var(--section-padding) 0;
}

.site-section {
    padding: var(--section-gap) 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* First section usually doesn't need top padding if hero */
.site-section:first-of-type {
    padding-top: 180px;
}

@media (max-width: 1199px) {
    .section {
        padding: 60px 0;
    }

    .section--padding-large {
        padding: 80px 0;
    }
}

@media (max-width: 809px) {
    .section {
        padding: 48px 0;
    }

    .section--padding-large {
        padding: 60px 0;
    }
}

/* ==========================================================================
   Standardized Hero Section
   ========================================================================== */
.hero-centered {
    padding-top: 200px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    max-width: 100%;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: #000000;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 600px) {
    .hero-centered {
        padding-top: 140px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.grid-2-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 1199px) {

    /* Tablet */
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 809px) {

    /* Mobile */
    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    /* Ensure image vs text alternate properly on mobile if doing reverse layouts */
    .grid-2-col.reverse>div:first-child {
        grid-row: 2;
    }
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 81, 6, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 81, 6, 0.3);
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-electric {
    background: var(--accent-electric);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 81, 6, 0.15);
}

.btn-electric:hover {
    background: #e64a05;
    box-shadow: 0 8px 24px rgba(255, 81, 6, 0.3);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.12, 0.23, 0.5, 1),
        transform 0.4s cubic-bezier(0.12, 0.23, 0.5, 1);
    transition-delay: 0.1s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation Utility */
@keyframes liquidFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-liquid {
    animation: liquidFloat 6s ease-in-out infinite;
}

/* Organic Mask Utility */
.liquid-shape {
    border-radius: var(--liquid-radius);
    overflow: hidden;
}

/* ==========================================================================
   Navbar - Bright Glassmorphism
   ========================================================================== */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper.scrolled {
    top: 12px;
}

.navbar {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: 12px 16px 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: min(calc(100vw - 48px), 1200px);
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper.scrolled .navbar {
    padding: 8px 12px 8px 28px;
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.1);
}

.navbar-logo {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
}

.navbar-links>a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.navbar-links>a:hover {
    color: var(--orange-primary);
}

/* Glow Effect Utility (Bright) */
.glow-bg {
    position: absolute;
    width: 1200px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 81, 6, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

/* Progress Bar */
.top-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent-electric);
    z-index: 1001;
    transition: width 0.3s ease;
    width: 0%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-weight: 900;
    font-size: 16px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-ctas .btn {
    padding: 10px 24px;
    font-size: 14px;
    transition: transform 0.2s cubic-bezier(0.12, 0.23, 0.5, 1), box-shadow 0.2s ease;
}

.navbar-ctas .btn:hover {
    transform: scale(1.05);
}

.navbar-ctas .btn-secondary:hover {
    background: transparent;
    color: var(--text-primary);
}

.navbar-login {
    font-size: 14px;
    font-weight: 500;
}

.navbar-login:hover {
    color: var(--orange-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--black);
    position: absolute;
    left: 0;
    transition: 0.25s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 18px;
}

@media (max-width: 900px) {
    .navbar {
        width: calc(100% - 32px);
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-md);
        margin-top: 12px;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-ctas {
        flex-direction: column;
        width: 100%;
    }

    .navbar-ctas .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-gray);
    padding: 80px 24px 32px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.brand-col .body-small {
    margin-bottom: var(--space-md);
    max-width: 250px;
    line-height: 1.5;
}

.footer-cta {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
}

.footer-headline {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.contact-links li {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.15s ease;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md);
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 600;
}

.footer-socials a:hover {
    background: var(--border-gray);
    color: var(--black);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    border-top: 1px solid var(--border-gray);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-gray);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: var(--orange-primary);
}

@media (max-width: 809px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .brand-col {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Cards */
.feature-card {
    background: var(--bg-card);
    border: none;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.12, 0.23, 0.5, 1);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
}

.pricing-card {
    background: var(--bg-card);
    border: none;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.12, 0.23, 0.5, 1), box-shadow 0.4s ease;
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
}

.pricing-card--featured {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: none;
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 12px 12px 0 0;
}

.pricing-card--featured:hover {
    box-shadow: var(--shadow-hover);
}

.popular-badge {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 16px;
    width: max-content;
}

.pricing-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.pricing-toggle button {
    padding: 8px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.pricing-toggle button.active {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-card);
    border: none;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-family);
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--black);
}

.form-input:focus {
    border-color: var(--orange-primary);
}

.form-input::placeholder {
    color: #9ca3af;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Upload Widget for SEO Landing Pages */
.upload-widget {
    background: var(--white);
    border: 2px dashed var(--border-gray);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}

.upload-widget-badges {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.upload-widget textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    font-family: var(--font-family);
    font-size: 15px;
    resize: vertical;
}

.upload-widget textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.upload-widget-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 600px) {
    .upload-widget-actions {
        flex-direction: column;
    }
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin: 16px 0;
}

/* Generator Widget for SEO Landing Page */
.generator-widget {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    padding: 40px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
}

.generator-widget .form-group {
    margin-bottom: 20px;
}

select.form-input {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%236b7280%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* ==========================================================================
   FAQ Accordion & Shared Components
   ==========================================================================
/* ==========================================================================
   Refined FAQ Section (Design Reference Inspired)
   ========================================================================== */
.faq-section {
    background: #f8fafc;
    border-radius: 48px;
    padding: 100px 24px;
    margin: 100px auto;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.faq-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 15px;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    outline: none;
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    user-select: none;
}

.faq-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 22px;
}

.faq-toggle-icon .minus {
    display: none;
}

.faq-answer {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: none;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.12, 0.23, 0.5, 1);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    font-size: 15px;
    color: var(--black);
}

.testimonial-school {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Secondary Feature Cards (if any) */
.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.12, 0.23, 0.5, 1);
}

.feature-card:hover {
    box-shadow: var(--shadow-hover);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f3f4f6;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.checklist {
    list-style: none;
    /* Removed */
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #000000;
    margin-bottom: 12px;
}

.checklist-item::before {
    content: '✓';
    color: var(--orange-primary);
    font-weight: 800;
    flex-shrink: 0;
}

/* Additional Brand Utilities */
.btn-orange {
    background: var(--orange-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 81, 6, 0.15);
}

.btn-orange:hover {
    background: #e64a05;
    box-shadow: 0 8px 24px rgba(255, 81, 6, 0.3);
}

.section-badge--orange {
    background: rgba(255, 81, 6, 0.1);
    color: var(--orange-primary);
}

/* Feature Images */
.feature-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    border-radius: 16px;
    /* Subtle premium shadow */
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* Smooth hover effect */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-image-wrapper:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* Funktion Feature Card Layout */
.funktion-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 64px;
    box-shadow: var(--shadow-soft);
    border: none;
    margin-bottom: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.funktion-card:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .funktion-card {
        padding: 40px 24px;
        margin-bottom: 64px;
    }
}

/* Horizontal Steps Slider */
.steps-horizontal-slider-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.steps-horizontal-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 4px;
    margin-top: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.steps-horizontal-slider::-webkit-scrollbar {
    display: none;
}

.steps-horizontal-slider>.bento-card {
    min-width: min(340px, 85vw);
    width: min(340px, 85vw);
    max-width: min(340px, 85vw);
    flex: 0 0 auto;
    scroll-snap-align: start;
    grid-column: auto !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Step Badge (orange pill) */
.step-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(255, 81, 6, 0.1);
    color: var(--orange-primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--orange-primary);
}

/* ==========================================================================
   Refined FAQ Section (Design Reference Inspired)
   ========================================================================== */
.faq-section {
    background: transparent;
    padding: 100px 24px;
    margin: 80px auto;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-align: center;
}

.faq-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 15px;
    color: #64748b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    outline: none;
}

.faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 17px;
    color: #000000;
    user-select: none;
}

.faq-toggle-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 22px;
}

.faq-toggle-icon .minus {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 32px 32px;
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-toggle-icon .plus {
    display: none;
}

.faq-item.active .faq-toggle-icon .minus {
    display: block;
    color: var(--orange-primary);
    font-size: 28px;
    font-weight: 400;
}

.faq-item.active .faq-question {
    color: #000000;
}

/* ── Global CTA Section ── */
.cta-section {
    padding: 80px 24px;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cta-banner {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 81, 6, 0.15);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 81, 6, 0.3);
}

/* Floating Plan Cards */
.cta-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    width: 280px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    z-index: 3;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-card-left {
    left: -20px;
    transform: translateY(-50%) rotate(-6deg);
}

.cta-card-right {
    right: -20px;
    transform: translateY(-50%) rotate(6deg);
}

.cta-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.cta-card-header {
    margin-bottom: 16px;
}

.cta-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card-price {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    padding-bottom: 24px;
    border-bottom: 1px dashed #e2e8f0;
    margin-bottom: 24px;
}

.cta-card-price span {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.cta-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-card-features li {
    font-size: 13px;
    color: #000000;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.cta-card-features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #e2e8f0;
    color: #0f172a;
    border-radius: 50%;
    font-size: 9px;
    margin-right: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #0f172a;
    color: #fff;
    padding: 12px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
    transition: background 0.2s;
}

.cta-card-btn:hover {
    background: #1e293b;
}

/* Responsive CTA */
@media (max-width: 1260px) {
    .cta-card-left {
        left: 20px;
        transform: translateY(-50%) scale(0.9) rotate(-4deg);
    }

    .cta-card-right {
        right: 20px;
        transform: translateY(-50%) scale(0.9) rotate(4deg);
    }
}

@media (max-width: 1024px) {
    .cta-banner {
        padding: 60px 24px;
    }

    .cta-card {
        display: none;
        /* Hide floating cards on smaller screens */
    }
}

/* Step Cards for "How It Works" */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.step-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 64px 32px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--orange-light);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
    box-shadow: 0 8px 16px rgba(255, 81, 6, 0.2);
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .steps-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-card {
        padding: 48px 24px;
    }
}

/* ==========================================================================
   Section Cards (Premium White Wrappers)
   ========================================================================== */
.section-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 48px;
    color: #0f1623;
}

@media (max-width: 768px) {
    .section-card {
        padding: 40px 20px;
        border-radius: 24px;
        gap: 32px;
    }
}

/* ==========================================================================
   Trust / Security Component
   ========================================================================== */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.format-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.format-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.trust-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 81, 6, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange-primary);
}

/* ==========================================================================
   Cookie Banner (DSGVO)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
    z-index: 9000;
    width: calc(100% - 48px);
    max-width: 960px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.cookie-banner--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 28px;
}

.cookie-banner__text {
    flex: 1;
    min-width: 0;
}

.cookie-banner__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-banner__desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cookie-banner__link {
    color: var(--orange-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__link:hover {
    opacity: 0.8;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-modal.cookie-modal--visible {
    pointer-events: all;
    opacity: 1;
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.cookie-modal__box {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    width: calc(100% - 48px);
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal--visible .cookie-modal__box {
    transform: translateY(0);
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.cookie-modal__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cookie-modal__close {
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.cookie-modal__close:hover {
    background: #e5e7eb;
}

.cookie-modal__body {
    padding: 16px 28px 8px;
}

.cookie-modal__intro {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-category {
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
}

.cookie-category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.cookie-category__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-category__desc {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
}

.cookie-toggle--disabled .cookie-toggle__label {
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Toggle Switch */
.cookie-toggle__switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle__slider {
    position: absolute;
    inset: 0;
    background: #e5e7eb;
    border-radius: 999px;
    transition: background 0.25s ease;
}

.cookie-toggle__slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-checkbox:checked+.cookie-toggle__slider {
    background: var(--orange-primary);
}

.cookie-checkbox:checked+.cookie-toggle__slider::before {
    transform: translateX(20px);
}

.cookie-modal__footer {
    padding: 20px 28px 24px;
}

/* Responsive */
@media (max-width: 700px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
    }
}