/* ═══════════════════════════════════════════════════════════════
   suiten.css – Styles für /suiten und /suiten/* Seiten
   Setzt landingpage.css und preise.css voraus
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────── */
.suite-hero {
    background: linear-gradient(160deg, #06183E 0%, #0F2544 100%);
    padding: 96px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.suite-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,169,97,.12) 0%, transparent 70%);
    pointer-events: none;
}
.suite-hero > .lp-container { position: relative; z-index: 1; }

.suite-hero-eyebrow {
    display: inline-block;
    background: rgba(201,169,97,.18);
    color: #7DD3FC;
    border: 1px solid rgba(201,169,97,.3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.suite-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -.02em;
    color: #fff;
}

.suite-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    margin: 0 auto 36px;
    max-width: 600px;
    line-height: 1.7;
}

.suite-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Allgemeine Sections ───────────────────────────────────────── */
.suite-section {
    padding: 72px 0;
    background: #fff;
}

.suite-section-alt {
    padding: 72px 0;
    background: #F9FAFB;
}

.suite-section-blue {
    padding: 72px 0;
    background: var(--lp-bg-blue, #F0F4FA);
}

.suite-section-hd {
    text-align: center;
    margin-bottom: 48px;
}

.suite-section-hd h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #0F2544;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}

.suite-section-hd p {
    font-size: 16px;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── Eyebrow-Label ─────────────────────────────────────────────── */
.suite-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0F2544;
    margin-bottom: 12px;
}

/* ── 2-Spalten Grid ────────────────────────────────────────────── */
.suite-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.suite-content-grid h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #0F2544;
    margin: 0 0 24px;
    line-height: 1.2;
}

/* ── Feature-Listen ────────────────────────────────────────────── */
.suite-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suite-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #F3F4F6;
    line-height: 1.5;
}

.suite-list li:last-child {
    border-bottom: none;
}

.suite-list-icon {
    color: #0F2544;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
}

.suite-list-icon--check {
    color: #2E8B57;
}

/* ── Highlight-Box (Hinweis) ───────────────────────────────────── */
.suite-highlight-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-left: 4px solid #0F2544;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
}

.suite-highlight-box p {
    font-size: 14px;
    color: #1E3A5F;
    line-height: 1.75;
    margin: 0;
}

.suite-ki-hint {
    background: #F5F0FF;
    border: 1px solid #DDD6FE;
    border-left: 4px solid #6B4FA0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 40px;
}

.suite-ki-hint p {
    font-size: 14px;
    color: #3B1F6A;
    line-height: 1.75;
    margin: 0;
}

/* ── Suite-Karten (Übersichtsseite) ────────────────────────────── */
.suite-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 16px;
}

.suite-card {
    background: #fff;
    border: 1.5px solid #E5EBF5;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(15,37,68,.05);
}

.suite-card:hover {
    box-shadow: 0 8px 32px rgba(15,37,68,.12);
    border-color: #BFDBFE;
    transform: translateY(-2px);
}

.suite-card--featured {
    border-color: #0F2544;
    background: linear-gradient(160deg, #F0F4FA 0%, #EBF4FF 100%);
    box-shadow: 0 8px 32px rgba(15,37,68,.12);
    position: relative;
}

.suite-card-badge {
    display: inline-block;
    background: #0F2544;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 4px;
}

.suite-card-icon {
    width: 44px;
    height: 44px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.suite-card--featured .suite-card-icon {
    background: #DBEAFE;
}

.suite-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0F2544;
    margin: 0;
    line-height: 1.2;
}

.suite-card-sub {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.suite-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.suite-card-list li {
    font-size: 13px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.suite-card-list li::before {
    content: '✓';
    color: #2E8B57;
    font-weight: 700;
    flex-shrink: 0;
}

.suite-card .lp-btn {
    margin-top: auto;
}

/* ── Entscheidungshilfe-Tabelle ────────────────────────────────── */
.suite-decision-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15,37,68,.07);
}

.suite-decision-table th {
    background: #0F2544;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
}

.suite-decision-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: top;
}

.suite-decision-table tr:last-child td {
    border-bottom: none;
}

.suite-decision-table tr:nth-child(even) td {
    background: #F9FAFB;
}

.suite-decision-badge {
    display: inline-block;
    background: #EFF6FF;
    color: #0F2544;
    border: 1px solid #BFDBFE;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* ── Vergleichstabelle ─────────────────────────────────────────── */
.suite-compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15,37,68,.07);
}

.suite-compare-table th {
    background: #0F2544;
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.suite-compare-table th:first-child {
    text-align: left;
    width: 36%;
}

.suite-compare-table td {
    padding: 12px 16px;
    font-size: 13px;
    color: #374151;
    border-bottom: 1px solid #F3F4F6;
    text-align: center;
    vertical-align: middle;
}

.suite-compare-table td:first-child {
    text-align: left;
    color: #1F2937;
    font-weight: 500;
}

.suite-compare-table tr:last-child td {
    border-bottom: none;
}

.suite-compare-table tr:nth-child(even) td {
    background: #F9FAFB;
}

.suite-compare-table .ct-yes    { color: #2E8B57; font-weight: 700; }
.suite-compare-table .ct-opt    { color: #0F2544; font-size: 12px; }
.suite-compare-table .ct-limit  { color: #6B7280; font-size: 12px; }
.suite-compare-table .ct-no     { color: #9CA3AF; font-size: 12px; }

/* ── CTA-Sektion ───────────────────────────────────────────────── */
.suite-cta-section {
    background: linear-gradient(135deg, #0F2544 0%, #0F2544 100%);
    padding: 72px 0;
    text-align: center;
    color: #fff;
}

.suite-cta-section h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -.02em;
    color: #fff;
}

.suite-cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0 0 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.suite-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Rechtlicher Hinweis ───────────────────────────────────────── */
.suite-legal {
    background: #F8FAFF;
    border: 1px solid #E5EBF5;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 12px;
    color: #6B7280;
    line-height: 1.75;
}

.suite-legal strong {
    color: #374151;
    font-weight: 600;
}

/* ── Section Eyebrow (Einzelseiten) ───────────────────────────── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #0F2544;
    margin-bottom: 12px;
    display: block;
}

/* ── Suite-Übersichtsseite Karten (suiten.html) ─────────────────── */
.suite-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 16px;
}

/* Override base .suite-card padding for the suiten overview grid */
.suite-cards .suite-card {
    padding: 0;
    overflow: hidden;
}

/* Badge inside the card head – no absolute positioning needed */
.suite-cards .suite-card-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    background: rgba(255,255,255,.22);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.4);
    position: static;
    transform: none;
}

.suite-card-head {
    padding: 28px 24px 18px;
    border-radius: 18px 18px 0 0;
    color: #fff;
}
.suite-card.solo      .suite-card-head { background: #0F2544; }
.suite-card.basic     .suite-card-head { background: #0F2544; }
.suite-card.business  .suite-card-head { background: #2E8B57; }
.suite-card.enterprise .suite-card-head { background: #7C3AED; }
.suite-card-head h3 { font-size: 20px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.suite-card-head p  { font-size: 13px; opacity: .88; margin: 0; }

.suite-card-body {
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.suite-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}
.suite-card-body ul li {
    padding: 5px 0;
    font-size: 13.5px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.suite-card-body ul li::before {
    content: "✓";
    color: #0F2544;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.suite-card.solo      .suite-card-body ul li::before { color: #0F2544; }
.suite-card.business  .suite-card-body ul li::before { color: #2E8B57; }
.suite-card.enterprise .suite-card-body ul li::before { color: #7C3AED; }

.suite-card-cta { margin-top: auto; }
.suite-card-cta a {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
}
.suite-card-cta a:hover { opacity: .88; }
.suite-card.solo      .suite-card-cta a { background: #0F2544; color: #fff; }
.suite-card.basic     .suite-card-cta a { background: #0F2544; color: #fff; }
.suite-card.business  .suite-card-cta a { background: #2E8B57; color: #fff; }
.suite-card.enterprise .suite-card-cta a { background: #7C3AED; color: #fff; }

/* ── Decision Badge Farbvarianten ────────────────────────────── */
.badge-solo       { background: rgba(13,48,96,.1);    color: #0F2544; }
.badge-basic      { background: rgba(15,37,68,.15);  color: #0F2544; }
.badge-business   { background: rgba(46,139,87,.15);  color: #2E8B57; }
.badge-enterprise { background: rgba(124,58,237,.12); color: #7C3AED; }

/* ── Vergleichstabelle Status-Indikatoren ────────────────────── */
.suite-cmp-head { background: #0F2544; color: #fff; }
.suite-check    { color: #2E8B57; font-weight: 700; font-size: 16px; }
.suite-opt      { color: #6B4FA0; font-style: italic; font-size: 12px; }
.suite-limited  { color: #9CA3AF; font-size: 12px; }
.suite-on-req   { color: #B8860B; font-size: 12px; }

/* ── Hero-Farbvarianten (Business / Enterprise) ─────────────── */
.suite-hero--business {
    background: linear-gradient(160deg, #0A3D20 0%, #2E8B57 100%);
}
.suite-hero--enterprise {
    background: linear-gradient(160deg, #2D1B69 0%, #7C3AED 100%);
}

/* ── Hero-Eyebrow-Farbvarianten ──────────────────────────────── */
.suite-hero-eyebrow--business {
    background: rgba(46,139,87,.25);
    color: #86EFAC;
    border-color: rgba(46,139,87,.4);
}
.suite-hero-eyebrow--enterprise {
    background: rgba(124,58,237,.25);
    color: #C4B5FD;
    border-color: rgba(124,58,237,.4);
}

/* ── Featured Badge im Hero ──────────────────────────────────── */
.suite-hero-featured-badge {
    display: inline-block;
    background: #fff;
    color: #2E8B57;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    margin-left: 8px;
}

/* ── CTA-Sektion Farbvarianten ───────────────────────────────── */
.suite-cta-section--business {
    background: linear-gradient(135deg, #1A6B40 0%, #2E8B57 100%);
}
.suite-cta-section--enterprise {
    background: linear-gradient(135deg, #2D1B69 0%, #7C3AED 100%);
}

/* ── Spezifische Infoboxen ───────────────────────────────────── */
.suite-ai-box {
    background: #EFF6FF;
    border-left: 4px solid #0F2544;
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
    margin-top: 32px;
}
.suite-ai-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0F2544;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.suite-ai-box p { font-size: 13px; color: #1E3A5F; line-height: 1.7; margin: 0; }

.suite-addon-box {
    background: #F5F0FF;
    border: 1px solid #DDD6FE;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 28px;
}
.suite-addon-box h4 { font-size: 14px; font-weight: 700; color: #6B4FA0; margin: 0 0 8px; }
.suite-addon-box p  { font-size: 13px; color: #4C4068; line-height: 1.6; margin: 0; }

.suite-individual-box {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 28px;
}
.suite-individual-box h4 { font-size: 14px; font-weight: 700; color: #92400E; margin: 0 0 8px; }
.suite-individual-box p  { font-size: 13px; color: #78350F; line-height: 1.7; margin: 0; }

/* ── Suite-spezifische Button-Varianten ──────────────────────── */
.lp-btn-green  { background: #fff; color: #2E8B57; font-weight: 800; }
.lp-btn-green:hover  { background: #F0FDF4; }
.lp-btn-purple { background: #fff; color: #7C3AED; font-weight: 800; }
.lp-btn-purple:hover { background: #F5F3FF; }
.lp-btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.lp-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── Tablet / Mobile ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .suite-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .suite-hero {
        padding: 64px 0 56px;
    }

    .suite-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .suite-section,
    .suite-section-alt,
    .suite-section-blue {
        padding: 48px 0;
    }

    .suite-cta-section {
        padding: 56px 0;
    }

    .suite-cards {
        grid-template-columns: 1fr;
    }
}
