/* ============================================
   COMPONENTS.CSS – Buttons, Cards, Badges,
   Forms, Stats, Testimonials, FAQ, CTA, etc.
   ============================================ */

/* ============================================
   1. BUTTONS
   ============================================ */

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 4px 15px rgba(232, 145, 58, 0.3);
    line-height: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 145, 58, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--primary);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
    line-height: 1;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    text-decoration: none;
}

.btn-ghost {
    color: white;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
}

.btn-ghost:hover {
    opacity: 0.8;
    color: white;
    text-decoration: underline;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-light.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-light.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-light.btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

.btn-light.btn-secondary:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* ============================================
   2. CARDS
   ============================================ */

.card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    border: 1px solid rgba(27, 42, 74, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-image {
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
    line-height: 1.3;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--secondary);
}

.card-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: var(--small);
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.card-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.card-link:hover {
    gap: 0.625rem;
    color: var(--secondary);
}

.card-header-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.card-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.card-featured {
    border-color: var(--secondary);
    position: relative;
}

.card-featured-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-cta);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* ============================================
   3. BADGES
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.badge-category {
    background: rgba(27, 42, 74, 0.08);
    color: var(--primary);
}

.badge-format {
    background: rgba(46, 204, 113, 0.12);
    color: var(--accent-dark);
}

.badge-level {
    background: rgba(232, 145, 58, 0.12);
    color: var(--secondary);
}

.badge-einsteiger {
    background: rgba(46, 204, 113, 0.12);
    color: var(--accent-dark);
}

.badge-fortgeschritten {
    background: rgba(232, 145, 58, 0.12);
    color: #d4751a;
}

.badge-profi {
    background: rgba(27, 42, 74, 0.12);
    color: var(--primary);
}

.badge-new {
    background: var(--gradient-cta);
    color: white;
}

/* ============================================
   4. TRUST BADGES
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--small);
    font-weight: 500;
}

/* ============================================
   5. SECTION LABELS & HEADERS
   ============================================ */

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: var(--small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: var(--small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-subline {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
}

.section-subline-light {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
}

.section-header-light h2,
.section-header-light {
    color: white;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   6. HERO CTA GROUP & HEADLINE
   ============================================ */

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.hero-headline {
    font-size: var(--h1);
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
}

.hero-badge,
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 145, 58, 0.2);
    border: 1px solid rgba(232, 145, 58, 0.4);
    color: var(--secondary-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--small);
    margin-bottom: 1.5rem;
}

/* ============================================
   7. PAIN CARDS & SOLUTION CARDS
   ============================================ */

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

.pain-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
    cursor: default;
}

.pain-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
}

.pain-icon {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.pain-card h3 {
    color: white;
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.pain-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(27, 42, 74, 0.05);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.solution-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(27, 42, 74, 0.06);
    line-height: 1;
    user-select: none;
}

.solution-icon {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.solution-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.5rem;
    transition: gap 0.2s ease;
}

.solution-link:hover {
    gap: 0.625rem;
    color: var(--secondary);
}

/* ============================================
   8. GRIDS
   ============================================ */

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

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

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

.kontakt-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

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

.cfo-tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.konten-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

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

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

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   9. FORMS
   ============================================ */

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1.5px solid rgba(27, 42, 74, 0.15);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(232, 145, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231b2a4a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-privacy {
    font-size: var(--small);
    color: var(--text-light);
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.125rem;
    flex-shrink: 0;
    accent-color: var(--secondary);
}

.form-note {
    font-size: var(--small);
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   10. NEWSLETTER FORM
   ============================================ */

.newsletter-section {
    background: var(--primary);
    padding: var(--section-padding) 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.newsletter-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small);
    margin-top: 1rem;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.newsletter-badge svg {
    width: 14px;
    height: 14px;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.newsletter-benefits li svg {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    flex-shrink: 0;
}

.newsletter-form .form-row {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text);
    background: white;
}

.newsletter-form input[type="email"]:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.newsletter-form .form-privacy {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--small);
    margin-top: 0.75rem;
}

.newsletter-form .form-privacy a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* ============================================
   11. STATS
   ============================================ */

.stats-section {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.125rem;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small);
    margin-top: 0.5rem;
}

/* ============================================
   12. TESTIMONIAL SLIDER
   ============================================ */

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating .star-filled {
    color: var(--secondary);
}

.testimonial-rating .star-empty {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author strong {
    color: white;
    display: block;
    font-size: 0.9375rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--small);
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   13. CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.cta-gradient-orange {
    background: var(--gradient-cta);
}

.cta-gradient-orange h2,
.cta-gradient-orange p {
    color: white;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-content h2 {
    font-size: var(--h2);
    font-family: var(--font-heading);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* ============================================
   14. FAQ ACCORDION
   ============================================ */

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer[aria-hidden="false"] {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   15. PAGINATION
   ============================================ */

.page-numbers {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-numbers a,
.page-numbers span {
    padding: 0.625rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid rgba(27, 42, 74, 0.15);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 2.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.page-numbers .current {
    background: var(--gradient-cta);
    color: white;
    border-color: transparent;
}

.page-numbers a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ============================================
   16. BREADCRUMBS
   ============================================ */

.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--small);
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-light);
}

.breadcrumb-separator {
    opacity: 0.4;
}

/* ============================================
   17. AUTHOR BOX
   ============================================ */

.author-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 3rem;
    border: 1px solid rgba(27, 42, 74, 0.08);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar-placeholder-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   18. POST META
   ============================================ */

.post-meta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--small);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.post-meta a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.post-meta a:hover {
    color: var(--secondary-light);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ============================================
   19. TIMELINE
   ============================================ */

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ============================================
   20. LANDING PAGE SPECIFIC
   ============================================ */

.konto-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(27, 42, 74, 0.05);
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    cursor: default;
}

.konto-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.konto-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.konto-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.konto-card p {
    font-size: var(--small);
    color: var(--text-light);
    margin-bottom: 0;
}

.formula-block {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--secondary);
    font-family: var(--font-accent);
    font-size: 1.125rem;
    color: var(--primary);
    line-height: 1.8;
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}

.fit-list li::before {
    content: '✓';
    color: var(--accent-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.0625rem;
}

.fit-list.negative li::before {
    content: '✗';
    color: #e74c3c;
}

.prozess-steps {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.prozess-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.prozess-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: white;
    font-weight: 700;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.prozess-step h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.prozess-step p {
    color: var(--text-light);
    font-size: var(--small);
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(232, 145, 58, 0.08) 0%, rgba(46, 204, 113, 0.08) 100%);
    border: 1px solid rgba(232, 145, 58, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.highlight-box h3,
.highlight-box h4 {
    color: var(--primary);
}

/* Paket / Pricing Cards */
.paket-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
}

.paket-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.paket-card.featured {
    border-color: var(--secondary);
    background: var(--primary);
    color: white;
}

.paket-card.featured h3,
.paket-card.featured h4 {
    color: white;
}

.paket-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.paket-featured-label {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
    border-radius: 0 0 var(--radius) var(--radius);
    white-space: nowrap;
}

.paket-price {
    font-family: var(--font-accent);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0;
}

.paket-card.featured .paket-price {
    color: white;
}

.paket-price-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-body);
}

.paket-card.featured .paket-price-period {
    color: rgba(255, 255, 255, 0.7);
}

.paket-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.paket-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
}

/* Value Card */
.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(27, 42, 74, 0.05);
    text-align: center;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* About Image */
.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.about-badge-number {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.about-badge-label {
    font-size: var(--small);
    color: var(--text-light);
    display: block;
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */

.login-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
    padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
}

.login-box {
    max-width: 440px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-strong);
    text-align: center;
}

.login-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.login-title {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-light);
    font-size: var(--small);
    margin-bottom: var(--space-lg);
}

.login-error,
.login-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: var(--small);
    margin-bottom: var(--space-md);
    text-align: left;
}

.login-error {
    background: #fff0f0;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

.login-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
}

/* Override WP default login form styles */
#uig-login-form {
    text-align: left;
}

#uig-login-form p {
    margin-bottom: var(--space-md);
}

#uig-login-form label {
    display: block;
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

#uig-login-form input[type="text"],
#uig-login-form input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-light);
    transition: border-color 0.2s;
    box-sizing: border-box;
}

#uig-login-form input[type="text"]:focus,
#uig-login-form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}

#uig-login-form .login-remember {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#uig-login-form .login-remember label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-light);
    cursor: pointer;
}

#uig-login-form input[type="submit"] {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: var(--space-sm);
}

#uig-login-form input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.login-links {
    margin-top: var(--space-md);
    text-align: center;
}

.login-forgot {
    font-size: var(--small);
    color: var(--primary);
    text-decoration: none;
}

.login-forgot:hover {
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: var(--space-lg) 0;
    color: var(--text-muted);
    font-size: var(--small);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.login-register-cta p {
    font-size: var(--small);
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* Header login/user links */
.header-login-link,
.header-user-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--small);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.2s;
    white-space: nowrap;
}

.header-login-link:hover,
.header-user-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.header-login-link svg,
.header-user-link svg {
    width: 16px;
    height: 16px;
}

.header-avatar {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50%;
    object-fit: cover;
}

.header-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================================
   MEMBER DASHBOARD
   ============================================================ */

.member-area-wrapper {
    padding: calc(70px + var(--space-2xl)) 0 var(--space-3xl);
    background: var(--bg-light);
    min-height: 70vh;
}

.member-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-xl);
}

.member-avatar {
    flex-shrink: 0;
}

.member-avatar-img,
.member-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.member-info {
    flex: 1;
}

.member-label {
    font-size: var(--small);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.member-name {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.member-email {
    font-size: var(--small);
    color: var(--text-light);
}

.member-header-actions {
    flex-shrink: 0;
}

.member-dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.member-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
}

.member-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.member-section-header h2 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.member-section-header h2 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.member-section-link {
    font-size: var(--small);
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.member-section-link:hover {
    text-decoration: underline;
}

.member-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.member-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.member-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.member-card-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.member-card-icon svg {
    width: 20px;
    height: 20px;
}

.member-card-icon--course {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    color: var(--secondary);
}

.member-card-content {
    flex: 1;
    min-width: 0;
}

.member-card-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-card-meta {
    font-size: var(--small);
    color: var(--text-muted);
}

.member-empty {
    color: var(--text-light);
    font-size: var(--small);
    padding: var(--space-md);
    text-align: center;
}

.member-empty a {
    color: var(--primary);
    text-decoration: none;
}

/* Quick Links */
.member-quick-links h2 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.member-quick-links h2 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-md);
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: var(--small);
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
}

.quick-link-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light, #f0f4ff);
    transform: translateY(-2px);
}

.quick-link-card svg {
    width: 24px;
    height: 24px;
}

.quick-link-admin {
    border-style: dashed;
    color: var(--text-muted);
}

/* ============================================
   ACCESSIBILITY: prefers-reduced-motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .testimonial-track {
        transition: none !important;
    }

    .card:hover,
    .solution-card:hover,
    .paket-card:hover,
    .konto-card:hover,
    .value-card:hover {
        transform: none !important;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none !important;
    }
}