/* ============================================
   ruegenhosting.de — Stylesheet
   ============================================ */

:root {
    --ocean: #0B2A3F;
    --ocean-light: #14405C;
    --sand: #F4EDE0;
    --cream: #FAFAF7;
    --beacon: #E8743B;
    --beacon-dark: #C85D26;
    --mist: #8B9BA8;
    --mist-light: #C9D1D8;
    --chalk: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--ocean);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.16 0 0 0 0 0.25 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ========== NAVIGATION ========== */
nav.main-nav {
    position: sticky;
    top: 0;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(11, 42, 63, 0.08);
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ocean);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-mark {
    width: 28px;
    height: 28px;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--ocean);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--beacon);
}

.nav-cta {
    background: var(--ocean);
    color: var(--cream) !important;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    transition: all 0.25s;
}

.nav-cta:hover {
    background: var(--beacon);
    color: var(--cream) !important;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--ocean);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    padding: 7rem 0 8rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ocean-light);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--beacon);
}

h1.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 400;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.25s forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--beacon);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--ocean-light);
    margin-bottom: 2.5rem;
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--ocean);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--beacon);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(232, 116, 59, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--ocean);
    border: 1.5px solid var(--ocean);
}

.btn-secondary:hover {
    background: var(--ocean);
    color: var(--cream);
}

.btn svg {
    transition: transform 0.25s;
}

.btn:hover svg {
    transform: translateX(3px);
}

.hero-visual {
    position: relative;
    aspect-ratio: 1;
    opacity: 0;
    animation: fadeIn 1.2s 0.5s forwards;
}

.hero-visual svg {
    width: 100%;
    height: 100%;
}

/* ========== PAGE HEADER (Unterseiten) ========== */
.page-header {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header-inner {
    max-width: 820px;
}

h1.page-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
}

h1.page-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--beacon);
}

.page-lead {
    font-size: 1.2rem;
    color: var(--ocean-light);
    max-width: 640px;
}

/* ========== TRUST BAR ========== */
.trust {
    background: var(--ocean);
    color: var(--cream);
    padding: 3.5rem 0;
    position: relative;
}

.trust::before, .trust::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--beacon);
    opacity: 0.3;
}
.trust::before { top: 0; }
.trust::after { bottom: 0; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item-icon {
    width: 36px;
    height: 36px;
    color: var(--beacon);
    margin-bottom: 0.5rem;
}

.trust-item-title {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
}

.trust-item-text {
    font-size: 0.9rem;
    color: var(--mist-light);
    line-height: 1.5;
}

/* ========== SECTIONS ========== */
section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    max-width: 720px;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--beacon);
    margin-bottom: 1.25rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--beacon);
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
}

h2.section-title em {
    font-style: italic;
    font-weight: 300;
}

.section-lead {
    font-size: 1.15rem;
    color: var(--ocean-light);
    max-width: 580px;
}

/* ========== PACKAGES ========== */
.packages {
    background: var(--cream);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.package {
    background: var(--chalk);
    border: 1px solid rgba(11, 42, 63, 0.1);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.package:hover {
    transform: translateY(-6px);
    border-color: var(--ocean);
    box-shadow: 0 30px 60px -30px rgba(11, 42, 63, 0.25);
}

.package.featured {
    background: var(--ocean);
    color: var(--cream);
    border-color: var(--ocean);
    transform: scale(1.02);
}

.package.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--beacon);
    color: var(--cream);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.package-emoji {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
}

.package-name {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.package-tagline {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 2rem;
    min-height: 2.75rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(11, 42, 63, 0.1);
}

.package.featured .package-price {
    border-color: rgba(250, 250, 247, 0.2);
}

.package-price-amount {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
}

.package-price-currency {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.package-price-period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
}

.package-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--beacon);
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.package .btn {
    width: 100%;
    justify-content: center;
}

.package.featured .btn-primary {
    background: var(--beacon);
}

.package.featured .btn-primary:hover {
    background: var(--cream);
    color: var(--ocean);
}

/* ========== EXTRAS ========== */
.extras {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.extras::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(232, 116, 59, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.extra-card {
    background: var(--cream);
    border: 1px solid rgba(11, 42, 63, 0.08);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.25s;
}

.extra-card:hover {
    transform: translateX(4px);
    border-color: var(--beacon);
}

.extra-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--ocean);
    color: var(--beacon);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-icon svg {
    width: 22px;
    height: 22px;
}

.extra-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.extra-desc {
    font-size: 0.9rem;
    color: var(--ocean-light);
    margin-bottom: 0.5rem;
}

.extra-price {
    font-size: 0.85rem;
    color: var(--beacon);
    font-weight: 600;
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
    background: var(--ocean);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, transparent 49%, rgba(232, 116, 59, 0.05) 50%, transparent 51%),
        linear-gradient(-135deg, transparent 49%, rgba(232, 116, 59, 0.05) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-teaser h2 {
    color: var(--cream);
}

.about-teaser .section-eyebrow {
    color: var(--beacon);
}

.about-text {
    font-size: 1.1rem;
    color: var(--mist-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-quote {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.3;
    position: relative;
    padding-left: 2rem;
    color: var(--cream);
}

.about-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--beacon);
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: var(--cream);
    text-align: center;
    padding: 8rem 0;
}

.final-cta h2 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.final-cta .section-lead {
    margin: 0 auto 3rem;
}

.final-cta .section-eyebrow {
    justify-content: center;
}

/* ========== COMPARISON TABLE ========== */
.compare-wrap {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 14px;
    border: 1px solid rgba(11, 42, 63, 0.1);
    background: var(--chalk);
}

.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.compare th, .compare td {
    padding: 1.1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(11, 42, 63, 0.08);
}

.compare thead th {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
    background: var(--sand);
    color: var(--ocean);
}

.compare thead th:first-child {
    background: transparent;
}

.compare tbody th {
    font-weight: 500;
    color: var(--ocean-light);
    font-size: 0.95rem;
}

.compare td {
    font-size: 0.95rem;
    color: var(--ocean);
}

.compare .highlight-col {
    background: rgba(232, 116, 59, 0.05);
}

/* ========== LEISTUNGEN SEITE ========== */
.leistung-block {
    margin-bottom: 5rem;
}

.leistung-block:last-child {
    margin-bottom: 0;
}

.leistung-block h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.leistung-block-intro {
    color: var(--ocean-light);
    margin-bottom: 2rem;
    max-width: 620px;
}

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

.leistung-list li {
    background: var(--chalk);
    border: 1px solid rgba(11, 42, 63, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.leistung-list li:hover {
    border-color: var(--beacon);
}

.leistung-name {
    font-weight: 500;
    font-size: 0.98rem;
}

.leistung-price {
    color: var(--beacon);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.leistung-price.free {
    color: var(--ocean-light);
    font-style: italic;
    font-weight: 500;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid rgba(11, 42, 63, 0.1);
}

.faq-item summary {
    padding: 1.75rem 0;
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--beacon);
}

.faq-item summary::after {
    content: '+';
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    color: var(--beacon);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 1.75rem;
    color: var(--ocean-light);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 700px;
}

.faq-answer p + p {
    margin-top: 0.75rem;
}

/* ========== KONTAKT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--beacon);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.contact-info-value {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-info-value a {
    color: var(--ocean);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: var(--beacon);
}

.contact-form {
    background: var(--chalk);
    border: 1px solid rgba(11, 42, 63, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ocean);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11, 42, 63, 0.15);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--ocean);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--beacon);
}

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

.form-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--ocean-light);
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 820px;
    padding: 3rem 0 6rem;
}

.legal-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 1.75rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--ocean-light);
}

.legal-placeholder {
    background: var(--sand);
    border-left: 3px solid var(--beacon);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: var(--ocean);
}

.legal-placeholder strong {
    color: var(--beacon-dark);
}

/* ========== FOOTER ========== */
footer.main-footer {
    background: var(--ocean);
    color: var(--mist-light);
    padding: 4rem 0 2rem;
    position: relative;
}

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

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

.footer-tagline {
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--beacon);
    margin-bottom: 1.25rem;
}

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

.footer-col a {
    color: var(--mist-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--beacon);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 250, 247, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-cybercoast {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-cybercoast a {
    color: var(--beacon);
    text-decoration: none;
    font-weight: 500;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes drawLine {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

.wave-line {
    stroke-dasharray: 1000;
    animation: drawLine 3s ease-out forwards;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 2rem;
        border-bottom: 1px solid rgba(11,42,63,0.08);
        gap: 1.5rem;
    }

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

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero {
        padding: 4rem 0 5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package.featured {
        transform: scale(1);
    }

    .package.featured:hover {
        transform: translateY(-6px);
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .leistung-list {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }

    .page-header {
        padding: 3rem 0 2rem;
    }

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

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 1.75rem;
    }
}

/* ============================================
   Zahlungsmethoden-Anzeige
   ============================================ */

.payment-methods {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(11, 42, 63, 0.08);
    border-bottom: 1px solid rgba(11, 42, 63, 0.08);
    background: var(--chalk);
    margin: 3rem 0;
}

.payment-methods-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-methods-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mist);
    margin-bottom: 1.25rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sand);
    border: 1px solid rgba(11, 42, 63, 0.08);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ocean);
    transition: all 0.2s;
}

.payment-icon:hover {
    background: var(--chalk);
    border-color: var(--beacon);
}

.payment-icon svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.payment-methods-note {
    font-size: 0.8rem;
    color: var(--ocean-light);
    margin-top: 1rem;
    line-height: 1.5;
}

/* Footer Payment Badges */
.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
}

.footer-payment-badge {
    background: rgba(250, 250, 247, 0.08);
    border: 1px solid rgba(250, 250, 247, 0.15);
    border-radius: 6px;
    padding: 0.35rem 0.7rem;
    font-size: 0.72rem;
    color: rgba(250, 250, 247, 0.75);
}

/* Kompakte Variante im Checkout */
.payment-methods-compact {
    background: var(--sand);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: center;
}

.payment-methods-compact .payment-methods-label {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
}

.payment-methods-compact .payment-icon {
    background: var(--chalk);
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
}

@media (max-width: 640px) {
    .payment-icons {
        gap: 0.5rem;
    }
    .payment-icon {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}
