/**
 * Основной файл стилей для domain.com
 */

/* === VARIABLES === */
:root {
    /* Цветовая палитра "Neon Ledger" */
    --bg-deep: #231129;
    --acc-turq: #37F2C4;
    --acc-lime: #CCFF00;
    --text: #1E1E22;
    --paper: #F7F7F5;
    --ring: #6CF2D9;
    
    /* Системные переменные */
    --header-height: 80px;
    --max-width: 1200px;
    --border-radius: 1rem;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    
    /* Градиенты */
    --hero-gradient: linear-gradient(135deg, #231129 0%, #3A0F3C 50%, #231129 100%);
    --accent-gradient: linear-gradient(90deg, var(--acc-turq) 0%, var(--acc-lime) 100%);
    --scanline-gradient: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--acc-turq);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

section {
    padding: clamp(3rem, 10vw, 6rem) 0;
    position: relative;
}

section:nth-child(even) {
    background-color: rgba(35, 17, 41, 0.03);
}

.site-header, .site-footer {
    background-color: var(--bg-deep);
    color: white;
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
    height: 48px;
}

.logo img {
    height: 100%;
    width: auto;
}

.main-nav {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-item a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-item a:hover::after,
.nav-item.active a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--paper);
    font-weight: 500;
}

.header-phone svg {
    color: var(--acc-turq);
}

.header-phone:hover {
    color: var(--acc-turq);
}

.mobile-menu-toggle {
    display: none;
    z-index: 1001;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--hero-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--scanline-gradient);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: clamp(2rem, 10vw, 4rem) 0;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2337F2C4' d='M300 0C134.5 0 0 134.5 0 300s134.5 300 300 300 300-134.5 300-300S465.5 0 300 0zm0 100c110.5 0 200 89.5 200 200s-89.5 200-200 200S100 410.5 100 300s89.5-200 200-200z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    min-width: 160px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn svg {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--acc-turq);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--acc-turq);
    color: var(--acc-turq);
    box-shadow: 0 0 15px var(--acc-turq);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--bg-deep);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--bg-deep);
    color: var(--bg-deep);
}

.btn-outline:hover {
    background-color: var(--bg-deep);
    color: white;
}

.btn-accent {
    background-color: var(--acc-lime);
    color: var(--bg-deep);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: var(--acc-turq);
}

/* === VORTEILE SECTION === */
.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vorteil-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vorteil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.vorteil-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(55, 242, 196, 0.1);
    color: var(--acc-turq);
}

.vorteil-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: calc(var(--border-radius) - 0.25rem);
}

.vorteil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vorteil-card:hover .vorteil-image img {
    transform: scale(1.05);
}

/* === LEISTUNGEN SECTION === */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.leistung-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.leistung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.leistung-icon {
    margin-bottom: 1.5rem;
    color: var(--acc-turq);
}

.leistung-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.leistung-features li {
    margin-bottom: 0.5rem;
}

.leistungen-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* === PROZESS SECTION === */
.prozess-section {
    background-color: var(--bg-deep);
    color: white;
    position: relative;
    overflow: hidden;
}

.prozess-section h2 {
    color: white;
}

.prozess-section h2::after {
    background: var(--acc-lime);
}

.prozess-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.prozess-step {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prozess-step:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.prozess-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--acc-turq);
    color: var(--bg-deep);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.prozess-step h3 {
    color: var(--acc-lime);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.prozess-step p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* === PREISE SECTION === */
.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.preis-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.preis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.preis-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--acc-lime);
    color: var(--bg-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.preis-header {
    background-color: var(--bg-deep);
    color: white;
    padding: 2rem;
    text-align: center;
}

.preis-header h3 {
    margin-bottom: 0.5rem;
    color: var(--acc-turq);
}

.preis {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.preis span {
    font-size: 1rem;
    opacity: 0.7;
}

.preis-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.preis-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.preis-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.preis-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--acc-turq);
    font-weight: bold;
}

.featured {
    transform: scale(1.05);
}

.featured .preis-header {
    background: linear-gradient(135deg, var(--bg-deep) 0%, #3A0F3C 100%);
}

.preise-hinweis {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* === ÜBER UNS SECTION === */
.ueber-uns-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ueber-uns-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--acc-turq);
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.ueber-uns-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.ueber-uns-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 10px rgba(55, 242, 196, 0.1);
    pointer-events: none;
}

/* === KUNDENSTIMMEN SECTION === */
.kundenstimmen-slider {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kundenstimme {
    padding: 2rem;
}

.kundenstimme-quote {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.kundenstimme-quote::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 24px;
    width: 24px;
    height: 24px;
    background-color: white;
    transform: rotate(45deg);
}

.quote-icon {
    color: var(--acc-turq);
    margin-bottom: 1rem;
}

.kundenstimme-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.kundenstimme-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.kundenstimme-info {
    display: flex;
    flex-direction: column;
}

.kundenstimme-info strong {
    font-weight: 600;
}

.kundenstimme-info span {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* === FAQ SECTION === */
.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    padding-right: 2rem;
}

.faq-toggle {
    flex-shrink: 0;
    color: var(--acc-turq);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active {
    background-color: rgba(55, 242, 196, 0.05);
}

/* === KONTAKT SECTION === */
.kontakt-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.kontakt-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kontakt-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kontakt-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.kontakt-detail svg {
    flex-shrink: 0;
    color: var(--acc-turq);
    margin-top: 0.25rem;
}

.kontakt-map {
    margin: 2rem 0;
    aspect-ratio: 16/9;
    width: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-deep);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle at center,
        rgba(55, 242, 196, 0.2) 0%,
        rgba(35, 17, 41, 0) 70%
    );
    pointer-events: none;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.7; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

.map-content {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.kontakt-hours {
    margin-top: auto;
}

.kontakt-hours h4 {
    color: var(--acc-turq);
    margin-bottom: 0.5rem;
}

/* === FORMS === */
.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--acc-turq);
    outline: none;
    box-shadow: 0 0 0 3px rgba(55, 242, 196, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-container {
    position: relative;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding-left: 30px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--acc-turq);
    border-color: var(--acc-turq);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--acc-turq);
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}

.form-submit {
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}

/* === POLICY PAGES === */
.policy-section {
    padding: 3rem 0;
}

.policy-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.policy-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.policy-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background-color: rgba(55, 242, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acc-turq);
}

.policy-header h1 {
    margin-bottom: 0;
}

.policy-toc {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.policy-toc h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.policy-toc ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.policy-toc li {
    margin-bottom: 0.5rem;
}

.policy-toc a {
    color: var(--acc-turq);
}

.policy-toc a:hover {
    text-decoration: underline;
}

.policy-content section {
    margin-bottom: 3rem;
    padding: 0;
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content address {
    font-style: normal;
    line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden; /* Предотвращает выход элементов за границы экрана */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-branding {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 1.5rem;
    height: 48px;
    width: auto;
}

.footer-description {
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 500px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--acc-turq);
    color: var(--bg-deep);
    transform: translateY(-3px);
}

.footer-nav h3,
.footer-legal h3,
.footer-contact h3 {
    color: var(--acc-turq);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--acc-turq);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--acc-turq);
}

.contact-item a:hover {
    color: var(--acc-turq);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* === DANKE PAGE === */
.danke-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.danke-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(55, 242, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--acc-turq);
    margin: 0 auto 2rem;
}

.danke-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.danke-info {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--acc-turq);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 34, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.5rem;
}

.cookie-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .ueber-uns-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-phone span {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-deep);
        padding: 6rem 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .main-nav.menu-open {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-item a {
        font-size: 1.25rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .footer-branding {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    section {
        padding: clamp(2rem, 5vw, 4rem) 0;
    }
    
    .prozess-timeline,
    .preise-grid,
    .leistungen-grid,
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
    
    .featured {
        transform: none;
    }
    
    .ueber-uns-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .badge {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }
}
