/* ==============================
   GREGOR MEIER – KI-BERATER
   Clean Modern — Sora
   ============================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --primary:      #6366f1;
    --primary-hover:#4f46e5;
    --bg:           #FFFFFF;
    --bg-alt:       #F4F6F9;
    --bg-card:      #FFFFFF;
    --text:         #0D1117;
    --text-muted:   #6B7280;
    --text-light:   #9CA3AF;
    --accent:       #f97316;
    --accent-hover: #ef4444;
    --accent-soft:  rgba(37, 99, 235, 0.08);
    --accent-mid:   rgba(37, 99, 235, 0.15);
    --border:       #E5E7EB;
    --border-mid:   #D1D5DB;
    --nav-bg:       rgba(255,255,255,0.93);

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 6px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
    --shadow-accent: 0 8px 24px rgba(37,99,235,0.28);

    --nav-h:     68px;
    --radius:    12px;
    --radius-lg: 16px;
    --radius-sm: 8px;
    --max-w:     1200px;
    --ease:      0.2s ease;
}

[data-theme="dark"] {
    --bg:           #0D1117;
    --bg-alt:       #161C27;
    --bg-card:      #1A2133;
    --text:         #F0F2F7;
    --text-muted:   #8B95AA;
    --text-light:   #5A6378;
    --accent:       #3B82F6;
    --accent-hover: #2563EB;
    --accent-soft:  rgba(59,130,246,0.1);
    --accent-mid:   rgba(59,130,246,0.2);
    --border:       #1F2A3C;
    --border-mid:   #2A3750;
    --nav-bg:       rgba(13,17,23,0.93);

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-sm: 0 1px 6px rgba(0,0,0,0.35);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.5);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Sora', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color var(--ease), color var(--ease);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}
.section     { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

/* ===== SECTION HEADER ===== */
.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section__label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section__title {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section__sub {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(37,99,235,0.36);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-mid);
}
.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}
.btn--secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent-mid);
}
.btn--secondary:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}
.btn--ghost-white {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}
.btn--ghost-white:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}
.btn--lg   { padding: 14px 28px; font-size: 1rem; }
.btn--sm   { padding: 8px 16px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none; cursor: pointer;
    color: var(--text-muted);
    transition: all var(--ease);
}
.btn-icon:hover { background: var(--bg-alt); color: var(--text); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
    height: 100%;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav__logo {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color var(--ease);
    white-space: nowrap;
}
.nav__logo span { color: var(--accent); }
.nav__logo:hover { color: var(--accent); }

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--ease);
}
.nav__links a:hover { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: 8px; }

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }
.nav__burger { display: none; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    background: var(--bg);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 80px 0;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-mid);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
}
.hero__badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__headline .highlight {
    color: var(--accent);
    position: relative;
    display: inline;
}

.typing-cursor::after {
    content: '|';
    color: var(--accent);
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero__sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero__stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-number {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}
.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Hero image */
.hero__img-wrap {
    position: relative;
}
.hero__img-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius-lg) + 3px);
    background: linear-gradient(135deg, var(--accent), transparent 60%);
    opacity: 0.25;
    z-index: 0;
}
.hero__img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

/* ===== TAGS ===== */
.tag {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ===== SERVICES ===== */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.service-card--featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-card) 60%);
}

.service-card__icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    border: 1px solid var(--accent-mid);
}
.service-card__icon--b { background: rgba(16,185,129,0.08); color: #10B981; border-color: rgba(16,185,129,0.2); }
.service-card__icon--c { background: rgba(245,158,11,0.08); color: #D97706; border-color: rgba(245,158,11,0.2); }

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}

/* ===== COURSES ===== */
.courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    box-shadow: var(--shadow-sm);
}
.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-mid);
}
.course-card--highlight { border-color: var(--accent); }

.course-card__img {
    width: 100%;
   
    object-fit: cover;
    object-position: center;
    display: block;
}

.course-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.course-card__meta {
    display: flex; align-items: center;
    justify-content: space-between; gap: 8px;
}
.course-card__type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}
.course-card__type--alt { color: #10B981; }
.course-card__duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.course-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.course-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    flex: 1;
}

.course-card__footer {
    display: flex; align-items: center;
    gap: 8px; flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.course-card__footer .btn--ghost-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: gap var(--ease);
}
.course-card__footer .btn--ghost-link:hover { gap: 8px; }

.course-card__footer .btn--sm {
    margin-left: auto;
    padding: 8px 18px;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.course-card__target {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.course-card__target svg {
    flex-shrink: 0;
    color: var(--accent);
}

.course-card__details {
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.course-card__details summary {
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.course-card__details summary::-webkit-details-marker { display: none; }
.course-card__details summary::before {
    content: '+';
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform var(--ease);
}
.course-card__details[open] summary::before {
    content: '−';
}
.course-card__agenda {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.course-card__agenda-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.course-card__agenda-time {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    min-width: 60px;
}

.course-card__price {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text);
}
.course-card__price-info {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 6px;
}

.course-card__next-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 600;
}
.course-card__next-date svg {
    flex-shrink: 0;
}

/* ===== KURSE TEASER ===== */
.kurse-teaser {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
}
.kurse-teaser__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0 32px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.kurse-teaser__item:last-child { border-bottom: none; }
.kurse-teaser__item:hover { background: var(--bg-alt); }
.kurse-teaser__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 3px;
}
.kurse-teaser__body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.01em;
}
.kurse-teaser__body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 640px) {
    .kurse-teaser__item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }
}

/* ===== TOOLS ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    box-shadow: var(--shadow-xs);
}
.tool-card--clickable {
    cursor: pointer;
}
.tool-card--clickable:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
}

.tool-card__header {
    display: flex; align-items: center;
    gap: 14px; margin-bottom: 12px;
}
.tool-card__icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tool-card__icon--green  { background: rgba(16,185,129,0.1);  color: #10B981; }
.tool-card__icon--orange { background: rgba(245,158,11,0.1);  color: #D97706; }
.tool-card__icon--blue   { background: rgba(37,99,235,0.1);   color: var(--accent); }
.tool-card__icon--purple { background: rgba(139,92,246,0.1);  color: #8B5CF6; }
.tool-card__icon--pink   { background: rgba(236,72,153,0.1);  color: #EC4899; }
.tool-card__icon--slate  { background: rgba(100,116,139,0.1); color: #64748B; }

.tool-card h4    { font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; letter-spacing: -0.01em; }
.tool-card__by   { font-size: 0.8rem; color: var(--text-light); }
.tool-card p     { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 12px; }

/* ===== CASES ===== */
.cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: var(--shadow-sm);
}
.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.case-card__img-wrap {
    position: relative;
    overflow: hidden;
}
.case-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.case-card:hover .case-card__img { transform: scale(1.04); }

.case-card__kpi-badge {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.4);
    white-space: nowrap;
}

.case-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.case-card__industry {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}
.case-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.case-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.68;
    flex: 1;
}
.case-card__tags {
    display: flex; gap: 6px; flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

/* ===== ABOUT ===== */
.about {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.about__photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__content .section__label { margin-bottom: 12px; }

.about__text {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 24px 0 32px;
}

/* ===== CONTACT ===== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact__info p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin: 16px 0 32px;
}
.contact__details { display: flex; flex-direction: column; gap: 8px; }
.contact__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    transition: gap var(--ease);
}
.contact__link:hover { gap: 14px; }
.contact__note { font-size: 0.875rem; color: var(--text-muted); }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}
.form-group input,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: 'Sora', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--ease), box-shadow var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-status {
    font-size: 0.9375rem;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(16,185,129,0.08);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}
.form-status.error {
    display: block;
    background: rgba(239,68,68,0.08);
    color: #DC2626;
    border: 1px solid rgba(239,68,68,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #0D1117;
    color: #6B7280;
    padding: 48px 0;
    border-top: 1px solid #1F2937;
}
.footer__inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.footer__brand-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 4px;
}
.footer__brand p { font-size: 0.875rem; }
.footer__nav  { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a {
    font-size: 0.875rem;
    color: #6B7280;
    transition: color var(--ease);
}
.footer__nav a:hover { color: #D1D5DB; }
.footer__legal {
    display: flex; gap: 16px;
    align-items: center;
    font-size: 0.875rem;
    flex-wrap: wrap;
}
.footer__legal a { color: #6B7280; transition: color var(--ease); }
.footer__legal a:hover { color: #D1D5DB; }

/* ===== DETAIL PAGES ===== */
.tool-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 40px;
    align-items: start;
}

.tool-detail-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tool-detail-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--ease), transform var(--ease);
}
.tool-detail-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.tool-detail-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.tool-detail-block p {
    color: var(--text);
    line-height: 1.7;
}
.tool-detail-block p + p { margin-top: 16px; }

.tool-detail-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tool-detail-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.tool-detail-block ul,
.leistung-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.leistung-bullets li,
.tool-detail-block ul li {
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}
.leistung-bullets li::before,
.tool-detail-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.detail-media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}
.detail-media__img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.detail-media__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--accent);
    color: #fff;
}

.detail-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.tool-card-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), color var(--ease);
}
.tool-card-mini svg {
    color: var(--text-light);
    flex-shrink: 0;
    transition: color var(--ease);
}
.tool-card-mini__label {
    font-weight: 600;
    font-size: 0.95rem;
}
.tool-card-mini:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    color: var(--accent);
    transform: translateY(-2px);
}
.tool-card-mini:hover svg { color: var(--accent); }

.detail-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.detail-cta .btn {
    flex: 1 1 200px;
    justify-content: center;
}

.detail-checklist {
    list-style-type: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-checklist li {
    list-style: none;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    box-shadow: var(--shadow-xs);
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.detail-checklist li::marker { content: none; }
.detail-checklist li::before { display: none; }
.detail-checklist li:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.detail-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-benefits li {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(34,197,94,0.12) 0%, rgba(21,128,61,0.08) 100%);
    border: 1px solid rgba(34,197,94,0.2);
    color: #0f5132;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    padding-left: 44px;
}
.detail-benefits li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.15);
}
[data-theme="dark"] .detail-benefits li {
    background: linear-gradient(135deg, rgba(34,197,94,0.12) 0%, rgba(21,128,61,0.25) 100%);
    border-color: rgba(34,197,94,0.35);
    color: #bbf7d0;
}
[data-theme="dark"] .detail-benefits li::before {
    box-shadow: 0 0 0 6px rgba(34,197,94,0.25);
}

.tool-tipp-box {
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(129,140,248,0.18) 100%);
    border: 1px solid rgba(129,140,248,0.35);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}
.tool-tipp-box__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4338ca;
    margin-bottom: 12px;
}
.tool-tipp-box p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #312e81;
}
[data-theme="dark"] .tool-tipp-box {
    background: linear-gradient(135deg, rgba(79,70,229,0.35) 0%, rgba(129,140,248,0.25) 100%);
    border-color: rgba(129,140,248,0.45);
}
[data-theme="dark"] .tool-tipp-box__label {
    color: #c7d2fe;
}
[data-theme="dark"] .tool-tipp-box p {
    color: #e0e7ff;
}

.detail-quote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    background: var(--bg-card);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-sm);
}
.detail-quote p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}
.detail-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
}

.tool-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}

.tool-sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tool-sidebar-box--cta {
    background: linear-gradient(145deg, var(--accent) 0%, rgba(59,130,246,0.85) 100%);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}
.tool-sidebar-box--cta h3,
.tool-sidebar-box--cta p,
.tool-sidebar-box--cta dt,
.tool-sidebar-box--cta dd {
    color: inherit;
}
.tool-sidebar-box--cta .btn--secondary {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.tool-sidebar-box--cta .btn--secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.45);
    color: #fff;
}
.tool-sidebar-box h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.tool-sidebar-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.tool-sidebar-box--cta p {
    color: rgba(255,255,255,0.85);
}
.tool-sidebar-box dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}
.tool-sidebar-box dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
}
.tool-sidebar-box dd {
    margin: 0;
    font-weight: 600;
    color: var(--text);
}
.tool-sidebar-box dd strong {
    color: var(--accent);
}

.tool-sidebar-box .btn { width: 100%; justify-content: center; }

.tool-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 16px;
}
.tool-sidebar-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 8px;
}
.tool-sidebar-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.tool-sidebar-card--cta {
    background: linear-gradient(145deg, var(--accent) 0%, rgba(59,130,246,0.85) 100%);
    border-color: var(--accent);
}
.tool-sidebar-card--cta .tool-sidebar-card__label {
    color: rgba(255,255,255,0.75);
}
.tool-sidebar-card--cta p {
    color: rgba(255,255,255,0.85);
}
.tool-sidebar-card .btn { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.animate-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-up.in-view { opacity: 1; transform: translateY(0); }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(0.8); }
}

.services   .animate-up:nth-child(2) { transition-delay: 0.08s; }
.services   .animate-up:nth-child(3) { transition-delay: 0.16s; }
.services   .animate-up:nth-child(4) { transition-delay: 0.24s; }
.courses    .animate-up:nth-child(2) { transition-delay: 0.08s; }
.courses    .animate-up:nth-child(3) { transition-delay: 0.16s; }
.courses    .animate-up:nth-child(4) { transition-delay: 0.24s; }
.tools-grid .animate-up:nth-child(2) { transition-delay: 0.06s; }
.tools-grid .animate-up:nth-child(3) { transition-delay: 0.12s; }
.tools-grid .animate-up:nth-child(4) { transition-delay: 0.18s; }
.tools-grid .animate-up:nth-child(5) { transition-delay: 0.24s; }
.tools-grid .animate-up:nth-child(6) { transition-delay: 0.30s; }
.cases      .animate-up:nth-child(2) { transition-delay: 0.10s; }
.cases      .animate-up:nth-child(3) { transition-delay: 0.20s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .cases { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about { grid-template-columns: 300px 1fr; gap: 56px; }
    .contact { grid-template-columns: 1fr; gap: 48px; }
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__img-wrap { max-width: 560px; }
    .hero__img-wrap img { height: 420px; }
    .hero__sub { max-width: 100%; }
    .tool-detail-layout { grid-template-columns: 1fr; }
    .tool-detail-sidebar { position: static; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .container { padding: 0 20px; }

    .nav__links {
        display: none;
        position: absolute;
        top: var(--nav-h); left: 0; right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        flex-direction: column; align-items: stretch;
        gap: 0; padding: 8px 20px 16px;
    }
    .nav__links.open { display: flex; }
    .nav__links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }
    .nav__links li:last-child a { border-bottom: none; }
    .nav__burger { display: flex; }
    .nav__actions .btn:not(.btn-icon) { display: none; }

    .services  { grid-template-columns: 1fr; }
    .courses   { grid-template-columns: 1fr; }
    .cases     { max-width: 100%; }
    .tools-grid { grid-template-columns: 1fr; }
    .form-row  { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .service-card { padding: 28px; }

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__photo { aspect-ratio: 3/2; object-position: center 20%; }

    .hero__inner { padding: 48px 0 56px; }
    .hero__stats { gap: 20px; }
    .hero__img-wrap { order: -1; }
    .hero__img-wrap img { height: 300px; }

    .footer__inner { flex-direction: column; text-align: center; }
    .footer__nav   { justify-content: center; }
    .footer__legal { justify-content: center; }
    .tool-detail-block { padding: 24px; }
    .tool-sidebar-box { padding: 24px; }
    .detail-cta { flex-direction: column; }
    .detail-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .section__header { margin-bottom: 36px; }
    .hero__stats { flex-wrap: wrap; gap: 16px; }
    .detail-media__badge { font-size: 0.9rem; padding: 12px 18px; }
    .tool-card-mini { width: 100%; justify-content: space-between; }
}

/* ===== NAV ACTIVE LINK ===== */
.nav__link--active {
    color: var(--accent);
    font-weight: 600;
}

/* ===== HERO SUBPAGE ===== */
.hero--subpage {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border-bottom: 3px solid var(--accent);
    padding: calc(var(--nav-h) + 28px) 0 32px;
}
.page-header__breadcrumb {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-header__breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}
.page-header__breadcrumb a:hover { color: #93c5fd; }
.page-header__breadcrumb span { color: #93c5fd; }
.page-header__title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}
.page-header__sub {
    color: #94a3b8;
    font-size: 0.9rem;
    max-width: 560px;
}

.page-header__intro { margin-bottom: 16px; }
.page-header__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.page-header__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin-top: 12px;
}
.hero--subpage .page-header__lead {
    color: rgba(226,232,240,0.88);
}
.page-header__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.detail-header .service-card__icon {
    margin-bottom: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-header .service-card__icon svg {
    width: 26px;
    height: 26px;
}

.hero--subpage .tag {
    background: rgba(148,163,184,0.18);
    border-color: rgba(148,163,184,0.4);
    color: #e2e8f0;
}

/* ===== SECTION HEADER CENTER ===== */
.section__header--center {
    text-align: center;
}
.section__header--center .section__label { justify-content: center; }

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.process-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.process-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== PRICING GRID ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.pricing-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}
.pricing-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}
.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card__price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}
.pricing-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    flex: 1;
}
.pricing-card ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.pricing-card ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    transition: color var(--ease);
}
.faq-item__question:hover { color: var(--accent); }
.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--text-muted);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item.open .faq-item__answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

/* ===== COURSE DETAIL ===== */
.course-detail {
    margin-top: 48px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.course-detail h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.course-detail__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.course-detail p { color: var(--text-muted); margin-bottom: 24px; }

.course-agenda h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.course-agenda__item {
    display: flex;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.course-agenda__time {
    color: var(--accent);
    font-weight: 600;
    flex-shrink: 0;
    min-width: 90px;
}
.course-detail__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    align-items: center;
}

/* ===== PRICE BOX ===== */
.price-box {
    background: var(--accent-soft);
    border: 1px solid var(--accent-mid);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.price-box__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--accent);
    margin-bottom: 4px;
}
.price-box__value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}
.price-box__note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== DATE LIST ===== */
.date-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.date-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: wrap;
}
.date-item__date   { font-weight: 700; min-width: 140px; }
.date-item__course { flex: 1; color: var(--text-muted); font-size: 0.95rem; }

/* ===== TOOL CATEGORY ===== */
.tool-category-section { margin-top: 56px; }
.tool-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.tool-category-title svg { color: var(--accent); }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: var(--bg-card);
}
.comparison-table th {
    background: var(--bg-alt);
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--accent-soft); }
.comparison-table .tool-name { font-weight: 600; white-space: nowrap; }

/* ===== TOOL RECOMMENDATION ===== */
.tool-recommendation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.tool-rec-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
}
.tool-rec-card__usecase {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}
.tool-rec-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.tool-rec-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== RESPONSIVE SUBPAGES ===== */
@media (max-width: 768px) {
    .process-steps         { grid-template-columns: 1fr 1fr; }
    .pricing-grid          { grid-template-columns: 1fr; }
    .course-detail         { padding: 24px; }
    .course-detail__footer { grid-template-columns: 1fr; }
    .date-item             { flex-direction: column; align-items: flex-start; gap: 8px; }
    .comparison-table th,
    .comparison-table td   { padding: 10px 14px; }
}
