/* ─────────────────────────────────────────────────────────
   AlltagQuest Landing-Hell — landing-light.css
   Stand: 2026-05-11
   Helles Theme fuer index.php (Token-Redefinition + Index-Klassen).
   Wird zusammen mit style.css geladen, NACH dieser.
   Header/Footer/Cookie-Banner kommen aus style.css zentral.
   ───────────────────────────────────────────────────────── */

:root {
    /* Tokens – hell, ueberschreiben die dunklen Werte aus pilot.css */
    --aq-bg:               #FFFFFF;
    --aq-surface:          #F5F7FA;
    --aq-surface-elevated: #FFFFFF;
    --aq-border:           #E4E8EE;
    --aq-text:             #1A2129;
    --aq-text-muted:       #4B5563;
    --aq-text-subtle:      #6B7682;

    /* Akzent – Teal (Frank-Festlegung) */
    /* Branding-Refresh 2026-05-22: alle Akzente auf Brand-Cyan-Familie */
    --aq-accent:       #0E7490;                       /* = --aq-cyan-700 */
    --aq-accent-hover: #155E75;                       /* = --aq-cyan-800 */
    --aq-accent-soft:  rgba(6, 182, 212, 0.10);       /* Brand-Cyan-Veil */

    /* Semantik (etwas dunklere Toene fuer Kontrast auf hell) */
    --aq-success: #2E7D32;
    --aq-warning: #B7791F;
    --aq-danger:  #C62828;

    /* Typography */
    --aq-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Spacing-Skala (8px-Raster) */
    --aq-s-1:  0.5rem;
    --aq-s-2:  1rem;
    --aq-s-3:  1.5rem;
    --aq-s-4:  2rem;
    --aq-s-6:  3rem;
    --aq-s-8:  4rem;
    --aq-s-12: 6rem;

    /* Radien & Schatten – Schatten weicher fuer helles Theme */
    --aq-radius:    12px;
    /* --aq-radius-sm Override entfernt (2C+ / 2026-05-22): style.css liefert Brief-konforme 2 px. */
    --aq-shadow:    0 4px 16px rgba(15, 20, 25, 0.08);
}

/* ───── Body-Grund fuer index.php ───── */

body {
    font-family: var(--aq-font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--aq-text);
    background: var(--aq-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--aq-font-sans);
    color: #0F1419;
    margin: 0 0 var(--aq-s-3);
    letter-spacing: -0.02em;
}

p { margin: 0 0 var(--aq-s-2); }
ul { margin: 0; padding: 0; }

main a {
    color: var(--aq-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
main a:hover { color: var(--aq-accent-hover); }

:focus-visible {
    outline: 2px solid var(--aq-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ───── Container-Varianten (style.css hat .aq-container, hier nur .container & narrow) ───── */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: var(--aq-s-3);
    padding-right: var(--aq-s-3);
}
.container--narrow { max-width: 760px; }
.container--form   { max-width: 760px; }

@media (min-width: 640px) {
    .container { padding-left: var(--aq-s-4); padding-right: var(--aq-s-4); }
}

/* ───── Section ───── */

.section {
    padding: var(--aq-s-8) 0;
    border-top: 1px solid var(--aq-border);
}
.section--alt {
    background: var(--aq-surface);
}
.section--privacy {
    background: linear-gradient(180deg, var(--aq-surface) 0%, #FFFFFF 100%);
}

@media (min-width: 960px) {
    .section { padding: var(--aq-s-12) 0; }
}

.section__title {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 var(--aq-s-3);
    color: #0F1419;
}
@media (min-width: 640px) {
    .section__title { font-size: 2.25rem; }
}

.section__lead {
    font-size: 1.125rem;
    color: var(--aq-text-muted);
    margin: 0 0 var(--aq-s-6);
    max-width: 60ch;
}

.section__lede {
    color: var(--aq-text-muted);
    line-height: 1.7;
    margin: 0 0 var(--aq-s-4);
    font-size: 1.0625rem;
}

.prose p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--aq-s-3); }
.prose strong { color: var(--aq-text); }

/* ───── Hero ───── */

/* ───── Hero — Schritt 3C (2026-05-23): zweispaltig, Cyan-Halbkreis, Brief § 1.3/1.5/1.10 ───── */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--aq-bg-alt);
    padding: var(--aq-s-8) 0 var(--aq-s-6);
}

/* Asymmetrischer Cyan-Halbkreis — nur rechts/oben (Frank-Klarstellung 3C/6: opacity 0.14) */
.hero__circle {
    position: absolute;
    right: -200px;
    top: -120px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: var(--aq-cyan);
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
}

/* Zweispaltiges Grid — bricht unter 960 px auf eine Spalte */
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-4);
    align-items: center;
}
@media (min-width: 960px) {
    .hero__inner {
        grid-template-columns: 1.05fr 1fr;
        gap: var(--aq-s-6);
    }
}

.hero__copy {
    max-width: 56ch;
}

/* Title (Brief § 1.3): 28 px Mobile / 38 px Desktop, weight 600, line-height 1.20/1.15 */
.hero__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.20;
    letter-spacing: -0.025em;
    margin: 0 0 var(--aq-s-3);
    color: var(--aq-text);
}
@media (min-width: 960px) {
    .hero__title {
        font-size: 38px;
        line-height: 1.15;
    }
}

/* Cyan-Akzent für zentrales Fachwort (Brief § 1.3) — rein visuell, kein <em> */
.hero__title-accent {
    color: var(--aq-cyan-700);
    font-style: normal;
    font-weight: inherit;
}

.hero__lead {
    font-size: 17px;
    line-height: 1.60;
    color: var(--aq-text-muted);
    margin: 0 0 var(--aq-s-4);
    max-width: 60ch;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--aq-s-2);
    align-items: center;
    margin-bottom: var(--aq-s-4);
}

.hero__trust {
    font-size: 13px;
    color: var(--aq-text-soft);
    margin: 0;
}

/* Rechte Spalte: Hero-Bild ohne Cyan-Veil (Frank-Klarstellung 3C/3) */
.hero__visual {
    position: relative;
}
.hero__visual .aq-image-wrap {
    border-radius: var(--aq-radius-md);
    overflow: hidden;
}
.hero__visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* ───── Demo-Card — schwebt im Hero, kein eigenes Farbband (Frank-Klarstellung 3C/1) ───── */

.hero-demo-card {
    margin-top: var(--aq-s-4);
}
.hero-demo-card__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--aq-s-3);
    background: var(--aq-bg);
    border: 1px solid var(--aq-border-tint);
    border-left: 3px solid var(--aq-cyan-700);
    border-radius: var(--aq-radius-md);
    padding: var(--aq-s-3) var(--aq-s-4);
}
.hero-demo-card__icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--aq-cyan-veil-soft);
    color: var(--aq-cyan-700);
    border-radius: 50%;
}
.hero-demo-card__body {
    flex: 1 1 280px;
    min-width: 0;
}
.hero-demo-card__title {
    margin: 0 0 0.2rem;
    font-size: 17px;
    font-weight: 600;
    color: var(--aq-text);
    line-height: 1.3;
}
.hero-demo-card__text {
    margin: 0;
    font-size: 15px;
    color: var(--aq-text-muted);
    line-height: 1.5;
}
.hero-demo-card__btn {
    flex: 0 0 auto;
    margin-left: auto;
}

/* Mobile-Anpassungen (Brief § 5.2) */
@media (max-width: 767px) {
    .hero {
        padding: var(--aq-s-6) 0 var(--aq-s-4);
    }
    .hero__circle {
        width: 320px;
        height: 320px;
        right: -120px;
        top: -80px;
        opacity: 0.18;
    }
    .hero-demo-card__inner {
        padding: var(--aq-s-3);
    }
    .hero-demo-card__btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* ───── Buttons ───── */

/* Buttons (Branding-Refresh 2026-05-22 — angeglichen an style.css .aq-btn-Familie) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 11px 22px;
    border-radius: var(--aq-radius-sm);
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background-color var(--aq-trans), border-color var(--aq-trans), color var(--aq-trans);
    white-space: nowrap;
}
/* Brief § 1.4: Cyan-700-Filled mit weißem Text, Hover Cyan-800 */
.btn--primary {
    background: var(--aq-cyan-700);
    color: #FFFFFF;
    border-color: var(--aq-cyan-700);
}
.btn--primary:hover {
    background: var(--aq-cyan-800);
    border-color: var(--aq-cyan-800);
    color: #FFFFFF;
}
.btn--ghost {
    background: transparent;
    color: var(--aq-text);
    border-color: var(--aq-border);
}
.btn--ghost:hover {
    border-color: var(--aq-accent);
    color: var(--aq-accent-hover);
}
.btn--submit {
    margin-top: var(--aq-s-3);
    padding: 12px 28px;
    font-size: 15px;
}
.btn:active { transform: none; }

/* ───── Pilotpartner-Deal Grid ───── */

.deal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-3);
    margin-bottom: var(--aq-s-4);
}
@media (min-width: 880px) {
    .deal-grid { grid-template-columns: 1fr 1fr; }
}

.deal-card {
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius);
    padding: var(--aq-s-4);
    box-shadow: var(--aq-shadow);
}
.deal-card--accent {
    border-left: 4px solid var(--aq-accent);
}
.deal-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 var(--aq-s-3);
    color: var(--aq-text);
}
.deal-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--aq-s-2);
}
.deal-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--aq-text);
}
.deal-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aq-accent);
}

.deal-footnote {
    text-align: center;
    color: var(--aq-text-muted);
    font-style: italic;
    max-width: 60ch;
    margin: var(--aq-s-4) auto 0;
}

/* ───── Wer passt rein? ───── */

.fit-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: var(--aq-s-6) 0 var(--aq-s-3);
}
.fit-heading:first-of-type { margin-top: var(--aq-s-3); }
.fit-heading--yes { color: var(--aq-success); }
.fit-heading--no  { color: var(--aq-danger); }

.fit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--aq-s-2);
}
.fit-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}
.fit-list--yes li::before,
.fit-list--no  li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--aq-success);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M4 9.5l3.2 3.2L14 6'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
}
.fit-list--no li::before {
    background: var(--aq-danger);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' d='M5 5l8 8M13 5l-8 8'/></svg>");
}

/* ───── Founder ───── */

.founder {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-4);
    align-items: start;
}
@media (min-width: 720px) {
    .founder { grid-template-columns: 240px 1fr; gap: var(--aq-s-6); }
}
.founder__portrait img {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--aq-border);
}
.founder__contact {
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    margin-top: var(--aq-s-3);
}

/* ───── Privacy-Liste ───── */

.privacy-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-3);
    margin: var(--aq-s-4) 0;
}
@media (min-width: 720px) {
    .privacy-list { grid-template-columns: 1fr 1fr; }
}
.privacy-item {
    display: flex;
    gap: var(--aq-s-2);
    align-items: flex-start;
    padding: var(--aq-s-2) 0;
}
.privacy-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--aq-accent);
}
.privacy-item__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: var(--aq-text);
}
.privacy-item p {
    font-size: 0.9375rem;
    color: var(--aq-text-muted);
    margin: 0;
    line-height: 1.55;
}
.privacy-footnote {
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    margin-top: var(--aq-s-4);
}

/* ───── Form ───── */

.pilot-form {
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius);
    padding: var(--aq-s-4);
    box-shadow: 0 2px 12px rgba(15, 20, 25, 0.04);
}
@media (min-width: 720px) {
    .pilot-form { padding: var(--aq-s-6); }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-3);
}
@media (min-width: 720px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-field--wide { grid-column: 1 / -1; }
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--aq-text);
}
.form-field .req { color: var(--aq-accent); margin-left: 0.15rem; }
.form-field .opt { color: var(--aq-text-subtle); font-weight: 400; font-size: 0.85em; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: var(--aq-text);
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius-sm);
    padding: 0.7rem 0.85rem;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.55;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--aq-accent);
    background: #FFFFFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.12);
}
.form-field [aria-invalid="true"] {
    border-color: var(--aq-danger);
}
.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%236B7682' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M3 6l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.4rem;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--aq-text-subtle);
    margin: 0;
}
.form-error {
    font-size: 0.875rem;
    color: var(--aq-danger);
    margin: 0;
}
.form-alert {
    background: rgba(198, 40, 40, 0.06);
    border: 1px solid var(--aq-danger);
    border-radius: var(--aq-radius-sm);
    padding: var(--aq-s-2) var(--aq-s-3);
    margin-bottom: var(--aq-s-3);
    color: var(--aq-text);
}
.form-alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    list-style: disc;
    font-size: 0.9375rem;
    color: var(--aq-text-muted);
}

.form-field--checkbox label {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--aq-text-muted);
    cursor: pointer;
}
.form-field--checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--aq-accent);
    flex-shrink: 0;
}
.form-field--checkbox a { color: var(--aq-accent); }

.form-postnote {
    font-size: 0.875rem;
    color: var(--aq-text-subtle);
    margin: var(--aq-s-2) 0 0;
}

/* Honeypot — visuell und fuer Screenreader unsichtbar */
.hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ───── FAQ ───── */

.faq {
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    /* Brief § 1.1 Card-Mapping: --aq-radius-md (4 px) statt -sm (2 px), da FAQ-Item ein Container ist. */
    border-radius: var(--aq-radius-md);
    padding: 0;
    margin-bottom: var(--aq-s-2);
    box-shadow: 0 1px 4px rgba(15, 20, 25, 0.03);
}
.faq summary {
    cursor: pointer;
    list-style: none;
    padding: var(--aq-s-2) var(--aq-s-3);
    font-weight: 600;
    color: var(--aq-text);
    position: relative;
    padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: var(--aq-s-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--aq-accent);
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.15s ease;
}
.faq[open] summary::after { content: '−'; }
.faq p {
    padding: 0 var(--aq-s-3) var(--aq-s-3);
    margin: 0;
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ───── Preise nach der Pilotphase (Tabelle) ───── */

.pricing-table-wrap {
    margin: var(--aq-s-3) 0 var(--aq-s-2);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.9375rem;
    box-shadow: 0 2px 8px rgba(15, 20, 25, 0.05);
}

.pricing-table thead th {
    background: var(--aq-surface);
    color: var(--aq-text-subtle);
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--aq-border);
}

.pricing-table tbody th,
.pricing-table tbody td {
    padding: 1rem;
    vertical-align: top;
    border-bottom: 1px solid var(--aq-border);
    text-align: left;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody th {
    color: var(--aq-text);
    font-weight: 700;
    white-space: nowrap;
    width: 1%;
}

.pricing-table tbody td:nth-child(2) {
    font-weight: 700;
    color: var(--aq-text);
    white-space: nowrap;
    width: 1%;
}

.pricing-table tbody td:last-child {
    color: var(--aq-text-muted);
    line-height: 1.55;
}

.pricing-badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.5rem;
    background: var(--aq-accent-soft);
    color: var(--aq-accent);
    border-radius: var(--aq-radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    vertical-align: middle;
}

.pricing-note {
    margin: var(--aq-s-3) 0 0;
    padding: 1rem 1.1rem;
    background: var(--aq-surface);
    border-left: 3px solid var(--aq-accent);
    border-radius: 6px;
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Mobile: Tabelle stacked als Cards */
@media (max-width: 720px) {
    .pricing-table {
        border: none;
        background: transparent;
        box-shadow: none;
        font-size: 1rem;
    }
    .pricing-table thead {
        position: absolute;
        width: 1px; height: 1px;
        overflow: hidden; clip: rect(0,0,0,0);
    }
    .pricing-table tbody tr {
        display: block;
        background: #FFFFFF;
        border: 1px solid var(--aq-border);
        border-radius: 10px;
        margin-bottom: 0.85rem;
        padding: 0.4rem 0.9rem;
        box-shadow: 0 2px 6px rgba(15, 20, 25, 0.04);
    }
    .pricing-table tbody th,
    .pricing-table tbody td {
        display: block;
        width: auto;
        padding: 0.55rem 0;
        border-bottom: 1px solid var(--aq-border);
        white-space: normal;
    }
    .pricing-table tbody tr > *:last-child {
        border-bottom: none;
    }
    .pricing-table tbody th[data-label]::before,
    .pricing-table tbody td[data-label]::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--aq-text-subtle);
        margin-bottom: 0.2rem;
    }
}

/* ───── Reduced Motion ───── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ───── Print ───── */

@media print {
    .hero__cta,
    .pilot-form,
    .faq summary::after { display: none; }
    body { background: #fff; color: #000; }
    .hero { background: #fff; min-height: auto; padding: 1rem 0; }
    .hero__circle { display: none; }
}

/* ───── Anker-Sprünge: unter dem aq-header platzieren ───── */
section[id], header[id] { scroll-margin-top: 84px; }

/* ─────────────────────────────────────────────────────────
   PRO-Feature-Grid (Sektion „PRO als Standard")
   ───────────────────────────────────────────────────────── */
.pro-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-3);
    margin: var(--aq-s-4) 0;
}
@media (min-width: 720px)  { .pro-feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pro-feature-grid { grid-template-columns: 1fr 1fr 1fr; } }
.pro-feature {
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius);
    padding: var(--aq-s-3);
    box-shadow: 0 1px 4px rgba(15, 20, 25, 0.04);
}
.pro-feature h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--aq-text);
}
.pro-feature p {
    margin: 0;
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    line-height: 1.55;
}
.pro-feature-footnote {
    text-align: center;
    margin-top: var(--aq-s-3);
    font-size: 0.9375rem;
}
.pro-feature-footnote a { color: var(--aq-accent); }

/* ─────────────────────────────────────────────────────────
   Pricing-Cards (Preise-Sektion auf index.php)
   ───────────────────────────────────────────────────────── */
.pricing-card-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--aq-s-3);
    margin: var(--aq-s-4) 0;
}
@media (min-width: 720px) { .pricing-card-wrap { grid-template-columns: 1.1fr 1fr; } }
.pricing-card {
    background: #FFFFFF;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius);
    padding: var(--aq-s-4);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(15, 20, 25, 0.05);
}
.pricing-card--featured {
    border-color: var(--aq-accent);
    border-width: 2px;
    box-shadow: 0 6px 24px rgba(0, 172, 193, 0.12);
}
.pricing-card__header {
    margin-bottom: var(--aq-s-2);
}
.pricing-card__header h3 {
    margin: 0 0 4px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aq-text);
}
.pricing-card__subtitle {
    margin: 0;
    color: var(--aq-text-subtle);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.pricing-card__price {
    margin: var(--aq-s-2) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}
.pricing-card__amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--aq-text);
    letter-spacing: -0.02em;
}
.pricing-card__unit {
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
}
.pricing-card__note {
    margin: 0 0 var(--aq-s-3);
    color: var(--aq-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.pricing-card__list {
    list-style: none;
    margin: 0 0 var(--aq-s-3);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}
.pricing-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--aq-text);
}
.pricing-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aq-accent);
}
.pricing-card__cta {
    align-self: flex-start;
    margin-top: auto;
}
