/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --brand-black: #111111;
    --brand-black-rgb: 17, 17, 17;
    --brand-gray-dark: #1e1e21;
    --brand-gray-light: #27272a;
    --brand-orange: #ea580c;
    --brand-orange-light: #f97316;
    --brand-orange-rgb: 234, 88, 12;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #18181b;
    --text-dark-muted: #71717a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-dark: rgba(0, 0, 0, 0.1);
    --max-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--text-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--brand-orange);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(var(--brand-orange-rgb), 0.3);
}

.btn-secondary {
    background-color: var(--text-white);
    color: var(--brand-black);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--brand-black);
    color: var(--text-white);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-text {
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-orange-light);
    letter-spacing: 0.05em;
    display: block;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-link {
    padding: 0.5rem 0;
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--brand-orange-light);
    opacity: 1;
}

.nav-phone {
    font-size: 0.9rem;
    background-color: var(--brand-orange);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(var(--brand-orange-rgb), 0.2);
}

.nav-phone:hover {
    background-color: var(--brand-orange-light);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Dropdown Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--brand-gray-dark);
    border-bottom: 2px solid var(--brand-orange);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
    background-color: var(--brand-black);
    color: var(--text-white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(var(--brand-orange-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-cols: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-notdienst {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(234, 88, 12, 0.15);
    border: 1px solid rgba(234, 88, 12, 0.4);
    color: var(--brand-orange-light);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--brand-orange-light);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--brand-orange-light);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-w: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-benefits {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 480px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    stroke: var(--brand-orange-light);
    margin: 0 auto 0.5rem;
}

.benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.benefit-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(234, 88, 12, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    aspect-ratio: 4/3;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge-left {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: var(--brand-orange);
    color: var(--brand-black);
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 900;
    transform: rotate(-3deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-stars {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.hero-badge-right {
    position: absolute;
    top: -15px;
    right: 15px;
    background-color: var(--brand-black);
    border: 2px solid rgba(234, 88, 12, 0.4);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 900;
    transform: rotate(2deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.1;
}

.hero-badge-right .orange-txt {
    color: var(--brand-orange-light);
    font-size: 0.7rem;
    display: block;
}

/* Reviews Banner */
.reviews-section {
    padding-bottom: 3rem;
    background-color: var(--brand-black);
}

.reviews-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.reviews-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-subtitle {
    color: var(--brand-orange-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
}

.section-title span {
    color: var(--brand-orange-light);
}

.section-desc {
    color: var(--text-dark-muted);
    margin-top: 1rem;
    font-size: 1.05rem;
}

.section-desc-light {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--text-white);
}

.services-grid {
    display: grid;
    grid-template-cols: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    padding: 2.25rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    transform: translateY(-5px);
}

.service-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-card-icon {
    background-color: var(--brand-orange);
    color: var(--text-white);
}

.service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: var(--brand-black);
    color: var(--text-white);
}

.tax-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    margin-top: 1.5rem;
}

.tax-toggle-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-smooth);
}

.tax-toggle-label.active {
    color: var(--brand-orange-light);
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--brand-orange);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.pricing-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.pricing-card {
    background-color: var(--brand-gray-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.25rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.pricing-card h3 svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--brand-orange-light);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
}

.price-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.price-value {
    font-weight: 700;
    color: var(--brand-orange-light);
    font-size: 1.15rem;
    white-space: nowrap;
}

.pricing-alert-box {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background-color: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.25);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-alert-box svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--brand-orange-light);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-alert-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.pricing-alert-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-methods {
    margin-top: 3.5rem;
    text-align: center;
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.payment-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-item svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke: var(--brand-orange-light);
}

/* Service Areas */
.areas {
    padding: 5rem 0;
    background-color: var(--text-white);
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.area-badge {
    background-color: var(--brand-black);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.area-badge svg {
    width: 1rem;
    height: 1rem;
    stroke: var(--brand-orange-light);
}

.area-badge-more {
    background-color: var(--brand-orange);
    color: var(--text-white);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Notdienst CTA section */
.notdienst-cta {
    background-color: var(--brand-orange);
    color: var(--brand-black);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.notdienst-grid {
    display: grid;
    grid-template-cols: 1fr auto;
    align-items: center;
    gap: 2rem;
}

.notdienst-info h2 {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.notdienst-info p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

.notdienst-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.notdienst-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-notdienst-call {
    background-color: var(--brand-black);
    color: var(--text-white);
    font-size: 1.15rem;
    padding: 1.1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-notdienst-call:hover {
    background-color: var(--brand-gray-light);
    transform: translateY(-2px);
}

.btn-notdienst-call svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: var(--brand-orange-light);
    stroke-width: 2.5;
}

/* FAQs Section */
.faq {
    padding: 5rem 0;
    background-color: var(--text-white);
}

.faq-wrapper {
    max-width: 768px;
    margin: 2.5rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color-dark);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.accordion-trigger:hover {
    color: var(--brand-orange);
}

.accordion-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-bottom 0.3s ease;
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-content {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--brand-black);
    color: var(--text-white);
}

.contact-grid {
    display: grid;
    grid-template-cols: 1fr 1.1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--brand-orange-light);
}

.contact-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--brand-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card:hover .contact-card-icon {
    background-color: var(--brand-orange-light);
    color: var(--brand-black);
}

.contact-card-icon-whatsapp {
    color: #25d366;
}

.contact-card:hover .contact-card-icon-whatsapp {
    background-color: #25d366;
    color: var(--text-white);
}

.contact-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.contact-card-info .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-card-info .value {
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-form-card {
    background-color: var(--brand-gray-dark);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.25rem;
}

.contact-form-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.375rem;
    padding: 0.85rem 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 2px rgba(var(--brand-orange-rgb), 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

textarea.form-input {
    resize: vertical;
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Footer Section */
footer {
    background-color: var(--brand-gray-dark);
    color: var(--text-muted);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-cols: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a:hover {
    color: var(--brand-orange-light);
}

.footer-desc {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.5;
}

.footer-contact-info {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-info li {
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--brand-orange-light);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Sticky Phone Call Button for Mobile */
.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--brand-orange);
    color: var(--brand-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 90;
    align-items: center;
    justify-content: center;
    animation: soft-pulse 2s infinite;
}

.mobile-sticky-call svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-floating:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.whatsapp-floating svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Pulsating animation for WhatsApp */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    /* Move WhatsApp floating button up on mobile so it doesn't overlap the phone button */
    .whatsapp-floating {
        bottom: 90px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--brand-black);
    color: var(--text-white);
    border-top: 3px solid var(--brand-orange);
    padding: 1.5rem 0;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.4);
    display: none;
}

.cookie-banner.open {
    display: block;
}

.cookie-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.85rem;
    max-width: 750px;
}

.cookie-text a {
    text-decoration: underline;
    color: var(--brand-orange-light);
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Legal layout */
.legal-page {
    padding-top: 130px;
    padding-bottom: 5rem;
}

.legal-back {
    color: var(--brand-orange-light);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
}

.legal-content {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 800px;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--brand-black);
}

.legal-content p {
    color: var(--text-dark-muted);
}

.legal-note {
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    font-style: italic;
    margin-top: 3rem;
}

/* Toast message styling */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    width: 100%;
}

.toast {
    background-color: #333;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid var(--brand-orange);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #22c55e;
}

.toast-error {
    border-left-color: #ef4444;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(234, 88, 12, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

@keyframes soft-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(234, 88, 12, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
    }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }
    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-cols: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .badge-notdienst {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-benefits {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .contact-grid {
        grid-template-cols: 1fr;
        gap: 3rem;
    }
    .pricing-grid {
        grid-template-cols: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        height: 70px;
    }
    .hidden-md {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
    }
    .nav-phone {
        display: none;
    }
    .mobile-sticky-call {
        display: flex;
    }
    .notdienst-grid {
        grid-template-cols: 1fr;
        text-align: center;
    }
    .btn-notdienst-call {
        width: 100%;
    }
    .cookie-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }
    .cookie-actions {
        justify-content: flex-end;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero-benefits {
        grid-template-cols: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .benefit-title {
        font-size: 0.8rem;
    }
    .benefit-subtitle {
        font-size: 0.65rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    .pricing-card {
        padding: 1.5rem;
    }
    .contact-form-card {
        padding: 1.5rem;
    }
    .btn {
        width: 100%;
    }
}

/* Desktop Hero Benefits Redesign */
.hero-benefits-desktop {
    display: none;
}

@media (min-width: 901px) {
    .hero-content .hero-benefits {
        display: none;
    }
    
    .hero-benefits-desktop {
        display: grid;
        grid-template-cols: repeat(3, 1fr);
        gap: 3rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1.25rem;
        padding: 1.75rem 2.5rem;
        margin-top: 3.5rem;
        box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    }
    
    .hero-benefits-desktop .benefit-item {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        text-align: left;
    }
    
    .hero-benefits-desktop .benefit-icon {
        margin: 0;
        width: 3.25rem;
        height: 3.25rem;
        stroke: var(--brand-orange-light);
        background: rgba(234, 88, 12, 0.1);
        padding: 0.75rem;
        border-radius: 0.75rem;
        flex-shrink: 0;
    }
    
    .hero-benefits-desktop .benefit-title {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-white);
        margin-bottom: 0.2rem;
    }
    
    .hero-benefits-desktop .benefit-subtitle {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 500;
    }
}
