/* Custom Modal für kritische Aktionen */
.custom-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20,20,30,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.custom-modal-content {
    background: var(--card-bg);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(230,57,70,0.25);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 2px solid #e63946;
}
.custom-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #e63946;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}
.custom-modal-close:hover {
    color: #fff;
}
/* Kräftig roter Button für kritische Aktionen */
.btn-danger {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(230,57,70,0.15);
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-danger:hover, .btn-danger:focus {
    background: linear-gradient(135deg, #c1121f, #e63946);
    color: #fff;
    box-shadow: 0 4px 16px rgba(230,57,70,0.25);
    transform: scale(1.05);
}
/* ==================== */
/* CSS Variables */
/* ==================== */
:root {
    --primary-color: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b7a;
    --secondary-color: #f72585;
    --accent-color: #7209b7;
    --dark: #1a1a2e;
    --dark-light: #16213e;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --success: #06d6a0;
    --warning: #ffd60a;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
    
    /* Dark Mode (Always On) */
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f1419;
    --text-primary: #e9ecef;
    --text-secondary: #adb5bd;
    --border-color: #495057;
    --card-bg: #16213e;
    --navbar-bg: #0f1419;
    --footer-bg: #0a0e14;
    --input-bg: #16213e;
    --input-border: #495057;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

section {
    padding: 80px 0;
}

/* ==================== */
/* Typography */
/* ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* ==================== */
/* Navigation Login Button */
/* ==================== */
.nav-login {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.nav-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* maintenance-back base kept minimal; underline/hover animation is shared with nav-links a */
.maintenance-back {
    padding: 0.15rem 0.4rem; /* small clickable area */
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 6px;
}

.nav-login::after {
    display: none !important;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ==================== */
/* Navigation */
/* ==================== */
.navbar {
    background: var(--navbar-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
    justify-self: start;
    white-space: nowrap;
}

.strawberry-icon {
    font-size: 2rem;
}

.logo-text .solutions {
    color: var(--primary-color);
}

/* Firmenname auf Handy umbrechen */
@media (max-width: 768px) {
    .logo-text {
        display: block;
        line-height: 1.1;
        text-align: left;
    }
    .logo-text .solutions {
        display: block;
        margin-left: 0;
        font-size: 1.1em;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    justify-self: center;
    margin-left: 2rem;
}

.nav-links a,
.maintenance-back > span {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after,
.maintenance-back > span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover,
.maintenance-back:hover > span {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.maintenance-back:hover > span::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 3px;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1.2rem;
    justify-self: end;
}

.dark-mode-toggle:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(20deg) scale(1.1);
}

body.dark-mode .dark-mode-toggle {
    background: var(--bg-tertiary);
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(247, 37, 133, 0.05) 100%);
    border-radius: 0 0 0 100%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ==================== */
/* Floating Cards */
/* ==================== */
.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    border: 1px solid var(--border-color);
}

.floating-card .card-icon {
    font-size: 2rem;
}

.floating-card .card-text {
    font-weight: 600;
    color: var(--text-primary);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    left: 100px;
    animation-delay: 2s;
}

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

/* ==================== */
/* Services Section */
/* ==================== */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-box {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(247, 37, 133, 0.1));
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-primary);
    line-height: 1.8;
}

/* ==================== */
/* Packages Section */
/* ==================== */
.packages {
    background: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 480px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.package-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .price-suffix {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-note {
    text-align: center;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==================== */
/* Calculator Section */
/* ==================== */
.calculator {
    background: var(--bg-primary);
}

.domain-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(230, 57, 70, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.domain-info p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.domain-info a,
.info-box a,
.calculator-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.domain-info a:hover,
.info-box a:hover,
.calculator-note a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: transparent;
    padding: 3rem;
    border-radius: var(--border-radius);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    padding: 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
}

.radio-label:hover,
.checkbox-label:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-custom,
.checkbox-custom {
    display: none;
}

.radio-label:has(input[type="radio"]:checked),
.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.05);
}

.radio-label input[type="radio"]:checked ~ .radio-custom::after {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.radio-text,
.checkbox-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.radio-text strong,
.checkbox-text strong {
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.radio-label:has(input[type="radio"]:checked) .radio-text strong,
.checkbox-label:has(input[type="checkbox"]:checked) .checkbox-text strong {
    color: var(--primary-color);
}

.radio-label:has(input[type="radio"]:checked) .radio-text strong::after {
    content: ' ✓';
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.checkbox-label:has(input[type="checkbox"]:checked) .checkbox-text strong::after {
    content: ' ✓';
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.radio-text small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== */
/* Calculator Result */
/* ==================== */
.calculator-result {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid var(--border-color);
}

.calculator-result h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cost-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.cost-item.total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.cost-summary {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(247, 37, 133, 0.1));
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-primary);
}

.summary-item .highlight {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator-note {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
    border: 1px solid var(--border-color);
}

/* ==================== */
/* About Section */
/* ==================== */
.about {
    background: var(--bg-primary);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text h4 {
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .about-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .about-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.about-list li {
    color: var(--text-primary);
    padding: 0.5rem 0;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-field label {
    font-weight: 600;
    color: var(--text-primary);
}

.form-field input,
.form-field textarea {
    padding: 12px 15px;
    border: 2px solid var(--input-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--input-bg);
    color: var(--text-primary);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    word-break: break-all;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== */
/* Modal Styles */
/* ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--card-bg);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.modal-body {
    padding: 2rem;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.6;
}

.modal-body p {
    margin: 0;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary-modal {
    background: linear-gradient(135deg, #e63946, #f72585);
    color: white;
    min-width: 150px;
}

.btn-primary-modal:hover {
    background: linear-gradient(135deg, #d62839, #e01571);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-secondary-modal {
    background: #6c757d;
    color: white;
    min-width: 150px;
}

.btn-secondary-modal:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-danger-modal {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    min-width: 150px;
}

.btn-danger-modal:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    .calculator-result {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .navbar .container {
        grid-template-columns: auto 1fr auto auto;
        gap: 0.5rem;
        padding: 0.5rem 0.75rem;
    }
    
    .logo {
        grid-column: 1;
        gap: 0.25rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .strawberry-icon {
        font-size: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--navbar-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        grid-column: 2;
        z-index: 999;
    }
    
    .nav-links li {
        margin: 0.75rem 0;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dark-mode-toggle {
        grid-column: 3;
    }
    
    .burger {
        grid-column: 4;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger {
        display: flex;
        gap: 4px;
    }
    
    .burger div {
        width: 22px;
        height: 2px;
    }
    
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-4px, 5px);
    }
    
    .burger.active .line2 {
        opacity: 0;
    }
    
    .burger.active .line3 {
        transform: rotate(45deg) translate(-4px, -5px);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        text-align: center;
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    .calculator-container {
        padding: 1.5rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Bessere Touch-Targets */
    button, .btn, a {
        min-height: 44px;
    }
    
    /* Link spacing im Burger-Menu */
    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .about-text {
        padding: 1rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .navbar .container {
        padding: 0.5rem 0.75rem;
        gap: 0.25rem;
    }
    
    .logo {
        gap: 0.25rem;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .strawberry-icon {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .calculator-container {
        padding: 1rem 0.75rem;
    }
    
    /* Tabellen horizontal scrollbar */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-collapse: collapse;
    }
    
    table td,
    table th {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Footer responsiv */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    /* Cards mit weniger Padding */
    .dashboard-card {
        padding: 0.75rem;
        border-radius: 10px;
    }
    
    .card-content {
        padding: 0.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-header,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .btn-modal {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* Touch-freundliche Links und Buttons */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a,
    .nav-logout {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Besseres Spacing für Formular-Elemente */
    input,
    textarea,
    select {
        font-size: 16px;
        padding: 0.75rem;
        min-height: 44px;
    }
    
    /* Info-Boxen */
    .info-box {
        padding: 1rem;
        margin: 1rem 0;
        border-left-width: 3px;
    }
}

/* ==================== */
/* Dark Mode Specific Styles */
/* ==================== */
body.dark-mode {
    /* Cards and containers */
    .package-card,
    .contact-card,
    .info-box,
    .calculator-form,
    .calculator-result,
    .contact-form-container,
    .about-text,
    .floating-card {
        background: var(--card-bg);
        border-color: var(--border-color);
        color: var(--text-primary);
    }
    
    /* Inputs and forms */
    input,
    textarea,
    select {
        background: var(--input-bg);
        border-color: var(--input-border);
        color: var(--text-primary);
    }
    
    input::placeholder,
    textarea::placeholder {
        color: var(--text-secondary);
    }
    
    /* Headings */
    h1, h2, h3, h4, h5, h6 {
        color: var(--text-primary);
    }
    
    /* Links */
    a:not(.btn):not(.nav-links a) {
        color: var(--primary-light);
    }
    
    /* Sections */
    .services,
    .packages,
    .calculator,
    .about,
    .contact {
        background: var(--bg-primary);
    }
    
    .section-subtitle {
        color: var(--text-secondary);
    }
    
    /* Modal */
    .modal-content {
        background: var(--card-bg);
        color: var(--text-primary);
    }
    
    .modal-header {
        border-bottom-color: var(--border-color);
    }
    
    /* Footer already has dark bg */
    .footer {
        background: var(--footer-bg);
    }
    
    /* Info box */
    .info-box {
        background: var(--bg-secondary);
        border-left-color: var(--primary-color);
        color: var(--text-primary);
    }
    
    .info-box p {
        color: var(--text-primary);
    }
    
    /* Cost breakdown */
    .cost-section {
        border-bottom-color: var(--border-color);
    }
    
    .cost-section h4,
    .cost-item,
    .cost-item span {
        color: var(--text-primary);
    }
    
    /* Package badge */
    .package-card .badge {
        background: var(--primary-color);
        color: white;
    }
    
    /* Package features and prices */
    .package-features li,
    .package-note,
    .package-price,
    .price-suffix {
        color: var(--text-primary);
    }
    
    .service-card h3,
    .service-card p {
        color: var(--text-primary);
    }
    
    .contact-card h3,
    .contact-card p,
    .contact-card a {
        color: var(--text-primary);
    }
    
    /* Hero section text */
    .hero-subtitle {
        color: var(--text-secondary);
    }
    
    /* About section */
    .about-list li {
        color: var(--text-primary);
    }
    
    /* Calculator notes */
    .calculator-note,
    .calculator-note p,
    .domain-info p {
        color: var(--text-secondary);
    }
    
    /* Radio and checkbox labels */
    .radio-label,
    .checkbox-label {
        color: var(--text-primary);
    }
    
    .radio-text small,
    .checkbox-text small {
        color: var(--text-secondary);
    }
    
    /* Summary items */
    .summary-item span,
    .cost-summary {
        color: var(--text-primary);
    }
}
