/* Fonts */
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair/PlayfairDisplay-Regular.woff2') format('woff2'),
         url('../fonts/playfair/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair/PlayfairDisplay-Medium.woff2') format('woff2'),
         url('../fonts/playfair/PlayfairDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair/PlayfairDisplay-SemiBold.woff2') format('woff2'),
         url('../fonts/playfair/PlayfairDisplay-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Questrial';
    src: url('../fonts/questrial/Questrial-Regular.woff2') format('woff2'),
         url('../fonts/questrial/Questrial-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

:root {
    --primary-color: #85217a;
    --primary-dark: #6a1a62;
    --primary-light: #a8439b;
    --secondary-color: #7FBF7F;
    --text-dark: #2c3e50;
    --text-light: #6b7280;
    --text-selector: #2c3e50;
    --bg-light: #9a2e8e0a;
    --bg-white: #ffffff;
    --bg-section: #fafafa;
    --border-color: #e8eaed;
    --border-light: #e8eaed;
    --border-accent: rgba(133, 33, 122, 0.15);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.6);
    --warm-gradient: linear-gradient(135deg, #b554aa 0%, #85217a 100%);
    --header-bg: radial-gradient(ellipse 120% 100% at 50% 0%,
        #d0d0d0 0%,
        #e0e0e0 25%,
        #ebebeb 45%,
        #f8f8f8 70%,
        #ffffff 100%);
    --card-bg: #ffffff;
    --input-bg: #eef0f2;
    --step-card-bg: #f9fafb;
    --step-card-hover-bg: #ffffff;

    /* Validation colors */
    --valid-bg: #f0fdf4;
    --invalid-bg: #fef2f2;

    /* Typography */
    --font-size-base: 19px;
    --font-size-medium: 16px;
    --font-size-subtitle: 22px;

    /* Unified hover effect variables */
    --hover-lift: -3px;
    --hover-shadow: 0 8px 16px rgba(133, 33, 122, 0.12);
    --focus-ring: 0 0 0 3px rgba(133, 33, 122, 0.3);
}

body.dark-mode {
    --primary-color: #d47cc9;
    --primary-dark: #85217a;
    --primary-light: #e8a3df;
    --text-dark: #e8eaed;
    --text-light: #b0b3b8;
    --bg-light: rgba(181, 84, 170, 0.08);
    --bg-white: #1a1a1a;
    --bg-section: #242424;
    --border-color: #3a3a3a;
    --border-light: #444;
    --border-accent: rgba(181, 84, 170, 0.3);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.5);
    --shadow-xl: 0 12px 24px rgba(0,0,0,0.6);
    --header-bg: radial-gradient(ellipse 120% 100% at 50% 0%,
        #16213e 0%,
        #18243f 25%,
        #1a2740 45%,
        #1b2a3e 70%,
        #1a1a2e 100%);
    --card-bg: #2a2a2a;
    --input-bg: #3d3d3d;
    --step-card-bg: #242424;
    --step-card-hover-bg: #2f2f2f;

    /* Validation colors */
    --valid-bg: rgba(16, 185, 129, 0.15);
    --invalid-bg: rgba(220, 38, 38, 0.15);

    /* Unified hover effect variables for dark mode */
    --hover-shadow: 0 8px 16px rgba(181, 84, 170, 0.3);
    --focus-ring: 0 0 0 3px rgba(181, 84, 170, 0.4);
}

/* Dark mode element overrides */
body.dark-mode h4 {
    color: var(--text-dark);
}

body.dark-mode .btn-select-hosting:not(.selected) {
    background: var(--card-bg);
    box-shadow: var(--shadow-md);
}

body.dark-mode .btn-select-hosting:not(.selected):hover {
    box-shadow: var(--shadow-md), var(--hover-shadow);
}

body.dark-mode .config-select {
    background: var(--card-bg);
    color: #e8eaed;
    border-color: var(--primary-color);
}

body.dark-mode .config-select option {
    background: #4a4a4a;
    color: #e8eaed;
}

body.dark-mode .floating-input input.valid,
body.dark-mode .floating-input textarea.valid {
    border-color: #10b981;
    background-color: var(--valid-bg);
    color: var(--text-dark);
}

body.dark-mode .floating-input input.invalid,
body.dark-mode .floating-input textarea.invalid {
    border-color: #dc2626;
    background-color: var(--invalid-bg);
}

body.dark-mode a {
    color: var(--primary-light);
}

body.dark-mode a:hover {
    color: var(--primary-color);
}

body.dark-mode .business-icon-with-text,
body.dark-mode .business-p-element {
    background: transparent;
    border-color: rgba(181, 84, 170, 0.4);
}

body.dark-mode .business-icon-with-text:hover,
body.dark-mode .business-p-element:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(181, 84, 170, 0.3);
}

body.dark-mode .business-icon-with-text:focus-visible,
body.dark-mode .business-p-element:focus-visible {
    box-shadow: var(--focus-ring);
}

body.dark-mode .header-dropdown {
    background: var(--bg-white);
    border-color: var(--border-light);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .dropdown-link {
    background: var(--card-bg);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Global button tap/focus fix for rounded elements */
.btn-submit,
.btn-christmas-primary,
.btn-recommend,
.btn-select-hosting,
.btn-hosting-details,
.dropdown-link,
.dark-mode-toggle,
.accordion-header,
.option-card,
.option-label,
.hosting-option,
.cta-button,
.hero-cta,
.toggle-switch,
.toggle-switch-dropdown,
.info-tooltip-close,
.config-select,
.btn-continue-config,
.btn-request-offer {
    -webkit-tap-highlight-color: transparent;
}

.btn-submit:focus,
.btn-christmas-primary:focus,
.btn-recommend:focus,
.btn-select-hosting:focus,
.btn-hosting-details:focus,
.dropdown-link:focus,
.dark-mode-toggle:focus,
.accordion-header:focus,
.option-card:focus,
.option-label:focus,
.hosting-option:focus,
.toggle-switch:focus,
.toggle-switch-dropdown:focus,
.info-tooltip-close:focus {
    outline: none;
}

.btn-submit:focus-visible,
.btn-christmas-primary:focus-visible,
.btn-recommend:focus-visible,
.btn-select-hosting:focus-visible,
.btn-hosting-details:focus-visible,
.dropdown-link:focus-visible,
.dark-mode-toggle:focus-visible,
.toggle-switch:focus-visible,
.toggle-switch-dropdown:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Responsive typography variables */
@media (max-width: 992px) {
    :root {
        --font-size-subtitle: 19px;
    }

    .hosting-features li {
        font-size: 17px;
    }
}

body {
    font-family: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: var(--font-size-base);
    transition: background-color 0.4s ease, color 0.4s ease;
    padding-bottom: 90px;
}

/* Smooth transitions for all elements that change in dark mode */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h2 {
    font-weight: 500;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    h3 {
        font-size: 23px;
    }
}

h4 {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 500;
    color: rgb(44, 62, 80);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover:not([class*="btn"]):not(.business-p-element):not(.business-icon-with-text) {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
#business-header {
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(133, 33, 122, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    overflow: visible;
}

#business-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--border-accent) 50%,
        transparent 100%);
}

/* Dark Mode Glass Effect */
body.dark-mode #business-header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6),
                0 2px 8px rgba(0, 0, 0, 0.4),
                inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stars Effect for Dark Mode */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.dark-mode .stars-container {
    opacity: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
    animation: var(--animation, twinkle) var(--duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.15;
        transform: scale(0.7);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.1);
    }
}

@keyframes twinkleSlow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.6);
    }
    50% {
        opacity: 0.7;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
    }
    50% {
        opacity: 0.9;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
    }
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 0.3;
        filter: brightness(0.8);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.3);
    }
}

#business-header.header-scrolled {
    padding: 0.3rem 0;
}

#business-header.header-scrolled .business-header-logo img {
    width: 103px;
    height: 45px;
}

#business-header.header-scrolled .business-p-element,
#business-header.header-scrolled .business-icon-with-text {
    padding: 8px 17px;
    font-size: 15px;
}

#business-header.header-scrolled .business-p-element svg,
#business-header.header-scrolled .business-icon-with-text svg {
    width: 19px;
    height: 19px;
}

#business-header.header-scrolled .business-icon-text {
    font-size: 11px;
}

#business-header.header-scrolled .dark-mode-toggle {
    padding: 4px 6px;
}

#business-header.header-scrolled .toggle-switch {
    width: 34px;
    height: 18px;
}

#business-header.header-scrolled .toggle-slider {
    width: 14px;
    height: 14px;
    top: 2px;
    left: 2px;
}

body.dark-mode #business-header.header-scrolled .toggle-slider {
    transform: translateX(16px);
}

.business-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.business-header-logo {
    flex-shrink: 0;
}

.business-header-logo img {
    display: block;
    width: 140px;
    height: 62px;
    transition: width 0.3s ease, height 0.3s ease;
}

.business-header-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.business-p-element {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    white-space: nowrap;
    padding: 8px 16px;
    background: var(--card-bg);
    border-radius: 50px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.business-p-element:focus {
    outline: none;
}

.business-p-element:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(133, 33, 122, 0.3);
}

.business-p-element:hover {
    transform: translateY(var(--hover-lift));
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.business-p-element strong {
    color: var(--primary-color);
    font-weight: 600;
}

.business-icon-with-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(133, 33, 122, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.business-icon-with-text:focus {
    outline: none;
}

.business-icon-with-text:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(133, 33, 122, 0.3);
}

.business-icon-with-text:hover {
    transform: translateY(var(--hover-lift));
    border-color: var(--primary-color);
    background: rgba(133, 33, 122, 0.05);
}

.business-p-element svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    stroke: var(--primary-color);
    transition: width 0.3s ease, height 0.3s ease;
}

.business-icon-with-text svg,
.business-icon-with-text img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    stroke: var(--primary-color);
    transition: width 0.3s ease, height 0.3s ease;
}

.business-icon-text {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    font-weight: 500;
    white-space: nowrap;
    transition: font-size 0.3s ease;
}

.business-icon-with-text:hover .business-icon-text {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(168, 67, 155, 0.75) 0%, rgba(133, 33, 122, 0.75) 100%), url('../images/IMG_2887.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 130px;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}


.hero-title {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
}

/* Pricing Section */
.pricing-section {
    padding: 50px 0 40px;
    margin-top: 0;
    background: var(--bg-section);
    position: relative;
}

/* Subtle watermark background for pricing section with gradient fade-out */
.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/saentis.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0) 100%);
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 38px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-subtitle);
    margin-bottom: 30px;
}

.pricing-calculator {
    max-width: 1000px;
    margin: 0 auto;
}

/* Base Package Card */
.base-package {
    margin-bottom: 30px;
}

.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 6px 20px rgba(133, 33, 122, 0.15);
    text-align: center;
    border: 2px solid rgba(133, 33, 122, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.package-card.selected {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.package-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.25);
}

.package-card h3 {
    margin-bottom: 5px;
    text-align: left;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: var(--font-size-base);
    text-align: left;
}

.package-info {
    flex: 1;
    text-align: left;
}

.package-price {
    flex-shrink: 0;
}

.package-price .currency {
    font-size: 18px;
    color: var(--text-light);
    margin-right: 3px;
}

.package-price .amount {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-features {
    flex: 1;
    text-align: left;
}

.package-features ul {
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 15px;
}

.package-features li {
    padding: 3px 0;
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

/* Additional Options */
.additional-options {
    margin-bottom: 25px;
}

.additional-options h3 {
    margin-bottom: 20px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.option-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.option-card:hover,
.option-label:hover ~ .option-card,
.option-card:has(.option-label:hover) {
    transform: translateY(var(--hover-lift));
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.option-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-label {
    display: block;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-checkbox:checked + .option-label {
    /* Background moved to .option-card */
}

.option-card:has(.option-checkbox:checked) {
    border-color: var(--primary-color);
    box-shadow: var(--hover-shadow);
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    color: white;
}

.option-card:has(.option-checkbox:checked) .option-name,
.option-card:has(.option-checkbox:checked) .option-price,
.option-card:has(.option-checkbox:checked) .option-description {
    color: white;
}

body.dark-mode .option-card:has(.option-checkbox:checked) {
    background: linear-gradient(135deg, #b554aa 0%, #9a2c8d 100%);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.option-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.option-price {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 16px;
}

.option-description {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* Total Price Section */
.total-price-section {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 20px;
    pointer-events: none;
}

.total-price-section > * {
    pointer-events: auto;
}

.total-price-card {
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    border-radius: 50px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 8px 24px rgba(133, 33, 122, 0.25);
    max-width: 1200px;
    margin: 0 auto;
}

.total-label {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.total-amount {
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.total-amount .currency {
    font-size: 18px;
    margin-right: 3px;
}

.price-note {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 50px 0 40px;
    background: var(--bg-white);
    position: relative;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 35px 0 0;
    align-items: start;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: var(--step-card-bg);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(var(--hover-lift));
    box-shadow: var(--hover-shadow);
    background: var(--step-card-hover-bg);
    border-color: rgba(133, 33, 122, 0.2);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.3);
}

.step-icon {
    display: none;
}

.step-card h3 {
    margin-bottom: 8px;
    margin-top: 8px;
    line-height: 1.3;
}

.step-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    display: none;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    position: sticky;
    top: 80px;
    align-self: start;
}

.contact-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    background-color: var(--input-bg);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(133, 33, 122, 0.1);
    background-color: var(--card-bg);
}

textarea {
    resize: vertical;
}

/* Modern Form Styles */
.modern-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.modern-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.form-row .floating-input {
    margin-bottom: 0;
}

/* Floating Label Styles */
.floating-input {
    position: relative;
    margin-bottom: 20px;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 16px 16px 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 19px;
    transition: all 0.3s ease;
    background-color: var(--input-bg);
    color: var(--text-dark);
}

.floating-input label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 4px;
}

.floating-input textarea + label {
    top: 28px;
    transform: none;
}

/* Float label when input is focused or has value */
.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:focus + label,
.floating-input textarea:not(:placeholder-shown) + label {
    top: -8px;
    transform: translateY(0);
    font-size: 12px;
    color: var(--primary-color);
    background: var(--card-bg);
    font-weight: 500;
}

.floating-input input:focus,
.floating-input textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(133, 33, 122, 0.1);
    background-color: var(--card-bg);
}

/* Date Input Styles */
.floating-input.date-input input {
    cursor: pointer;
    padding-left: 50px;
}

.floating-input.date-input label {
    left: 50px;
}

.floating-input.date-input::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
    background-size: contain;
    pointer-events: none;
    opacity: 0.6;
}

body.dark-mode .floating-input.date-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e8eaed'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Generic Info Icon & Tooltip Styles */
.floating-input.input-with-info {
    position: relative;
}

.input-info-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: #6b7280;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-with-info.show-info .input-info-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

.input-info-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #6b7280;
    color: white;
    padding: 10px 36px 10px 12px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.input-info-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.input-info-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #6b7280;
}

.info-tooltip-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.info-tooltip-close:hover {
    background: rgba(255,255,255,0.3);
}

.info-tooltip-text {
    display: block;
    padding-right: 8px;
    line-height: 1.6;
}

.info-tooltip-text br {
    margin: 2px 0;
}

/* Valid Check Icon Styles */
/* Add padding to inputs/textareas that have check icons */
.floating-input input:has(~ .valid-check-icon),
.floating-input textarea:has(~ .valid-check-icon) {
    padding-right: 50px; /* Space for check icon */
}

.valid-check-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: #10b981;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

/* Show check icon when input/textarea is valid */
input.valid ~ .valid-check-icon,
textarea.valid ~ .valid-check-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* General input valid state */
.floating-input input.valid,
.floating-input textarea.valid {
    border-color: #10b981;
    background-color: var(--valid-bg);
}

/* General input invalid state */
.floating-input input.invalid,
.floating-input textarea.invalid {
    border-color: #dc2626;
    background-color: var(--invalid-bg);
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    background: var(--card-bg) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 20px !important;
    width: auto !important;
}

.flatpickr-months {
    padding: 0 10px 15px 10px !important;
}

.flatpickr-current-month {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    padding: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--input-bg) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.flatpickr-months .flatpickr-prev-month {
    border-radius: 10px 0 10px 0 !important;
}

.flatpickr-months .flatpickr-next-month {
    border-radius: 0 10px 0 10px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(133, 33, 122, 0.15) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: var(--primary-color) !important;
    width: 18px !important;
    height: 18px !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary-dark) !important;
}

.flatpickr-weekdays {
    background: transparent !important;
    padding: 10px 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    margin-right: 10px !important;
}

.flatpickr-current-month .numInputWrapper {
    width: 70px !important;
}

.flatpickr-days {
    width: 100% !important;
}

.dayContainer {
    width: 378px !important;
    min-width: 378px !important;
    max-width: 378px !important;
}

.flatpickr-day {
    width: 50px !important;
    max-width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    margin: 2px !important;
    flex-basis: 50px !important;
}

.flatpickr-weekday {
    flex: 0 0 50px !important;
    max-width: 50px !important;
    margin: 0 2px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-light) !important;
}

.flatpickr-day:hover {
    background: rgba(133, 33, 122, 0.1) !important;
    border-color: transparent !important;
}

.flatpickr-day.selected {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.flatpickr-day.today {
    border: 2px solid var(--primary-color) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.flatpickr-disabled {
    color: var(--border-color) !important;
    text-decoration: line-through !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: var(--border-color) !important;
}

/* Form Offer Section */
.form-offer-section {
    position: relative;
    margin: 40px 0 25px 0;
    padding: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    background: rgba(133, 33, 122, 0.03);
}

.form-offer-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--primary-dark);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.form-offer-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.form-offer-next {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.6;
}

.form-terms {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin: 20px 0 15px 0;
    line-height: 1.5;
}

.form-terms a {
    color: rgb(133, 33, 122);
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-terms a:hover {
    color: rgb(133, 33, 122);
    text-decoration: underline;
}

/* Form Price Summary */
.form-price-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.form-price-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.form-price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.form-price-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* Date input label - only float when focused or has value */
.floating-input.date-input input:focus + label,
.floating-input.date-input input.has-value + label {
    top: -8px;
    transform: translateY(0);
    font-size: 12px;
    color: var(--primary-color);
    background: var(--card-bg);
    font-weight: 500;
}

/* Optional Section */
.optional-section {
    position: relative;
    margin: 40px 0 30px 0;
    padding: 30px;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.02);
}

body.dark-mode .optional-section {
    background: rgba(255, 255, 255, 0.02);
}

.optional-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--card-bg);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--border-color);
}

.optional-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.optional-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Wish Tags */
.wishes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.wish-tag {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--card-bg);
    color: var(--text-dark);
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.wish-tag:focus {
    outline: none;
}

.wish-tag:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(133, 33, 122, 0.3);
}

.wish-tag:hover {
    border-color: var(--primary-color);
    background: rgba(133, 33, 122, 0.05);
}

.wish-tag.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.wish-tag.disabled {
    pointer-events: auto;
    cursor: not-allowed;
}

.wish-tag.disabled:hover {
    border-color: var(--border-color);
    background: var(--card-bg);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .floating-input {
        margin-bottom: 20px;
    }

    .form-row .floating-input:last-child {
        margin-bottom: 0;
    }

    .modern-form {
        padding: 25px;
    }

    .optional-section {
        padding: 20px;
        margin: 30px 0 20px 0;
    }
}

.btn-submit-wrapper {
    display: block;
    padding-bottom: 6px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}

.btn-submit-wrapper:hover .btn-submit::before,
.btn-submit:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.btn-submit-wrapper:hover .btn-submit,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #b554aa 0%, #9a2c8d 100%);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 980px) {
    .business-header-wrapper {
        gap: 1rem;
        padding: 0 20px 0 20px;
        padding-right: 12px; /* Compensate for button border/padding */
    }

    .business-header-info {
        gap: 1rem;
    }

    .business-header-logo img {
        width: 120px;
        height: 53px;
    }

    .business-p-element,
    .business-icon-with-text {
        padding: 6px 12px;
        font-size: 14px;
    }

    .business-p-element svg,
    .business-icon-with-text svg {
        width: 16px;
        height: 16px;
    }

    .business-icon-text {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    /* Keep horizontal layout - no column mode anymore */
    .business-header-wrapper {
        gap: 0.75rem;
    }

    .business-header-info {
        gap: 0.5rem;
    }

    /* Logo stays small for mobile */
    .business-header-logo img {
        max-width: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

    .package-info,
    .package-features {
        text-align: center;
    }

    .package-card h3,
    .package-description {
        text-align: center;
    }

    .package-features ul {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }


    .package-price .amount {
        font-size: 36px;
    }

    .total-amount {
        font-size: 28px;
    }

    .total-price-section {
        bottom: 20px;
        padding: 0 15px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-steps {
        gap: 18px;
    }

    .contact-form-wrapper {
        position: static;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 36px;
        height: 36px;
    }

    .cta-text {
        font-size: 18px;
    }
}

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

    .hero {
        padding: 40px 0 35px;
    }

    .pricing-section,
    .how-it-works-section {
        padding: 40px 0 35px;
    }

    .package-card {
        padding: 20px 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .step-card {
        padding: 20px 15px;
    }

    .step-card p {
        font-size: 15px;
    }
}
/* Dark Mode Toggle */
.dark-mode-toggle {
    background: transparent;
    border: 1px solid rgba(133, 33, 122, 0.3);
    border-radius: 50px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: translateY(var(--hover-lift));
    border-color: var(--primary-color);
    background: rgba(133, 33, 122, 0.05);
}

body.dark-mode .dark-mode-toggle {
    background: transparent;
    border-color: rgba(181, 84, 170, 0.4);
}

body.dark-mode .dark-mode-toggle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(181, 84, 170, 0.3);
    background: transparent;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

body.dark-mode .toggle-switch {
    background: var(--primary-color);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .toggle-slider {
    transform: translateX(24px);
}

.toggle-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Dropdown Styles */
.header-dropdown-wrapper {
    position: relative;
}

.header-dropdown-trigger {
    /* Reset button/link styles for consistency */
    text-decoration: none;
    cursor: pointer;
}

.header-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.header-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.dropdown-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f9f7fa;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(233, 226, 233, 0.6);
}

.dropdown-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.dropdown-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(233, 226, 233, 0.6),
                0 8px 16px rgba(133, 33, 122, 0.12);
}

.dropdown-link:hover svg {
    stroke: white;
}

/* Theme Toggle in Dropdown */
.theme-dropdown {
    min-width: 240px;
}

.theme-toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.theme-label {
    font-size: 14px;
    color: var(--text-dark);
    white-space: nowrap;
}

.toggle-switch-dropdown {
    position: relative;
    width: 50px;
    height: 26px;
    background: var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

body.dark-mode .toggle-switch-dropdown {
    background: var(--primary-color);
}

.toggle-slider-dropdown {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .toggle-slider-dropdown {
    transform: translateX(24px);
}

/* Compact/Full Text Visibility - Default (Desktop) */
.compact-text {
    display: none;
}

.full-text {
    display: inline;
}

.icon-only {
    display: none;
}

.full-toggle {
    display: flex;
}

/* Responsive: Compact View at 830px */
@media (max-width: 830px) {
    .business-header-wrapper {
        padding-right: 18px; /* Adjust for round button borders */
    }

    /* Hide full text, show compact */
    .full-text {
        display: none;
    }

    .compact-text {
        display: inline;
    }

    /* Hide text in icon buttons, show only icons */
    .business-icon-text {
        display: none;
    }

    /* Show icon-only for dark mode */
    .icon-only {
        display: flex;
    }

    .full-toggle {
        display: none;
    }

    /* All header buttons: uniform round style */
    .business-p-element,
    .business-icon-with-text,
    .dark-mode-toggle {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: relative;
    }

    /* Fragen button - same height, but wider */
    .business-p-element {
        width: auto;
        padding: 0 16px;
        border-radius: 24px;
        height: 48px;
        min-height: 48px;
    }

    /* Active/Hover state: Gradient background instead of lift-up */
    .business-p-element:hover,
    .business-p-element:active,
    .business-icon-with-text:hover,
    .business-icon-with-text:active,
    .business-icon-with-text.active,
    .dark-mode-toggle:hover,
    .dark-mode-toggle:active {
        transform: none !important;
        background: var(--warm-gradient);
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(133, 33, 122, 0.3);
    }

    .business-p-element:hover,
    .business-p-element:active,
    .business-p-element:hover strong,
    .business-p-element:active strong {
        color: white;
    }

    .business-p-element:hover svg,
    .business-p-element:active svg,
    .business-icon-with-text:hover svg,
    .business-icon-with-text:active svg,
    .business-icon-with-text.active svg {
        stroke: white;
        color: white;
    }

    /* Adjust header spacing */
    .business-header-info {
        gap: 0.75rem;
    }

    /* Light icon hidden by default, shown in dark mode */
    .icon-only.light-icon {
        display: none;
    }

    body.dark-mode .icon-only.light-icon {
        display: flex;
    }

    body.dark-mode .icon-only:not(.light-icon) {
        display: none;
    }

    /* Dropdown styling for mobile */
    .header-dropdown {
        min-width: 240px;
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .dropdown-link {
        padding: 16px 20px;
        font-size: 15px;
    }

    /* Override scrolled header states for mobile */
    #business-header.header-scrolled .business-p-element,
    #business-header.header-scrolled .business-icon-with-text,
    #business-header.header-scrolled .dark-mode-toggle {
        width: 48px;
        height: 48px;
        padding: 0;
    }

    #business-header.header-scrolled .business-p-element {
        width: auto;
        padding: 0 16px;
    }
}

/* Extra small screens - fine-tune spacing */
@media (max-width: 480px) {
    .business-header-wrapper {
        gap: 0.5rem;
        /* Keep padding: 0 20px to stay aligned with content */
    }

    .business-header-info {
        gap: 0.4rem;
    }

    .business-header-logo img {
        max-width: 85px;
    }

    /* Slightly smaller buttons for very small screens */
    .business-p-element,
    .business-icon-with-text,
    .dark-mode-toggle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }

    .business-p-element {
        width: auto !important;
        padding: 0 14px !important;
        font-size: 14px;
    }

    .business-p-element svg,
    .business-icon-with-text svg {
        width: 18px;
        height: 18px;
    }
}

/* Hide Fragen button on very small screens */
@media (max-width: 390px) {
    .business-p-element {
        display: none !important;
    }
}

/* Very small screens - minimum viable layout */
@media (max-width: 360px) {
    .business-header-wrapper {
        gap: 0.4rem;
        /* Keep padding: 0 20px to stay aligned with content */
    }

    .business-header-info {
        gap: 0.3rem;
    }

    .business-header-logo img {
        max-width: 75px;
    }

    .business-icon-with-text,
    .dark-mode-toggle {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }

    .business-icon-with-text svg,
    .dark-mode-toggle svg {
        width: 16px;
        height: 16px;
    }

}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Pure CSS fade-in animations - no JavaScript needed */
.option-card,
.package-card,
.contact-form {
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Stagger animations for option cards */
.option-card:nth-child(1) { animation-delay: 0.1s; }
.option-card:nth-child(2) { animation-delay: 0.2s; }
.option-card:nth-child(3) { animation-delay: 0.3s; }
.option-card:nth-child(4) { animation-delay: 0.4s; }
.option-card:nth-child(5) { animation-delay: 0.5s; }
.option-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Form Highlight Animation */
@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transform: scale(1);
        border-color: var(--border-color);
    }
    25% {
        box-shadow: 0 16px 48px rgba(133, 33, 122, 0.4);
        transform: scale(1.03);
        border-color: var(--primary-color);
    }
    50% {
        box-shadow: 0 20px 60px rgba(133, 33, 122, 0.5);
        transform: scale(1.04);
        border-color: var(--primary-color);
    }
    75% {
        box-shadow: 0 16px 48px rgba(133, 33, 122, 0.4);
        transform: scale(1.03);
        border-color: var(--primary-color);
    }
}

.contact-form.highlight {
    animation: highlightPulse 2s ease-in-out;
}

/* ============================= */
/* Christmas Hero Section Styles */
/* ============================= */
.christmas-hero {
    position: relative;
    background-image: url('../images/saentis.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    padding-top: calc(120px + 97px); /* 120px original padding + ca. 97px Header-Höhe */
    overflow: hidden;
    margin-top: 0;
}

/* Christmas Ribbon - Corner Banner wrapping around box */
.christmas-ribbon {
    position: absolute;
    top: 36px;
    right: -75px;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: white;
    padding: 10px 70px;
    transform: rotate(45deg);
    z-index: 10;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ribbon-title {
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ribbon-price {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    opacity: 0.95;
}

.christmas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 90% 70% at 50% 50%,
            rgba(0, 0, 0, 0.25) 0%,
            transparent 60%),
        radial-gradient(ellipse 100% 70% at 70% 20%,
            rgba(255, 200, 150, 0.2) 0%,
            transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 80%,
            rgba(180, 100, 160, 0.18) 0%,
            transparent 45%),
        linear-gradient(135deg,
            rgba(133, 33, 122, 0.35) 0%,
            rgba(100, 50, 120, 0.3) 30%,
            rgba(60, 80, 140, 0.25) 70%,
            rgba(80, 60, 120, 0.3) 100%);
    z-index: 1;
}

/* Dark Mode: Abenddämmerung-Effekt */
body.dark-mode .christmas-hero::before {
    background:
        radial-gradient(ellipse 120% 80% at 20% 100%,
            rgba(255, 100, 50, 0.28) 0%,
            rgba(200, 60, 80, 0.16) 30%,
            transparent 60%),
        radial-gradient(ellipse 80% 60% at 90% 30%,
            rgba(180, 60, 100, 0.12) 0%,
            transparent 50%),
        linear-gradient(to bottom,
            rgba(10, 5, 20, 0.82) 0%,
            rgba(18, 8, 28, 0.72) 50%,
            rgba(28, 14, 38, 0.62) 100%);
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Snowflake Animation */
.snowflake {
    position: absolute;
    color: white;
    user-select: none;
    pointer-events: none;
    animation: fall linear infinite;
    font-size: 14px;
    opacity: 0.8;
}

/* Pause animations when hero is not visible */
.christmas-hero.animations-paused .snowflake {
    animation-play-state: paused;
}

.christmas-hero.animations-paused .christmas-tree-decoration.wiggle {
    animation-play-state: paused;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
    }
}

.christmas-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.christmas-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.christmas-tagline {
    font-family: 'Questrial', sans-serif;
    font-size: var(--font-size-subtitle);
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4), 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.christmas-subtitle {
    font-family: 'Questrial', sans-serif;
    font-size: var(--font-size-base);
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4), 0px 1px 3px rgba(0, 0, 0, 0.3);
}

.christmas-offer {
    font-family: 'Questrial', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.original-price {
    font-family: 'Questrial', sans-serif;
    font-size: 32px;
    text-decoration: line-through;
    opacity: 0.7;
}

.special-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.special-price .currency {
    font-family: 'Questrial', sans-serif;
    font-size: 28px;
    font-weight: 500;
}

.special-price .amount {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    animation: pulse-price 2s ease-in-out infinite;
}

@keyframes pulse-price {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.savings {
    font-family: 'Questrial', sans-serif;
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

.countdown-wrapper .countdown-label {
    font-family: 'Questrial', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Questrial', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item .countdown-label {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    opacity: 0.9;
}

/* Highlights Wrapper with Ribbon */
.christmas-highlights-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 32px;
    overflow: hidden;
    border-radius: 16px;
}

/* Highlights Box - Compact structured list */
.christmas-highlights-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px 32px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.4fr;
    gap: 24px 28px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.highlights-list li svg {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: white;
    opacity: 0.9;
}

.highlights-list li span {
    font-family: 'Questrial', sans-serif;
    font-size: 17px;
    color: white;
    line-height: 1.4;
}

.christmas-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-christmas-primary {
    font-family: 'Questrial', sans-serif;
    background: #f9f7fa;
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-christmas-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0ecf2;
}

.btn-recommend {
    font-family: 'Questrial', sans-serif;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-recommend:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Christmas Tree Decoration */
.christmas-tree-decoration {
    position: absolute;
    bottom: -20px;
    left: 30px;
    width: 180px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%) scale(0.3);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.christmas-tree-decoration.appear {
    animation: treePopUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.christmas-tree-decoration.wiggle {
    animation: treeWiggle 3s ease-in-out infinite;
}

@keyframes treePopUp {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
    70% {
        transform: translateY(10px) scale(0.95) rotate(-3deg);
    }
    85% {
        transform: translateY(-5px) scale(1.02) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes treeWiggle {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(1.5deg) translateX(2px);
    }
    75% {
        transform: rotate(-1.5deg) translateX(-2px);
    }
}

/* Responsive adjustments for Christmas tree */
@media (max-width: 1364px) {
    .christmas-tree-decoration {
        width: 120px;
        left: 15px;
    }
}

@media (max-width: 992px) {
    .christmas-tree-decoration {
        width: 100px;
        left: 10px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .christmas-tree-decoration {
        width: 80px;
        left: 5px;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .christmas-tree-decoration {
        width: 60px;
        left: 3px;
        bottom: -5px;
    }
}

/* ============================= */
/* Enhanced Configurator Styles  */
/* ============================= */
.config-section {
    margin-bottom: 60px;
}

.config-section h3 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.config-section h3::before {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--warm-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 27px;
    font-weight: 400;
    font-family: 'Questrial', sans-serif;
    padding-top: 3px;
    padding-left: 1px;
}

.hosting-selection h3::before {
    content: '1';
}

.additional-functions h3::before {
    content: '2';
}

/* WordPress Info Box */
.wordpress-info-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-size: 19px;
}

.wordpress-info-box:hover {
    border-left-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wordpress-info-box .wordpress-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    opacity: 0.9;
    width: 28px;
    height: 28px;
}

.wordpress-info-box span {
    flex: 1;
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-light);
}

@media (max-width: 480px) {
    .wordpress-info-box span {
        font-size: 16px;
    }
}


.email-options h3::before {
    content: '3';
}

/* Hosting Comparison */
.hosting-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

.hosting-option {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.hosting-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hosting-option.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(133, 33, 122, 0.1);
}

.hosting-option.featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hosting-option.selected {
    background: var(--warm-gradient);
    border-color: transparent;
    color: white;
}

.hosting-option.selected .hosting-location,
.hosting-option.selected .hosting-features li {
    color: white;
}

.hosting-option.selected .price-amount {
    color: white;
}

.hosting-option.selected .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.hosting-option.selected .hosting-location {
    background: rgba(255, 255, 255, 0.2);
}

.hosting-option.selected .hosting-info-label {
    color: white;
}

.hosting-option.selected .hosting-location-place {
    color: rgba(255, 255, 255, 0.8);
}

.hosting-option.selected .hosting-speed {
    color: white;
}

.hosting-option.selected .hosting-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hosting-option.selected .hosting-features li.included::before {
    color: white;
}

.hosting-option.selected .premium-icon {
    color: white;
}

.hosting-option.selected .recommended-badge {
    background: #faf7fa;
    color: var(--primary-color);
    border: 2px solid #85217a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.hosting-option.selected .info-btn {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.hosting-option.selected .info-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.recommended-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.3);
    border: 2px solid transparent;
}

.hosting-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.hosting-header h3 {
    margin-bottom: 0;
    color: inherit;
}

.hosting-header h3::before {
    content: none;
}

.hosting-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
}

.hosting-location {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    padding: 10px 12px;
    background: var(--bg-light);
    border-radius: 8px;
}

.hosting-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hosting-info-label {
    font-size: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hosting-info-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hosting-location-place {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    color: var(--text-light);
}

.hosting-speed {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    line-height: 1;
}

.hosting-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.hosting-features li {
    padding: 7px 0;
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.4;
}

.hosting-features li.included {
    color: var(--text-dark);
}

.hosting-features li.included.light-text {
    font-weight: 400;
    color: rgb(107, 114, 128);
}

.hosting-option.selected .hosting-features li.included.light-text {
    color: rgba(255, 255, 255, 0.75);
}

body.dark-mode .hosting-features li.included.light-text {
    color: rgb(156, 163, 175);
}

body.dark-mode .hosting-option.selected .hosting-features li.included.light-text {
    color: rgba(255, 255, 255, 0.7);
}

.hosting-features li.included.bold-text {
    font-weight: 600;
}

.hosting-features li.included strong {
    font-weight: 700;
}

.hosting-features li.included::before {
    content: '✓';
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-right: -6px;
}

.hosting-features li.not-included {
    color: var(--text-light);
    opacity: 0.6;
}

.premium-icon {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    margin-right: -2px;
    display: inline-block;
    position: relative;
    top: -2px;
}

.premium-feature {
    position: relative;
}

.premium-feature::before {
    display: none !important;
}

.info-btn {
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}

.info-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.btn-select-hosting {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-color);
    background: #f9f7fa;
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Button in inactive box (not selected) */
.btn-select-hosting:not(.selected) {
    background: #faf7fa;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 12px #e9e2e9;
}

.btn-select-hosting:not(.selected):hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px #e9e2e9, 0 8px 16px rgba(133, 33, 122, 0.12);
}

/* Button in active box (selected) */
.btn-select-hosting.selected {
    background: transparent;
    color: white;
    border: 2px solid #e9e2e9;
}

.btn-select-hosting.selected:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Details button - hidden by default, shown on mobile */
.btn-hosting-details {
    display: none;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.btn-hosting-details::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
    position: relative;
    top: -2px;
}

.btn-hosting-details.expanded::after {
    transform: rotate(-135deg);
    top: 2px;
}

.btn-hosting-details:hover {
    background: var(--bg-light);
}

.btn-hosting-details:focus {
    outline: none;
}

/* Expanded state - highlighted */
.btn-hosting-details.expanded {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-hosting-details.expanded:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hosting-option.selected .btn-hosting-details {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hosting-option.selected .btn-hosting-details:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hosting-option.selected .btn-hosting-details.expanded {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.hosting-option.selected .btn-hosting-details.expanded:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Hosting benefit text - hidden by default, shown on mobile */
.hosting-benefit {
    display: none;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-light);
    margin: 0 0 12px 0;
    padding: 0;
}

.hosting-option.selected .hosting-benefit {
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile compact view for hosting boxes */
@media (max-width: 768px) {
    .hosting-comparison {
        gap: 15px;
    }

    .hosting-option {
        padding: 20px 15px;
    }

    .hosting-location {
        display: none;
    }

    .hosting-features {
        display: none;
        margin-top: 15px;
        margin-bottom: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .hosting-option.selected .hosting-features {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    .hosting-features.expanded {
        display: block;
    }

    .btn-hosting-details {
        display: block;
    }

    .hosting-benefit {
        display: block;
    }

    .hosting-header {
        margin-bottom: 15px;
    }

    .hosting-header h3 {
        font-size: 22px;
    }

    .price-amount {
        font-size: 20px;
    }

    .recommended-badge {
        top: -12px;
        right: 15px;
        font-size: 11px;
        padding: 4px 12px;
    }

    .btn-select-hosting {
        padding: 12px;
        font-size: 15px;
        margin-top: 15px;
    }

    .hosting-features li {
        font-size: 15px;
        padding: 6px 0;
    }
}

/* Function Categories */
.function-category {
    margin-bottom: 40px;
}

.function-category:last-child {
    margin-bottom: 0;
}

.function-category h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-accent);
}

/* Functions Grid */
.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.function-card {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.function-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.function-card:has(.function-checkbox:checked) {
    border-color: transparent;
}

.function-checkbox {
    position: absolute;
    opacity: 0;
}

.function-label {
    display: flex;
    flex-direction: column;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.function-checkbox:checked + .function-label {
    background: var(--warm-gradient);
    border-color: transparent;
    color: white;
    height: 100%;
    border-radius: 10px;
}

.function-checkbox:checked + .function-label .function-name,
.function-checkbox:checked + .function-label .function-price,
.function-checkbox:checked + .function-label .function-description {
    color: white;
}

/* Selected state for dropdown-based function cards */
.function-card.selected {
    border-color: transparent;
    border-radius: 12px;
}

.function-card.selected .function-label {
    background: var(--warm-gradient);
    border-color: transparent;
    color: white;
    border-radius: 10px;
}

.function-card.selected .function-label .function-name,
.function-card.selected .function-label .function-price,
.function-card.selected .function-label .function-description {
    color: white;
}

.function-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.function-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.function-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.function-description {
    font-size: var(--font-size-medium);
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Forms Card - Special styling for forms selector */
.function-card-forms {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
}

.function-card-forms .function-label {
    padding: 20px;
    cursor: default;
}

/* File Manager Card - Special styling for info button */
.function-card-filemanager {
    position: relative;
    overflow: visible !important;
}

/* Newsletter Card - Special styling for info button */
.function-card-newsletter {
    position: relative;
    overflow: visible !important;
}

/* Design Extended Card - Special styling for info button */
.function-card-design-extended {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.function-card-design-extended .function-label {
    padding: 20px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Logo Design Card - Special styling for info button */
.function-card-logo-design {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.function-card-logo-design .function-label {
    padding: 20px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Brand Design Card - Special styling for info button */
.function-card-brand-design {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.function-card-brand-design .function-label {
    padding: 20px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Content Consulting Card - Special styling for info button */
.function-card-content-consulting {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.function-card-content-consulting .function-label {
    padding: 20px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Google Ads Card - Special styling for info button */
.function-card-google-ads {
    border: 2px solid var(--border-color);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.function-card-google-ads .function-label {
    padding: 20px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Unified dropdown select styles for all boxes */
.config-select {
    width: 100%;
    padding: 8px;
    border: 2px solid var(--primary-dark);
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--text-selector);
    font-size: var(--font-size-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-select:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.config-select:focus,
.config-select:focus-visible {
    outline: none;
}

/* Dropdown highlight animation */
@keyframes dropdown-highlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--primary-color);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 4px rgba(133, 33, 122, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(133, 33, 122, 0);
    }
}

.config-select.highlight-pulse {
    animation: dropdown-highlight 0.6s ease-out;
}

/* White RGBA background for selected boxes */
.function-card.selected .config-select,
.email-card.selected .config-select {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.function-card.selected .config-select option,
.email-card.selected .config-select option {
    background: var(--card-bg);
    color: var(--text-dark);
}

/* Unified quantity container styles for all boxes */
.config-quantity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--input-bg);
    border-radius: 8px;
    margin-top: auto;
}

.config-quantity label {
    font-size: var(--font-size-medium);
    font-weight: 500;
    color: var(--text-dark);
}

/* White RGBA background for quantity containers in selected boxes */
.function-card.selected .config-quantity,
.email-card.selected .config-quantity,
.email-radio:checked + .email-label .config-quantity {
    background: rgba(255, 255, 255, 0.2);
}

/* White labels in selected boxes */
.function-card.selected .config-quantity label,
.email-card.selected .config-quantity label,
.email-radio:checked + .email-label .config-quantity label {
    color: white;
}

/* Info button in corner - extends beyond box */
.info-btn-corner {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 10;
}

/* Email Cards */
.email-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.email-card .config-select {
    width: calc(100% + 10px);
}

.email-card {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.email-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.email-card.featured {
    border-color: var(--primary-color);
}

.email-card.featured:hover {
    box-shadow: 0 6px 20px rgba(133, 33, 122, 0.25);
}

.email-card:has(.email-radio:checked) {
    border-color: transparent;
}

.email-radio {
    position: absolute;
    opacity: 0;
}

.email-label {
    display: flex;
    flex-direction: column;
    padding: 25px;
    cursor: default;
    height: 100%;
    border-radius: 12px;
}

/* Only "Keine E-Mail-Adressen" box should have pointer cursor */
.email-card[data-email-type="none"] .email-label {
    cursor: pointer;
}

.email-radio:checked + .email-label {
    background: var(--warm-gradient);
    border-color: transparent;
    color: white;
}

.email-radio:checked + .email-label .email-price,
.email-radio:checked + .email-label .email-features li,
.email-radio:checked + .email-label .email-quantity label,
.email-radio:checked + .email-label .email-total,
.email-radio:checked + .email-label .email-none-text {
    color: white;
}

.email-radio:checked + .email-label .email-quantity {
    background: rgba(255, 255, 255, 0.2);
}

.email-radio:checked + .email-label .email-account-count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.email-radio:checked + .email-label .email-account-count option {
    background: var(--card-bg);
    color: var(--text-dark);
}

.email-radio:checked + .email-label .recommended-badge {
    background: #faf7fa;
    color: var(--primary-color);
    border: 2px solid #85217a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Selected state for dropdown-triggered highlighting */
.email-card.selected {
    border-color: transparent;
}

.email-card.selected .email-label {
    background: var(--warm-gradient);
    border-color: transparent;
    color: white;
}

.email-card.selected .email-label .email-price,
.email-card.selected .email-label .email-features li,
.email-card.selected .email-label .email-quantity label,
.email-card.selected .email-label .email-total {
    color: white;
}

.email-card.selected .email-label .email-quantity {
    background: rgba(255, 255, 255, 0.2);
}

.email-card.selected .email-label .email-account-count {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.email-card.selected .email-label .email-account-count option {
    background: var(--card-bg);
    color: var(--text-dark);
}

.email-card.selected .recommended-badge {
    background: #faf7fa;
    color: var(--primary-color);
    border: 2px solid #85217a;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.email-header {
    margin-bottom: 20px;
}

.email-header h4 {
    margin-bottom: 8px;
}

/* White h4 in selected email boxes */
.email-card.selected .email-header h4,
.email-radio:checked + .email-label .email-header h4 {
    color: white;
}

.email-price {
    font-size: 19px;
    color: var(--primary-color);
    font-weight: 500;
}

.email-features {
    list-style: none;
    margin-bottom: 20px;
}

.email-features li {
    padding: 3px 0 3px 25px;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
}

.email-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Email benefit text - hidden by default, shown on mobile */
.email-benefit {
    display: none;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-light);
    margin: 0 0 12px 0;
    padding: 0;
}

.email-radio:checked + .email-label .email-benefit,
.email-card.selected .email-benefit {
    color: rgba(255, 255, 255, 0.85);
}

/* Email details button - hidden by default, shown on mobile */
.btn-email-details {
    display: none;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.btn-email-details::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
    position: relative;
    top: -2px;
}

.btn-email-details.expanded::after {
    transform: rotate(-135deg);
    top: 2px;
}

.btn-email-details:hover {
    background: var(--bg-light);
}

.btn-email-details:focus {
    outline: none;
}

/* Expanded state - highlighted */
.btn-email-details.expanded {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-email-details.expanded:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Selected/checked email card button styles */
.email-radio:checked + .email-label .btn-email-details,
.email-card.selected .btn-email-details {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.email-radio:checked + .email-label .btn-email-details:hover,
.email-card.selected .btn-email-details:hover {
    background: rgba(255, 255, 255, 0.1);
}

.email-radio:checked + .email-label .btn-email-details.expanded,
.email-card.selected .btn-email-details.expanded {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.email-radio:checked + .email-label .btn-email-details.expanded:hover,
.email-card.selected .btn-email-details.expanded:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Mobile compact view for email boxes */
@media (max-width: 768px) {
    .email-features {
        display: none;
        margin-top: 15px;
        margin-bottom: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .email-radio:checked + .email-label .email-features,
    .email-card.selected .email-features {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    .email-features.expanded {
        display: block;
    }

    .btn-email-details {
        display: block;
    }

    .email-benefit {
        display: block;
    }

    .email-header {
        margin-bottom: 12px;
    }

    .email-header h4 {
        font-size: 18px;
    }

    .email-price {
        font-size: 16px;
    }

    .email-features li {
        font-size: 14px;
        padding: 5px 0 5px 22px;
    }

    .btn-email-details {
        margin-bottom: 15px;
    }
}

/* Email quantity - align to bottom */
.email-quantity {
    margin-top: auto;
}

.email-quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.email-account-count,
.email-storage-size {
    width: 82px;
}

.email-total {
    margin-left: auto;
    font-weight: 400;
    color: var(--primary-color);
    white-space: nowrap;
}

.email-none-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Fixed Price Bar */
.fixed-price-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 10px 20px;
    overflow: hidden;
}

body.dark-mode .fixed-price-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .countdown-compact-label,
body.dark-mode .countdown-compact-item,
body.dark-mode .price-bar-label {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .price-bar-value {
    color: #b554aa;
}

body.dark-mode .price-bar-original {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .price-bar-divider {
    background: rgba(255, 255, 255, 0.15);
}

.price-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.price-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.countdown-compact-label {
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


.countdown-compact-values {
    display: flex;
    gap: 8px;
}

.countdown-compact-item {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.countdown-compact-item span {
    font-weight: 700;
}

.countdown-savings-badge {
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(46, 204, 113, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    animation: pulse-savings 2s ease-in-out infinite;
}

body.dark-mode .countdown-savings-badge {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
}

@keyframes pulse-savings {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.price-bar-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
    justify-content: center;
}

.price-bar-item-special {
    gap: 0px;
}

.price-bar-prices {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 2px;
}

.price-bar-original {
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.65;
    line-height: 1.1;
}

.price-bar-savings {
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.dark-mode .price-bar-savings {
    color: #2ecc71;
}

/* Dark Mode Support for Process Section */
body.dark-mode .website-process-section {
    background:
        radial-gradient(ellipse 120% 90% at 30% 20%,
            rgba(198, 118, 187, 0.7) 0%,
            rgba(154, 44, 141, 0.5) 40%,
            transparent 70%),
        radial-gradient(circle at 85% 40%,
            rgba(181, 84, 170, 0.65) 0%,
            rgba(106, 26, 98, 0.45) 35%,
            transparent 60%),
        radial-gradient(ellipse 100% 80% at 15% 80%,
            rgba(133, 33, 122, 0.55) 0%,
            rgba(85, 21, 78, 0.35) 40%,
            transparent 65%),
        linear-gradient(180deg,
            rgba(35, 10, 32, 0.95) 0%,
            rgba(60, 18, 55, 0.9) 20%,
            rgba(106, 26, 98, 0.85) 45%,
            rgba(85, 21, 78, 0.88) 75%,
            rgba(45, 13, 42, 0.93) 100%);
}

body.dark-mode .website-process-showcase {
    background: rgb(26, 26, 26);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}


body.dark-mode .process-timeline-compact::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 10%,
        rgba(255, 255, 255, 0.1) 90%,
        transparent 100%);
}

body.dark-mode .step-icon-compact::after {
    background: rgba(181, 84, 170, 0.2);
}

body.dark-mode .services-compact span {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .services-compact span:hover {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(181, 84, 170, 0.1) 100%);
    border-color: var(--primary-color);
}

body.dark-mode .references-compact {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .btn-continue-config {
    background: linear-gradient(135deg, #b554aa 0%, #85217a 100%);
    box-shadow: 0 8px 24px rgba(181, 84, 170, 0.4);
    color: white;
}

body.dark-mode .btn-continue-config:hover {
    box-shadow: 0 12px 32px rgba(181, 84, 170, 0.5);
    color: white;
}

.price-bar-label {
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    margin-bottom: 0;
}

.price-bar-value {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.1;
}

.price-bar-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

.btn-request-offer-wrapper {
    display: flex;
    align-self: center;
    padding-bottom: 6px;
    margin-left: 30px;
}

.btn-request-offer {
    font-family: 'Questrial', sans-serif;
    padding: 12px 28px;
    background: var(--warm-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-request-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}

.btn-request-offer-wrapper:hover .btn-request-offer::before,
.btn-request-offer:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.btn-request-offer-wrapper:hover .btn-request-offer,
.btn-request-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Slide-in Info Panel */
.info-panel {
    position: fixed;
    top: 0;
    right: -45%;
    width: 45%;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
}

.info-panel.active {
    right: 0;
}

.info-panel-content {
    height: 100%;
    overflow-y: auto;
    padding: 30px;
}

.info-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(133, 33, 122, 0.3);
}

.info-panel-close:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.4);
}

.info-panel-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.info-panel-body {
    color: var(--text-dark);
    line-height: 1.6;
}

.info-panel-body h4 {
    margin-bottom: 15px;
}

.info-panel-body p {
    margin-bottom: 15px;
}

.info-panel-body ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 15px;
}

.info-panel-body ul li {
    padding: 5px 0 5px 25px;
    position: relative;
}

.info-panel-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-panel-body img {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}

.info-panel-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-panel-body a:hover:not([class*="btn"]):not(.business-p-element):not(.business-icon-with-text) {
    text-decoration: underline;
}

/* Responsive Adjustments for Christmas Section */

/* Highlights list responsive - smaller desktop */
@media (max-width: 1000px) {
    .highlights-list {
        gap: 20px 20px;
    }
}

@media (max-width: 900px) {
    .christmas-highlights-box {
        padding: 20px 20px;
    }

    .highlights-list {
        gap: 18px 16px;
    }

    .highlights-list li svg {
        width: 32px;
        height: 32px;
    }

    .highlights-list li span {
        font-size: 16px;
    }

    .christmas-ribbon {
        top: 39px;
        right: -60px;
        padding: 8px 65px;
    }
}

@media (max-width: 768px) {
    .christmas-hero {
        padding-top: calc(120px + 80px); /* Header bleibt horizontal, weniger Padding nötig */
    }

    .christmas-title {
        font-size: 32px;
        line-height: 36px;
        margin-top: -35px;
    }

    .christmas-tagline {
        font-size: 20px;
    }

    .christmas-subtitle {
        font-size: var(--font-size-base);
    }

    .special-price .amount {
        font-size: 48px;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }

    .countdown-value {
        font-size: 28px;
    }

    /* Highlights list responsive - mobile */
    .christmas-highlights-box {
        padding: 16px 20px;
        margin-left: -10px;
        margin-right: -10px;
        border-radius: 12px;
    }

    .highlights-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
    }

    .highlights-list li {
        gap: 8px;
    }

    .highlights-list li svg {
        width: 28px;
        height: 28px;
    }

    .highlights-list li span {
        font-size: 15px;
    }

    .christmas-ribbon {
        top: 35px;
        right: -62px;
        padding: 7px 60px;
    }

    /* Hide "Kontaktformular integriert" on mobile (8th item) */
    .highlights-list li:nth-child(8) {
        display: none;
    }


    .hosting-comparison {
        grid-template-columns: 1fr;
    }

    .info-panel {
        width: 100%;
        right: -100%;
    }

    .fixed-price-bar {
        padding: 10px 15px;
    }

    .price-bar-content {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .price-bar-right {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .countdown-compact {
        display: none;
    }

    .countdown-savings-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .price-bar-original {
        font-size: 14px;
    }

    .price-bar-savings {
        font-size: 10px;
    }

    .price-bar-prices {
        gap: 8px;
    }

    .btn-request-offer {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }

    .price-bar-divider {
        height: 1px;
        width: 30px;
    }
}

@media (max-width: 615px) {
    .christmas-ribbon {
        display: none;
    }
}

/* Extra small screens - hide highlights box */
@media (max-width: 450px) {
    .christmas-highlights-box {
        display: none;
    }
}

/* Fixed Price Bar - All text in Questrial font */
.fixed-price-bar,
.fixed-price-bar *,
.fixed-price-bar p,
.fixed-price-bar span,
.fixed-price-bar a,
.fixed-price-bar div,
.fixed-price-bar button {
    font-family: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ===================================
   Website Process Showcase Section - Redesigned
   =================================== */

.website-process-section {
    padding: 60px 0;
    background:
        radial-gradient(ellipse 120% 90% at 30% 20%,
            rgba(168, 67, 155, 0.8) 0%,
            rgba(106, 26, 98, 0.6) 40%,
            transparent 70%),
        radial-gradient(circle at 85% 40%,
            rgba(133, 33, 122, 0.7) 0%,
            rgba(70, 20, 65, 0.5) 35%,
            transparent 60%),
        radial-gradient(ellipse 100% 80% at 15% 80%,
            rgba(85, 21, 78, 0.6) 0%,
            rgba(50, 15, 48, 0.4) 40%,
            transparent 65%),
        linear-gradient(180deg,
            rgba(30, 8, 28, 0.98) 0%,
            rgba(50, 15, 48, 0.92) 20%,
            rgba(85, 21, 78, 0.88) 45%,
            rgba(70, 20, 65, 0.9) 75%,
            rgba(40, 12, 38, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.website-process-showcase {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: none;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 45px;
}



/* Process Accordion */
.process-accordion {
    max-width: none;
    margin: 40px auto;
    padding: 0 50px;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--bg-light);
}

.accordion-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #d6c1d6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6c1d6;
}

.accordion-header h4 {
    flex: 1;
    margin: 0;
    font-family: 'Questrial', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.accordion-content > * {
    min-height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    grid-template-rows: 1fr;
    padding: 15px 20px;
}

.accordion-content p {
    margin: 0;
    font-family: 'Questrial', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

.accordion-item.active {
    background: #faf7fa;
}

.accordion-item.active .accordion-header {
    background-color: #f0eaf0;
}

body.dark-mode .accordion-item.active {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .accordion-item.active .accordion-header {
    background-color: rgba(255, 255, 255, 0.06);
}

/* Dark mode accordion styles */
body.dark-mode .accordion-item {
    background: var(--surface-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .accordion-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .accordion-content p {
    color: var(--text-muted);
}

/* Modern Timeline */
.process-timeline-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
    position: relative;
    padding: 0 20px;
}

.process-timeline-compact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--border-color) 10%,
        var(--border-color) 90%,
        transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.process-step-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 200px;
}

.step-icon-compact {
    width: 60px;
    height: 60px;
    background: var(--warm-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(133, 33, 122, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step-compact:hover .step-icon-compact {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(133, 33, 122, 0.35);
}

.step-icon-compact::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(181, 84, 170, 0.1);
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Animation for Process Steps */
.process-step-compact {
    animation: fadeInUp 0.6s ease forwards;
}

.process-step-compact:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step-compact:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step-compact:nth-child(3) {
    animation-delay: 0.3s;
}

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

.step-title-compact {
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.process-arrow-compact {
    display: none; /* Arrows replaced by timeline */
}

/* Modern Services Cards */
.services-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.services-compact span {
    font-family: 'Questrial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.services-compact span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, rgba(181, 84, 170, 0.05) 100%);
}

/* Modern References Section */
.references-compact {
    margin-top: 50px;
    padding-top: 20px;
    position: relative;
}

.references-compact h4 {
    text-align: center;
    margin-bottom: 35px;
}


/* Modern CTA Button */
.process-cta-compact {
    text-align: center;
    margin-top: 40px;
}

.btn-continue-config {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--warm-gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Questrial', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(133, 33, 122, 0.35);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-continue-config::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}

.btn-continue-config:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.btn-continue-config:hover {
    margin-top: -3px;
    margin-bottom: 3px;
    box-shadow: 0 12px 32px rgba(133, 33, 122, 0.45);
}

.btn-continue-config svg {
    transition: transform 0.3s ease;
}

.btn-continue-config:hover svg {
    transform: translateX(5px);
}

/* Reference Modal */
.reference-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.reference-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #a8439b 0%, #85217a 100%);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(133, 33, 122, 0.3);
    z-index: 10002;
}

.modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(133, 33, 122, 0.4);
}

.modal-body {
    padding: 40px 30px;
}

.modal-body h3 {
    margin-bottom: 15px;
}

.reference-branch {
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.branch-name {
    font-weight: 600;
    color: var(--primary-color);
}

.reference-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 15px;
    font-family: 'Questrial', sans-serif;
    font-size: 0.85rem;
    border: 1px solid var(--border-accent);
}

.reference-description {
    margin-bottom: 25px;
}

.description-text {
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-modal-close {
    background: var(--bg-section);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Questrial', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Lightbox */
.lightbox {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: opacity 0.6s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 11002;
}

.lightbox-close:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 11001;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
    cursor: pointer;
    background: var(--card-bg);
    border-radius: 10px;
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background: var(--card-bg);
    -webkit-tap-highlight-color: transparent;
}

.lightbox,
.lightbox-content,
.lightbox-overlay,
.lightbox-nav,
.lightbox-close {
    -webkit-tap-highlight-color: transparent;
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 11002;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    transform: translateY(-50%) scale(1.1);
    border-color: white;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-nav svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .website-process-showcase {
        padding: 20px 18px;
    }

}

@media (max-width: 768px) {
    .website-process-section {
        padding: 30px 0;
    }

    .website-process-showcase {
        padding: 20px 12px;
        border-radius: 12px;
        margin: 0 -5px;
    }

    .process-accordion {
        padding: 0 5px;
    }

    .accordion-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .accordion-header h4 {
        font-size: 19px;
    }

    .accordion-icon {
        width: 34px;
        height: 34px;
    }

    .accordion-icon svg {
        width: 18px;
        height: 18px;
    }

    .accordion-toggle {
        width: 28px;
        height: 28px;
    }

    .process-header {
        margin-bottom: 25px;
    }


    .process-timeline-compact {
        flex-direction: column;
        gap: 30px;
        margin: 30px 0;
        padding: 0;
    }

    .process-timeline-compact::before {
        top: 10%;
        bottom: 10%;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg,
            transparent 0%,
            var(--border-color) 10%,
            var(--border-color) 90%,
            transparent 100%);
        transform: translateX(-50%);
    }

    .process-step-compact {
        flex-direction: row;
        gap: 15px;
        max-width: 100%;
    }

    .step-icon-compact {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .step-icon-compact::after {
        width: 65px;
        height: 65px;
    }

    .step-title-compact {
        font-size: 0.95rem;
        text-align: left;
        flex: 1;
    }

    .services-compact {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 30px 0;
    }

    .services-compact span {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .references-compact {
        margin-top: 30px;
        padding-top: 30px;
    }

    .references-compact h4 {
        margin-bottom: 25px;
    }


    .process-cta-compact {
        margin-top: 30px;
    }

    .btn-continue-config {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-body {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .website-process-section {
        padding: 20px 0;
    }

    .website-process-showcase {
        padding: 15px 10px;
        margin: 0 -8px;
        border-radius: 10px;
    }

    .accordion-header h4 {
        font-size: 16px;
    }

    .process-header {
        margin-bottom: 25px;
    }


    .process-timeline-compact {
        gap: 25px;
        margin: 25px 0;
    }

    .step-icon-compact {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
    }

    .step-icon-compact::after {
        width: 55px;
        height: 55px;
    }

    .step-title-compact {
        font-size: 0.85rem;
    }

    .services-compact {
        margin: 25px 0;
    }

    .services-compact span {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .references-compact {
        margin-top: 25px;
        padding-top: 25px;
    }

    .references-compact h4 {
        margin-bottom: 20px;
    }

    .btn-continue-config {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn-view-details {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-continue-config {
        font-size: 1rem;
        padding: 14px 24px;
    }
}

/* ===================================
   Design Quotes & Expected Results
   =================================== */

/* Design Quotes Container */
.design-quotes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 20px 0 0 0;
    padding: 0;
}

.quotes-heading {
    font-family: 'Questrial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.3;
}

.quotes-heading:not(:first-child) {
    margin-top: 24px;
}

.design-quote {
    position: relative;
    background: transparent;
    border-left: 2px solid rgba(133, 33, 122, 0.2);
    border-radius: 0;
    padding: 8px 0 8px 16px;
    transition: all 0.2s ease;
}

.design-quote:hover {
    border-left-color: var(--primary-color);
}

.quote-icon {
    display: none;
}

.quote-text {
    font-family: 'Questrial', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--text-light);
    margin: 0 0 4px 0;
    font-style: italic;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.design-quote:hover .quote-text {
    color: #1a1a1a;
    font-weight: 500;
}

body.dark-mode .design-quote:hover .quote-text {
    color: #ffffff;
}

.quote-author {
    display: block;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    padding-left: 0;
    position: relative;
    opacity: 0.7;
    transition: color 0.3s ease, opacity 0.3s ease, font-weight 0.3s ease;
}

.design-quote:hover .quote-author {
    color: #1a1a1a;
    opacity: 1;
    font-weight: 500;
}

body.dark-mode .design-quote:hover .quote-author {
    color: #ffffff;
}

.quote-author::before {
    content: '– ';
    color: var(--primary-color);
}

.example-domain {
    text-decoration: underline;
    text-decoration-color: var(--text-light);
    text-underline-offset: 2px;
}

/* Dark mode adjustments for quotes */
body.dark-mode .design-quote {
    border-left-color: rgba(181, 84, 170, 0.3);
}

body.dark-mode .design-quote:hover {
    border-left-color: var(--primary-color);
}

/* Expected Results Section */
.expected-results {
    margin-top: 30px;
    padding-top: 0;
}

.expected-results-title {
    font-family: 'Questrial', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    text-align: left;
    position: relative;
    line-height: 1.3;
}

/* Results Gallery */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.result-thumbnail {
    position: relative;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.result-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.result-thumbnail:hover::before {
    opacity: 0.08;
}

.result-thumbnail:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(133, 33, 122, 0.2);
    border-color: var(--primary-color);
}

.thumbnail-image {
    position: relative;
    width: 100%;
    height: 120px;
    margin: 0 auto 12px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.result-thumbnail:hover .thumbnail-image {
    transform: scale(1.05);
}

.result-thumbnail:hover .thumbnail-image img {
    transform: scale(1.1);
}

.thumbnail-image svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.thumbnail-label {
    position: relative;
    display: block;
    font-family: 'Questrial', sans-serif;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
    z-index: 1;
}

.result-thumbnail:hover .thumbnail-label {
    color: var(--primary-color);
}

/* Lightbox enhancement hint */
.result-thumbnail::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(133, 33, 122, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2385217a' stroke-width='2'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.result-thumbnail:hover::after {
    opacity: 1;
}

/* Dark mode adjustments */
body.dark-mode .result-thumbnail {
    background: var(--card-bg);
    border-color: var(--border-color);
}

body.dark-mode .result-thumbnail:hover {
    background: var(--step-card-hover-bg);
    box-shadow: 0 8px 24px rgba(181, 84, 170, 0.3);
}

body.dark-mode .thumbnail-image {
    background: linear-gradient(135deg, rgba(181, 84, 170, 0.15) 0%, rgba(133, 33, 122, 0.2) 100%);
}

body.dark-mode .result-thumbnail:hover .thumbnail-image {
    background: var(--warm-gradient);
}

/* Website Swiper Slider */
.website-slider-container {
    position: relative;
    padding: 0 55px !important; /* 44px Pfeilbreite + 5px Abstand + 6px Puffer */
    margin-top: 24px;
}

.website-swiper {
    overflow: visible;
    padding: 10px 0;
    margin-top: -10px;
}

.website-swiper .swiper-wrapper {
    padding-bottom: 0;
}

.website-swiper .swiper-slide {
    height: auto;
    padding-top: 10px;
    user-select: none;
    -webkit-user-select: none;
}

.website-swiper .result-thumbnail {
    height: 100%;
    margin: 0;
}

/* Hide default pagination, use scrollbar instead */
.website-swiper .swiper-pagination {
    display: none;
}

/* Swiper scrollbar styling */
.website-swiper-scrollbar {
    height: 6px !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border-radius: 3px !important;
    margin: 20px 25px 0 !important;
    position: relative !important;
    left: 0 !important;
    width: calc(100% - 50px) !important;
}

.website-swiper-scrollbar .swiper-scrollbar-drag {
    height: 100%;
    background: var(--primary-color) !important;
    border-radius: 3px !important;
    cursor: grab;
    transition: opacity 0.3s ease;
}

.website-swiper-scrollbar .swiper-scrollbar-drag:hover {
    opacity: 0.8;
}

.website-swiper-scrollbar .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

body.dark-mode .website-swiper-scrollbar {
    background: rgba(255, 255, 255, 0.15) !important;
}

body.dark-mode .website-swiper-scrollbar .swiper-scrollbar-drag {
    background: rgba(255, 255, 255, 0.5) !important;
}

.website-swiper-prev,
.website-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.website-swiper-prev {
    left: 0 !important;
}

.website-swiper-next {
    right: 0 !important;
}

/* Remove Swiper default circle background */
.website-swiper-prev::after,
.website-swiper-next::after {
    font-size: 24px;
    font-weight: bold;
    color: rgb(44, 62, 80);
    transition: color 0.3s ease;
}

.website-swiper-prev:hover,
.website-swiper-next:hover {
    transform: translateY(-50%) translateY(-6px);
    filter: drop-shadow(0 8px 12px rgba(133, 33, 122, 0.3));
}

.website-swiper-prev:hover::after,
.website-swiper-next:hover::after {
    color: var(--primary-color);
}

/* Swiper Dark Mode */
body.dark-mode .website-swiper-prev::after,
body.dark-mode .website-swiper-next::after {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .website-swiper-prev:hover::after,
body.dark-mode .website-swiper-next:hover::after {
    color: var(--primary-color);
}

body.dark-mode .swiper-pagination-bullet {
    background: var(--border-color);
}

body.dark-mode .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Swiper Responsive */
@media (max-width: 900px) {
    .website-slider-container {
        padding: 0 40px;
    }

    .website-swiper-prev,
    .website-swiper-next {
        width: 36px;
        height: 36px;
    }

    .website-swiper-prev::after,
    .website-swiper-next::after {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .website-slider-container {
        padding: 0 35px;
    }

    .website-swiper-prev,
    .website-swiper-next {
        width: 30px;
        height: 30px;
    }

    .website-swiper-prev::after,
    .website-swiper-next::after {
        font-size: 12px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .design-quotes {
        gap: 16px;
    }

    .design-quote {
        padding: 20px 20px 20px 24px;
    }

    .quote-text {
        font-size: var(--font-size-base);
    }

    .results-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .result-thumbnail {
        padding: 12px 10px;
    }

    .thumbnail-image {
        height: 100px;
    }

    .thumbnail-label {
        font-size: 17px;
    }

    .expected-results-title {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 600px) {
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .design-quote {
        padding: 6px 0 6px 12px;
    }

    .quote-text {
        font-size: 16px;
    }

    .quote-author {
        font-size: 13px;
    }
}

/* ===================================
   Typewriter Effect Styles
   =================================== */

/* Blinking cursor */
.typewriter-cursor {
    display: inline-block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    vertical-align: bottom;
    opacity: 0.9;
}

/* Cursor blink animation */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    50.1%, 100% {
        opacity: 0;
    }
}

/* Ensure title container has proper spacing and wrapping */
#typewriter-container {
    min-height: 1.5em;
    display: block;
}

/* Dark mode adjustments */
body.dark-mode .typewriter-cursor {
    color: rgba(255, 255, 255, 0.6);
}

/* Logo Examples - Display logos vertically in detail pane */
.logo-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.logo-examples .result-thumbnail {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo-examples .result-thumbnail:hover {
    transform: scale(1.02);
}

.logo-example-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile floating label adjustments - switch to classic labels */
@media (max-width: 670px) {
    /* Convert floating labels to static labels on mobile */
    .floating-input {
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }

    .floating-input label {
        order: -1; /* Move label above input */
        width: 100%;
        position: static;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        transform: none;
        color: var(--text-dark);
        background: transparent;
        padding: 0;
        font-weight: 500;
        line-height: 1.4;
    }

    .floating-input input,
    .floating-input textarea {
        order: 0;
        width: 100%;
        padding: 12px 16px;
    }

    /* Remove floating behavior on focus/fill */
    .floating-input input:focus + label,
    .floating-input input:not(:placeholder-shown) + label,
    .floating-input textarea:focus + label,
    .floating-input textarea:not(:placeholder-shown) + label {
        order: -1;
        width: 100%;
        position: static;
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        transform: none;
        color: var(--text-dark);
        background: transparent;
        top: auto;
    }


    /* Info icons and tooltips ordering */
    .input-info-icon {
        order: 2;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%) scale(0);
    }

    .input-with-info.show-info .input-info-icon {
        transform: translateY(-50%) scale(1);
    }

    .input-info-tooltip {
        order: 3;
        width: 100%;
    }

    /* Check icons for URL and other validated fields */
    .url-check-icon {
        order: 2;
        position: absolute;
        right: 40px; /* Move left to make room for info icon */
        top: 50%;
        transform: translateY(-50%);
    }

    /* Date input fixes for static label layout */
    .floating-input.date-input label {
        color: var(--text-dark);
    }

    .floating-input.date-input::before {
        top: auto;
        bottom: 12px;
        transform: translateY(0);
    }

    /* Valid check icon fix for static label layout */
    .valid-check-icon {
        top: auto;
        bottom: 12px;
        transform: translateY(0) scale(0);
    }

    .floating-input input.valid ~ .valid-check-icon,
    .floating-input textarea.valid ~ .valid-check-icon {
        transform: translateY(0) scale(1);
    }

    /* Form offer section mobile optimization */
    .form-price-summary {
        gap: 15px;
        padding: 15px 20px;
    }

    .form-price-value {
        font-size: 22px;
    }

    .form-price-divider {
        height: 40px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .typewriter-cursor {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .typewriter-cursor {
        font-size: 0.85em;
        margin-left: 1px;
    }
}

/* Very small screens - stack price items vertically */
@media (max-width: 380px) {
    .form-price-summary {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .form-price-divider {
        width: 60px;
        height: 1px;
    }

    .form-price-value {
        font-size: 24px;
    }

    .form-offer-badge {
        font-size: 12px;
        padding: 5px 12px;
        letter-spacing: 0.3px;
    }
}

/* ===========================
   Section Header with Reset
   =========================== */
.section-header-with-reset {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.section-header-text {
    flex: 1;
}

.section-header-text .section-title {
    margin-bottom: 10px;
}

.section-header-text .section-subtitle {
    margin-bottom: 0;
}

.reset-config-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 5px;
}

.reset-config-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.reset-config-link svg {
    flex-shrink: 0;
}

body.dark-mode .reset-config-link {
    background: var(--bg-dark);
    border-color: var(--border-dark);
    color: var(--text-light-dark);
}

body.dark-mode .reset-config-link:hover {
    color: var(--primary-light, #60a5fa);
    border-color: var(--primary-light, #60a5fa);
    background: rgba(96, 165, 250, 0.1);
}

@media (max-width: 600px) {
    .section-header-with-reset {
        flex-direction: column;
        align-items: stretch;
    }

    .reset-config-link {
        align-self: flex-start;
        margin-top: 10px;
    }
}

/* Subtle reset link (below submit button) */
.form-reset-link-wrapper {
    text-align: center;
    margin-top: 16px;
}

.reset-config-link-subtle {
    display: inline-flex;
    background: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 17px;
    color: var(--text-light);
    opacity: 0.7;
}

.reset-config-link-subtle:hover {
    opacity: 1;
    background: transparent;
    color: #ef4444;
    border-color: transparent;
}

body.dark-mode .reset-config-link-subtle {
    background: transparent;
    border: none;
}

body.dark-mode .reset-config-link-subtle:hover {
    background: transparent;
    color: #f87171;
}

/* ===========================
   Reset Configuration Modal
   =========================== */
.reset-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    padding: 20px;
}

.reset-modal.visible {
    opacity: 1;
    visibility: visible;
}

.reset-modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.2s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reset-modal.visible .reset-modal-content {
    transform: scale(1);
}

.reset-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reset-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.reset-modal-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.reset-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.reset-modal-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reset-modal-btn-cancel {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.reset-modal-btn-cancel:hover {
    background: #e5e7eb;
}

.reset-modal-btn-confirm {
    background: #ef4444;
    color: white;
}

.reset-modal-btn-confirm:hover {
    background: #dc2626;
}

/* Dark mode */
body.dark-mode .reset-modal {
    background: rgba(0, 0, 0, 0.7);
}

body.dark-mode .reset-modal-content {
    background: #1f2937;
    border: 1px solid #374151;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .reset-modal-icon {
    background: rgba(37, 99, 235, 0.2);
}

body.dark-mode .reset-modal-title {
    color: var(--text-light-dark);
}

body.dark-mode .reset-modal-text {
    color: #9ca3af;
}

body.dark-mode .reset-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light-dark);
    border-color: #374151;
}

body.dark-mode .reset-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===========================
   Hosting Reminder Toast
   =========================== */
.hosting-reminder {
    position: fixed;
    right: 20px;
    bottom: 85px;
    z-index: 1000;
    transform: translateX(calc(100% + 30px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hosting-reminder.visible {
    transform: translateX(0);
}

.hosting-reminder.hiding {
    transform: translateX(calc(100% + 30px));
}

.hosting-reminder-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 380px;
}

.hosting-reminder-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosting-reminder-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.hosting-reminder-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.hosting-reminder-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hosting-reminder-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.hosting-reminder-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosting-reminder-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

/* Dark mode support */
body.dark-mode .hosting-reminder-content {
    background: #1f2937;
    border-color: #374151;
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hosting-reminder-text {
    color: var(--text-light-dark);
}

body.dark-mode .hosting-reminder-link {
    color: var(--primary-light, #60a5fa);
}

body.dark-mode .hosting-reminder-link:hover {
    color: #93c5fd;
}

body.dark-mode .hosting-reminder-close {
    color: #6b7280;
}

body.dark-mode .hosting-reminder-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hosting-reminder {
        right: 10px;
        bottom: 110px;
        left: 10px;
    }

    .hosting-reminder-content {
        max-width: none;
    }
}
