/*
 * SecretUndies Homepage Sektionen
 * Zentrales CSS – Weißer Kasten-Layout wie Screenshot
 * Verwendung: <link rel="stylesheet" href="https://secretundies.com/wp-content/themes/eros-child/secretundies-homepage.css">
 */

/* Override: Keine Unterstreichung unter Headlines (wie Escrow-Design) */
.su-content-block h2,
.su-content-block h3,
.su-content-block h4 {
    border: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Weißer Kasten für alle Sektionen (wie im Screenshot) */
.su-home-hub-inner,
.su-home-buy-inner,
.su-home-sell-inner,
.su-home-trust-inner,
.su-home-guides-inner {
    background: #ffffff;
    color: #4a4a4a;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

/* ========== 01 HUB-EINSTIEG ========== */
.su-home-hub {
    background: transparent;
    padding: 60px 20px;
    margin: 40px 0;
}

.su-home-hub-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.su-home-hub-header {
    text-align: center;
    margin-bottom: 40px;
}

.su-home-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-hub-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-hub-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-home-hub-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.6;
}

.su-home-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.su-home-hub-card {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.su-home-hub-card-visual {
    height: 140px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.su-home-hub-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.su-home-hub-card-body {
    padding: 24px 28px 32px;
}

.su-home-hub-card:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-home-hub-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.su-home-hub-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    flex-shrink: 0;
}

.su-home-hub-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #db2777;
}

.su-home-hub-card-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.su-home-hub-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.su-home-hub-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.su-home-hub-links li { margin: 0; }

.su-home-hub-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #1e293b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s ease;
}

.su-home-hub-links li:last-child a { border-bottom: none; }

.su-home-hub-links a:hover { color: #db2777; }

.su-home-hub-links a svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
    flex-shrink: 0;
}

.su-home-hub-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.su-home-hub-cta--primary {
    background: #db2777;
    color: #ffffff;
}

.su-home-hub-cta--primary:hover {
    background: #be185d;
    box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.su-home-hub-cta--outline {
    background: transparent;
    color: #db2777;
    border: 1.5px solid #db2777;
}

.su-home-hub-cta--outline:hover {
    background: rgba(219, 39, 119, 0.08);
}

.su-home-hub-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ========== 02 KAUFEN-HUB ========== */
.su-home-buy {
    background: transparent;
    padding: 60px 20px;
    margin: 0;
}

.su-home-buy-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.su-home-buy-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.su-home-buy-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    background: transparent;
    border: 1px solid #e2e8f0;
}

.su-home-buy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
}

.su-home-buy-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #fff;
    display: flex;
    gap: 16px;
}

.su-home-buy-img-stat { text-align: center; }

.su-home-buy-img-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.su-home-buy-img-stat span {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.su-home-buy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-buy-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-buy-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.su-home-buy-text > p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.su-home-buy-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.su-home-buy-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.su-home-buy-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
    flex-shrink: 0;
}

.su-home-buy-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #db2777;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.su-home-buy-cta:hover {
    background: #be185d;
    box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.su-home-buy-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.su-home-buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.su-home-buy-card {
    border-radius: 16px;
    padding: 24px 22px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: transparent;
}

.su-home-buy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: #db2777;
}

.su-home-buy-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 14px;
}

.su-home-buy-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #db2777;
}

.su-home-buy-card--purple .su-home-buy-card-icon svg { stroke: #7c3aed; }
.su-home-buy-card--blue .su-home-buy-card-icon svg { stroke: #2563eb; }
.su-home-buy-card--teal .su-home-buy-card-icon svg { stroke: #0d9488; }
.su-home-buy-card--amber .su-home-buy-card-icon svg { stroke: #d97706; }
.su-home-buy-card--rose .su-home-buy-card-icon svg { stroke: #e11d48; }

.su-home-buy-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-home-buy-card p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.su-home-buy-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #db2777;
    transition: gap 0.2s ease;
}

.su-home-buy-card--purple .su-home-buy-card-link { color: #7c3aed; }
.su-home-buy-card--blue .su-home-buy-card-link { color: #2563eb; }
.su-home-buy-card--teal .su-home-buy-card-link { color: #0d9488; }
.su-home-buy-card--amber .su-home-buy-card-link { color: #d97706; }
.su-home-buy-card--rose .su-home-buy-card-link { color: #e11d48; }

.su-home-buy-card:hover .su-home-buy-card-link { gap: 8px; }

.su-home-buy-card-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* ========== 03 VERKAUFEN-HUB ========== */
.su-home-sell {
    background: transparent;
    padding: 60px 20px;
    margin: 0;
}

.su-home-sell-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.su-home-sell-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.su-home-sell-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-sell-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-sell-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.su-home-sell-text > p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.su-home-sell-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.su-home-sell-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: #1e293b;
    font-weight: 500;
}

.su-home-sell-benefits li svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
    flex-shrink: 0;
}

.su-home-sell-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.su-home-sell-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #db2777;
    color: #ffffff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.su-home-sell-cta-primary:hover {
    background: #be185d;
    box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.su-home-sell-cta-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.su-home-sell-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #db2777;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.su-home-sell-cta-secondary:hover {
    border-color: #db2777;
    background: rgba(219, 39, 119, 0.08);
}

.su-home-sell-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    background: transparent;
    border: 1px solid #e2e8f0;
}

.su-home-sell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.su-home-sell-img-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.su-home-sell-img-stat {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.su-home-sell-img-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #db2777;
}

.su-home-sell-img-stat span {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.su-home-sell-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.su-home-sell-feature {
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: transparent;
}

.su-home-sell-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: #db2777;
}

.su-home-sell-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 14px;
}

.su-home-sell-feature--green .su-home-sell-feature-icon svg { stroke: #16a34a; width: 20px; height: 20px; }
.su-home-sell-feature--violet .su-home-sell-feature-icon svg { stroke: #7c3aed; width: 20px; height: 20px; }
.su-home-sell-feature--sky .su-home-sell-feature-icon svg { stroke: #0284c7; width: 20px; height: 20px; }
.su-home-sell-feature--orange .su-home-sell-feature-icon svg { stroke: #ea580c; width: 20px; height: 20px; }

.su-home-sell-feature h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-home-sell-feature p {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.su-home-sell-feature-link {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.su-home-sell-feature--green .su-home-sell-feature-link { color: #16a34a; }
.su-home-sell-feature--violet .su-home-sell-feature-link { color: #7c3aed; }
.su-home-sell-feature--sky .su-home-sell-feature-link { color: #0284c7; }
.su-home-sell-feature--orange .su-home-sell-feature-link { color: #ea580c; }

.su-home-sell-feature:hover .su-home-sell-feature-link { gap: 8px; }

.su-home-sell-feature-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

/* ========== 04 VERTRAUEN & SICHERHEIT ========== */
.su-home-trust {
    background: transparent;
    padding: 60px 20px;
    margin: 0;
    position: relative;
}

.su-home-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
    opacity: 0.7;
}

.su-home-trust-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.su-home-trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.su-home-trust-visual { margin-bottom: 24px; }

.su-home-trust-shield {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.su-home-trust-shield svg {
    width: 100%;
    height: 100%;
}

.su-home-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-trust-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-trust-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-home-trust-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.6;
}

.su-home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.su-home-trust-card {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.su-home-trust-card:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-home-trust-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
}

.su-home-trust-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #db2777;
}

.su-home-trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.su-home-trust-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.su-home-trust-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #db2777;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.su-home-trust-card a:hover { gap: 10px; }

.su-home-trust-card a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.su-home-trust-banner {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.su-home-trust-banner-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-home-trust-banner-text p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.su-home-trust-banner-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #db2777;
    color: #ffffff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.su-home-trust-banner-cta a:hover {
    background: #be185d;
    box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.su-home-trust-banner-cta a svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ========== 05 GUIDES & RESSOURCEN ========== */
.su-home-guides {
    background: transparent;
    padding: 60px 20px;
    margin: 0;
}

.su-home-guides-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.su-home-guides-header {
    text-align: center;
    margin-bottom: 24px;
}

.su-home-guides-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.su-home-guides-visual-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.su-home-guides-visual-item svg {
    width: 28px;
    height: 28px;
    stroke: #db2777;
}

.su-home-guides-visual-divider {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
}

.su-home-guides-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-guides-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-guides-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-home-guides-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.6;
}

.su-home-guides-intro-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto 40px;
    padding: 28px 32px;
    background: transparent;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.su-home-guides-intro { text-align: center; }

.su-home-guides-intro p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

.su-home-guides-intro a {
    color: #db2777;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.su-home-guides-intro a:hover { border-color: #db2777; }

.su-home-guides-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.su-home-guides-col {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.su-home-guides-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
}

.su-home-guides-col-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    flex-shrink: 0;
}

.su-home-guides-col-icon svg {
    width: 18px;
    height: 18px;
    stroke: #db2777;
}

.su-home-guides-col-head h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.su-home-guides-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.su-home-guides-list li { border-bottom: 1px solid #f5f5f5; }

.su-home-guides-list li:last-child { border-bottom: none; }

.su-home-guides-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.2s ease;
}

.su-home-guides-list a:hover {
    background: rgba(219, 39, 119, 0.06);
    color: #db2777;
}

.su-home-guides-list-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.su-home-guides-list-name { font-size: 15px; font-weight: 600; }

.su-home-guides-list-desc { font-size: 12px; color: #94a3b8; }

.su-home-guides-list-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.su-home-guides-list-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #cbd5e1;
}

.su-home-guides-list a:hover .su-home-guides-list-arrow { transform: translateX(3px); }

.su-home-guides-list a:hover .su-home-guides-list-arrow svg { stroke: #db2777; }

.su-home-guides-special {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.su-home-guides-special-card {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.su-home-guides-special-card:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-home-guides-special-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 14px;
}

.su-home-guides-special-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
}

.su-home-guides-special-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-home-guides-special-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ========== SEPARATOR ========== */
.su-home-separator {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.su-home-separator--line {
    padding: 32px 20px;
}

.su-home-separator-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.su-home-separator-line::before,
.su-home-separator-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

.su-home-separator-line-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    flex-shrink: 0;
}

.su-home-separator-line-icon svg {
    width: 18px;
    height: 18px;
    stroke: #db2777;
}

.su-home-separator--wave { padding: 0; margin: 0; line-height: 0; }

.su-home-separator-wave {
    padding: 0;
    margin: 0;
    line-height: 0;
    background: transparent;
}

.su-home-separator-wave svg {
    width: 100%;
    height: 56px;
    display: block;
}

/* ========== RESPONSIVE ========== */

/* Mobile-First: Kleine Bildschirme (max 767px) */
@media (max-width: 767px) {
    .su-content-block {
        padding: 30px 16px !important;
        margin: 20px 0 !important;
    }

    .su-home-hub-grid { grid-template-columns: 1fr; gap: 20px; }
    .su-home-hub-title { font-size: 22px; }
    .su-home-hub-subtitle { font-size: 14px; }
    .su-home-hub-card-visual { height: 120px; }
    .su-home-hub-card-body { padding: 20px 16px 24px; }
    .su-home-hub-card-head h3 { font-size: 18px; }
    .su-home-hub-card p { font-size: 14px; }
    .su-home-hub-links a { font-size: 14px; padding: 8px 0; }
    .su-home-hub-cta { font-size: 14px; padding: 10px 20px; width: 100%; justify-content: center; }

    .su-home-buy-hero { grid-template-columns: 1fr; }
    .su-home-buy-img { min-height: 200px; }
    .su-home-buy-img img { min-height: 200px; }
    .su-home-buy-text h2 { font-size: 22px; }
    .su-home-buy-text p { font-size: 14px; }
    .su-home-buy-benefits li { font-size: 14px; }
    .su-home-buy-cta { font-size: 14px; padding: 12px 24px; width: 100%; justify-content: center; }
    .su-home-buy-grid { grid-template-columns: 1fr; gap: 12px; }
    .su-home-buy-card h3 { font-size: 15px; }
    .su-home-buy-card p { font-size: 13px; }
    .su-home-buy-card-link { font-size: 13px; }
    .su-home-buy-img-overlay { gap: 4px; }
    .su-home-buy-img-stat strong { font-size: 16px; }
    .su-home-buy-img-stat span { font-size: 11px; }

    .su-home-sell-hero { grid-template-columns: 1fr; }
    .su-home-sell-img { min-height: 200px; order: -1; }
    .su-home-sell-img img { min-height: 200px; }
    .su-home-sell-text h2 { font-size: 22px; }
    .su-home-sell-text p { font-size: 14px; }
    .su-home-sell-benefits li { font-size: 14px; }
    .su-home-sell-cta-primary { font-size: 14px; padding: 12px 24px; width: 100%; justify-content: center; text-align: center; }
    .su-home-sell-cta-secondary { font-size: 14px; padding: 12px 24px; width: 100%; text-align: center; }
    .su-home-sell-cta-row { flex-direction: column; gap: 10px; }
    .su-home-sell-features { grid-template-columns: 1fr; gap: 12px; }
    .su-home-sell-feature h4 { font-size: 15px; }
    .su-home-sell-feature p { font-size: 13px; }
    .su-home-sell-feature-link { font-size: 13px; }
    .su-home-sell-img-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; }

    .su-home-trust-title { font-size: 22px; }
    .su-home-trust-subtitle { font-size: 14px; }
    .su-home-trust-shield svg { width: 48px; height: 48px; }
    .su-home-trust-grid { grid-template-columns: 1fr; gap: 12px; }
    .su-home-trust-card { padding: 20px 16px; }
    .su-home-trust-card h3 { font-size: 16px; }
    .su-home-trust-card p { font-size: 13px; }
    .su-home-trust-card a { font-size: 13px; }
    .su-home-trust-banner { flex-direction: column; text-align: center; padding: 20px 16px; gap: 16px; }
    .su-home-trust-banner h3 { font-size: 16px; }
    .su-home-trust-banner p { font-size: 13px; }

    .su-home-guides-title { font-size: 22px; }
    .su-home-guides-subtitle { font-size: 14px; }
    .su-home-guides-intro p { font-size: 14px; line-height: 1.6; }
    .su-home-guides-cols { grid-template-columns: 1fr; gap: 24px; }
    .su-home-guides-col-head h3 { font-size: 17px; }
    .su-home-guides-list-name { font-size: 14px; }
    .su-home-guides-list-desc { font-size: 12px; }
    .su-home-guides-special { grid-template-columns: 1fr; gap: 12px; }
    .su-home-guides-special-card h4 { font-size: 15px; }
    .su-home-guides-special-card p { font-size: 13px; }
    .su-home-guides-visual-item svg { width: 28px; height: 28px; }
}

/* Tablet: Mittlere Bildschirme (max 900px) */
@media (max-width: 900px) {
    .su-home-buy-hero { grid-template-columns: 1fr; }
    .su-home-buy-img { min-height: 240px; }
    .su-home-buy-img img { min-height: 240px; }
    .su-home-buy-grid { grid-template-columns: 1fr 1fr; }
    .su-home-sell-hero { grid-template-columns: 1fr; }
    .su-home-sell-img { min-height: 260px; order: -1; }
    .su-home-sell-img img { min-height: 260px; }
    .su-home-sell-features { grid-template-columns: 1fr 1fr; }
    .su-home-sell-img-stats { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .su-home-trust-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet-Klein: (max 768px) */
@media (max-width: 768px) {
    .su-home-hub-grid { grid-template-columns: 1fr; }
    .su-home-hub-title { font-size: 24px; }
}

/* Kleine Bildschirme (max 600px) — ergaenzend zu 767px */
@media (max-width: 600px) {
    .su-home-buy-grid { grid-template-columns: 1fr; }
    .su-home-buy-text h2 { font-size: 22px; }
    .su-home-sell-features { grid-template-columns: 1fr; }
    .su-home-sell-text h2 { font-size: 22px; }
    .su-home-sell-img-stats { grid-template-columns: repeat(2, 1fr); }
    .su-home-trust-grid { grid-template-columns: 1fr; }
    .su-home-trust-title { font-size: 22px; }
    .su-home-trust-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }
    .su-home-guides-cols { grid-template-columns: 1fr; }
    .su-home-guides-special { grid-template-columns: 1fr; }
    .su-home-guides-title { font-size: 22px; }
}

/* Desktop: Grosse Bildschirme (min 1024px) */
@media (min-width: 1024px) {
    .su-home-hub { padding: 80px 40px; }
    .su-home-hub-title { font-size: 32px; }
    .su-home-buy { padding: 80px 40px; }
    .su-home-buy-text h2 { font-size: 32px; }
    .su-home-sell { padding: 80px 40px; }
    .su-home-sell-text h2 { font-size: 32px; }
    .su-home-trust { padding: 80px 40px; }
    .su-home-trust-title { font-size: 32px; }
    .su-home-guides { padding: 80px 40px; }
    .su-home-guides-title { font-size: 32px; }
    .su-home-faq-title { font-size: 36px; }
}

/* ======================================
   SEKTION 6: FAQ – Häufige Fragen
   ====================================== */

.su-home-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.su-home-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-home-faq-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-home-faq-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-home-faq-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.6;
}

.su-home-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.su-home-faq-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.su-home-faq-item:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-home-faq-item summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
}

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

.su-home-faq-item[open] summary {
    color: #db2777;
    border-bottom: 1px solid #f1f5f9;
}

.su-home-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.su-home-faq-icon svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
}

.su-home-faq-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.su-home-faq-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #94a3b8;
}

.su-home-faq-item[open] .su-home-faq-arrow {
    transform: rotate(180deg);
}

.su-home-faq-answer {
    padding: 0 24px 20px 80px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

.su-home-faq-answer strong {
    color: #1e293b;
}

.su-home-faq-link {
    text-align: center;
    margin-top: 32px;
}

.su-home-faq-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #db2777;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.su-home-faq-link a:hover {
    gap: 12px;
}

.su-home-faq-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (min-width: 768px) {
    .su-home-faq-title { font-size: 32px; }
    .su-home-faq-grid { grid-template-columns: repeat(2, 1fr); }
    .su-home-faq-item:last-child { grid-column: 1 / -1; }
}

/* ======================================
   SEKTION 7: ESCROW – Käuferschutz
   ====================================== */

.su-escrow-header {
    text-align: center;
    margin-bottom: 40px;
}

.su-escrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-escrow-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-escrow-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-escrow-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.su-escrow-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.su-escrow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.su-escrow-step:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-escrow-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #db2777;
    flex-shrink: 0;
}

.su-escrow-step-content {
    flex: 1;
}

.su-escrow-step-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-escrow-step-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.su-escrow-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.su-escrow-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
}

.su-escrow-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.su-escrow-highlight:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-escrow-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.su-escrow-highlight-icon svg {
    width: 28px;
    height: 28px;
    stroke: #db2777;
}

.su-escrow-highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.su-escrow-highlight-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .su-escrow-title { font-size: 32px; }

    .su-escrow-steps {
        flex-direction: row;
        gap: 20px;
    }

    .su-escrow-step {
        flex-direction: column;
        text-align: center;
        flex: 1;
    }

    .su-escrow-step:hover {
        transform: translateY(-4px);
    }

    .su-escrow-step-number {
        margin: 0 auto 16px auto;
    }

    .su-escrow-step-icon {
        margin: 16px auto 0 auto;
    }
}

@media (min-width: 1024px) {
    .su-escrow-title { font-size: 36px; }
}

/* ======================================
   SEKTION 8: SO FUNKTIONIERT'S
   ====================================== */

.su-how-header {
    text-align: center;
    margin-bottom: 48px;
}

.su-how-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-how-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-how-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-how-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 550px;
    line-height: 1.6;
}

.su-how-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.su-how-tab {
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    text-decoration: none;
}

.su-how-tab:hover {
    border-color: #db2777;
    color: #db2777;
}

.su-how-tab.active {
    background: #db2777;
    border-color: #db2777;
    color: #ffffff;
}

.su-how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.su-how-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.su-how-step:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-how-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #db2777;
    flex-shrink: 0;
}

.su-how-step-content {
    flex: 1;
}

.su-how-step-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-how-step-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.su-how-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.su-how-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: #db2777;
}

.su-how-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.su-how-cta-text {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    text-align: center;
}

.su-how-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.su-how-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.su-how-btn-primary {
    background: #db2777;
    color: #ffffff;
    border: 1px solid #db2777;
}

.su-how-btn-primary:hover {
    background: #ffffff;
    color: #db2777;
}

.su-how-btn-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.su-how-btn-secondary:hover {
    border-color: #db2777;
    color: #db2777;
}

.su-how-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (min-width: 768px) {
    .su-how-title { font-size: 32px; }
    .su-how-steps { grid-template-columns: repeat(2, 1fr); }

    .su-how-cta {
        flex-direction: row;
        justify-content: space-between;
    }

    .su-how-cta-text { text-align: left; }

    .su-how-cta-buttons {
        flex-direction: row;
        width: auto;
        max-width: none;
    }

    .su-how-btn { width: auto; }
}

@media (min-width: 1024px) {
    .su-how-title { font-size: 36px; }
    .su-how-steps { grid-template-columns: repeat(4, 1fr); }

    .su-how-step {
        flex-direction: column;
        text-align: center;
    }

    .su-how-step:hover { transform: translateY(-4px); }
    .su-how-step-number { margin: 0 auto 16px auto; }
    .su-how-step-icon { margin: 16px auto 0 auto; }
}

/* ======================================
   SEKTION 9: GESUCHE – Wünsche erfüllen
   ====================================== */

.su-gesuche-header {
    text-align: center;
    margin-bottom: 40px;
}

.su-gesuche-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 16px;
}

.su-gesuche-badge svg {
    width: 16px;
    height: 16px;
    stroke: #db2777;
}

.su-gesuche-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.su-gesuche-title span {
    color: #db2777;
}

.su-gesuche-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.su-gesuche-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.su-gesuche-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.su-gesuche-card:hover {
    border-color: #db2777;
    box-shadow: 0 4px 20px rgba(219, 39, 119, 0.1);
}

.su-gesuche-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.su-gesuche-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #db2777;
}

.su-gesuche-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.su-gesuche-card-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.su-gesuche-cta {
    text-align: center;
}

.su-gesuche-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #db2777;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #db2777;
    transition: all 0.3s ease;
}

.su-gesuche-btn:hover {
    background: #ffffff;
    color: #db2777;
}

.su-gesuche-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.su-gesuche-note {
    font-size: 13px;
    color: #94a3b8;
    margin: 16px 0 0 0;
    text-align: center;
}

@media (min-width: 768px) {
    .su-gesuche-title { font-size: 32px; }
    .su-gesuche-grid { grid-template-columns: repeat(3, 1fr); }

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

    .su-gesuche-card:hover { transform: translateY(-4px); }
    .su-gesuche-card-icon { margin: 0 auto 8px auto; }
}

@media (min-width: 1024px) {
    .su-gesuche-title { font-size: 36px; }
}
