/* ==========================================================================
   BSS Theme - Main Stylesheet
   Ballettseminare Stuttgart WordPress Theme
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */
:root {
    --primary-pink: #C84B6C;
    --dark-pink: #A63D56;
    --light-pink: #F8E8ED;
    --accent-pink: #E67393;
    --text-dark: #2C2C2C;
    --text-gray: #5A5A5A;
    --white: #FFFFFF;
    --light-bg: #FFF5F8;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Sen', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   3. WordPress Container & Layout Utilities
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.site-main {
    padding-top: 80px; /* Space for fixed nav */
}

/* ==========================================================================
   4. Navigation
   ========================================================================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(200, 75, 108, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.site-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.site-nav .nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 4px;
}

.site-nav .nav-links .nav-cta {
    padding: 0.75rem 1.8rem;
}

.site-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.site-nav .nav-links a:hover {
    color: var(--primary-pink);
}

.site-nav .nav-links a:hover::after {
    width: 100%;
}

.site-nav .nav-links .nav-cta::after {
    display: none;
}

.site-nav .nav-links .nav-cta:hover {
    color: white;
}

.nav-cta {
    background: var(--primary-pink);
    color: white !important;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 75, 108, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.nav-cta:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 75, 108, 0.4);
}

/* Mobile Menu Toggle / Hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger active state */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-pink) 100%);
    padding: 10rem 6rem 2rem;
    overflow: hidden;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    top: 5rem;
    right: 0;
    bottom: 0;
    width: 55%;
    background: url('../images/hero-background.jpg') center right / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero-online-badge {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem !important;
    animation: slideInLeft 1s ease-out 0.1s backwards;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 8rem 2rem;
        min-height: auto;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 75, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.15;
    animation: slideInLeft 1s ease-out;
    font-weight: 800;
}

.hero-text .highlight {
    color: var(--white);
    background: var(--primary-pink);
    display: inline;
    padding: 0.2rem 0.6rem;
    font-size: 2.5rem;
    font-weight: 800;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* Desktop specific hero styles */
@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text .highlight {
        font-size: 3.5rem;
        padding: 0.3rem 1.2rem;
    }
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.7;
    animation: slideInLeft 1s ease-out 0.2s backwards;
    font-weight: 400;
}

.hero-text p strong {
    font-weight: 700;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 1.2rem;
    }
}

/* Hero Features */
.hero-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-feature::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 75, 108, 0.3);
    animation: slideInLeft 1s ease-out 0.6s backwards;
}

@media (min-width: 768px) {
    .hero-cta {
        padding: 1.2rem 3rem;
        font-size: 1.15rem;
    }
}

.hero-cta:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 75, 108, 0.4);
    color: white;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Social Proof */
.social-proof-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    animation: slideInLeft 1s ease-out 0.8s backwards;
}

.avatar-group {
    display: flex;
    margin-left: -10px;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.social-proof-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

@media (min-width: 768px) {
    .social-proof-text {
        font-size: 1rem;
    }
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(200, 75, 108, 0.2);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .video-container {
        max-width: 700px;
    }
}

/* ==========================================================================
   6. Social Proof Section
   ========================================================================== */
.social-proof {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: 'Sen', sans-serif;
    display: block;
    line-height: 1;
}

.proof-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ==========================================================================
   7. Section Base Styling
   ========================================================================== */
section {
    padding: 6rem 2rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header .accent {
    color: var(--primary-pink);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   8. Market Gap Section
   ========================================================================== */
.market-gap {
    background: white;
    color: var(--text-dark);
    padding: 3rem 2rem;
}

.market-gap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.market-gap-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.market-gap-header h2 {
    font-size: 1.4rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.market-gap-header h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
}

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

.market-gap-image {
    display: flex;
    justify-content: center;
}

.market-gap-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 24px;
}

.market-gap-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.market-gap-text h3 span {
    border-bottom: 3px solid var(--primary-pink);
    padding-bottom: 2px;
    white-space: nowrap;
}

.market-gap-problems {
    list-style: none;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.market-gap-problems li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.market-gap-problems li strong {
    color: var(--text-dark);
}

.market-gap-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    border-left: 4px solid var(--light-pink);
    padding-left: 1.5rem;
}

.market-gap-chance h4 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.market-gap-chance h4 span {
    color: var(--primary-pink);
    font-weight: 800;
}

.market-gap-chance p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.market-gap-highlight {
    color: var(--primary-pink);
    font-weight: 700;
}

/* ==========================================================================
   9. Webinar Recording Section
   ========================================================================== */
.webinar-recording {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 5rem 2rem;
}

.webinar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webinar-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.webinar-header h2 {
    font-size: 1.4rem;
    color: var(--secondary-pink);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.webinar-header h1 {
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.webinar-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.webinar-video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.webinar-details-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e63946;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    align-self: flex-start;
}

.webinar-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.webinar-details-column h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.webinar-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.webinar-checklist li {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.webinar-checklist li::before {
    content: "\2713";
    color: var(--primary-pink);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.webinar-checklist li strong {
    color: var(--text-dark);
}

.webinar-cta {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(200, 75, 108, 0.3);
}

.webinar-cta:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(200, 75, 108, 0.4);
    color: white;
}

@media (max-width: 1024px) {
    .webinar-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .webinar-header h1 {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   10. Course Outcomes Section
   ========================================================================== */
.course-outcomes {
    background: #ffffff;
    padding: 6rem 2rem;
}

.outcomes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.outcomes-header {
    text-align: left;
    margin-bottom: 3.5rem;
}

.outcomes-header h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.outcomes-header h2 span {
    color: var(--primary-pink);
    position: relative;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.outcome-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.outcome-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.outcome-card:hover {
    transform: translateX(10px);
    border-color: #d1f2eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.outcome-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #27ae60;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

.outcome-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.outcome-card p strong {
    color: var(--text-dark);
}

.outcome-visual {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.laptop-mockup {
    width: 100%;
    max-width: 500px;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.laptop-screen {
    width: 100%;
    height: auto;
    display: block;
}

.outcome-cta {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(200, 75, 108, 0.2);
}

.outcome-cta:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 75, 108, 0.3);
    color: white;
}

@media (max-width: 1024px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .outcomes-header {
        text-align: center;
    }

    .outcome-visual {
        position: static;
        order: -1;
    }

    .outcomes-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   11. KIBA Modules Section
   ========================================================================== */
.kiba-modules {
    background: #fdf2f5;
    padding: 6rem 2rem;
}

.modules-container {
    max-width: 1200px;
    margin: 0 auto;
}

.modules-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.modules-header h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.modules-header h2 span {
    color: var(--primary-pink);
}

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

.module-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.module-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(200, 75, 108, 0.12);
}

.module-connector {
    position: absolute;
    right: -1.5rem;
    top: 40%;
    font-size: 2.5rem;
    color: #3498db;
    font-weight: 300;
    z-index: 2;
}

.module-graphic {
    width: 100%;
    max-width: 180px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 15px 35px rgba(200, 75, 108, 0.2));
    transition: transform 0.3s ease;
}

.module-title {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.module-subtitle {
    font-size: 0.95rem;
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-checklist {
    list-style: none;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-checklist li {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-gray);
    display: flex;
    gap: 0.8rem;
}

.module-checklist li::before {
    content: "\2713";
    color: var(--text-dark);
    font-weight: 900;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .module-connector {
        display: none;
    }
}

/* ==========================================================================
   12. Problem Section
   ========================================================================== */
.problem {
    background: var(--light-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 75, 108, 0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==========================================================================
   13. Solution Section
   ========================================================================== */
.solution {
    background: white;
}

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

.solution-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.solution-features {
    display: grid;
    gap: 1.5rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solution-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.solution-feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.solution-feature-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

.solution-image {
    position: relative;
}

.solution-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(200, 75, 108, 0.2);
}

/* ==========================================================================
   14. Course Overview
   ========================================================================== */
.course-overview {
    background: var(--light-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 75, 108, 0.15);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.overview-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================================================
   15. Transformation Section
   ========================================================================== */
.transformation {
    background: white;
}

.transformation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.before,
.after {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
}

.before {
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
}

.after {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-bg) 100%);
}

.transformation-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.before .transformation-label {
    background: #D5D5D5;
    color: #666;
}

.after .transformation-label {
    background: var(--primary-pink);
    color: white;
}

.transformation h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.transformation ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.transformation li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.before li::before {
    content: '\2717';
    color: #999;
    font-weight: bold;
    flex-shrink: 0;
}

.after li::before {
    content: '\2713';
    color: var(--primary-pink);
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================================================
   16. About Section
   ========================================================================== */
.about {
    background: var(--light-bg);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(200, 75, 108, 0.2);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credentials {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================================================
   17. Testimonials Section
   ========================================================================== */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--accent-pink);
    opacity: 0.2;
    font-family: 'Sen', sans-serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 75, 108, 0.15);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.author-info {
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.2rem;
}

.stars {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   18. Guarantee Section
   ========================================================================== */
.guarantee {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--dark-pink) 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.guarantee-container {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.guarantee h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guarantee p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ==========================================================================
   19. Pricing Section
   ========================================================================== */
.pricing {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(200, 75, 108, 0.15);
    text-align: center;
    border: 2px solid var(--primary-pink);
}

@media (min-width: 1024px) {
    .pricing-card {
        max-width: 780px;
        padding: 3rem;
    }
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .pricing-title {
        font-size: 2rem;
    }
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin: 0.75rem 0;
    font-family: 'Sen', sans-serif;
}

@media (min-width: 768px) {
    .pricing-amount {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .pricing-amount {
        font-size: 3.5rem;
    }
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .pricing-description {
        font-size: 1rem;
    }
}

.pricing-features {
    text-align: left;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.6rem;
}

@media (min-width: 600px) {
    .pricing-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 1.5rem;
    }
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .pricing-feature {
        font-size: 0.95rem;
    }
}

.pricing-feature::before {
    content: '\2713';
    width: 24px;
    height: 24px;
    background: var(--light-pink);
    color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.pricing-cta {
    display: block;
    width: fit-content;
    margin: 1.5rem auto 0;
    background: var(--primary-pink);
    color: white;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 75, 108, 0.3);
}

@media (min-width: 768px) {
    .pricing-cta {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .pricing-cta {
        padding: 1.1rem 3rem;
        font-size: 1.2rem;
    }
}

.pricing-cta:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 75, 108, 0.4);
    color: white;
}

/* ==========================================================================
   20. FAQ Section
   ========================================================================== */
.faq {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(200, 75, 108, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==========================================================================
   21. Final CTA Section
   ========================================================================== */
.final-cta {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--light-bg) 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.final-cta p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.final-cta-button {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(200, 75, 108, 0.3);
}

.final-cta-button:hover {
    background: var(--dark-pink);
    color: white;
}

/* ==========================================================================
   22. Footer
   ========================================================================== */
footer {
    background: #F9F9F9;
    color: var(--text-dark);
    padding: 5rem 2rem 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #3D5A5A;
    font-weight: 700;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-pink);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-pink);
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   23. Contact Section
   ========================================================================== */
.contact-section {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: start;
    }
}

.contact-info-col h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

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

.contact-info-item a:hover {
    color: var(--primary-pink);
}

.contact-info-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: var(--primary-pink);
}

.contact-section .social-links {
    justify-content: flex-start;
    gap: 0.8rem;
}

.contact-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.contact-section .social-link:hover {
    background: var(--primary-pink);
}

.contact-section .social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.contact-form-col {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .contact-form-col {
        padding: 2.5rem;
    }
}

.contact-form-col .bss-form {
    max-width: none;
}

.contact-form-col .form-group label {
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 500px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0 1rem;
    }
}

/* ==========================================================================
   24. Form Styles
   ========================================================================== */
.bss-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Sen', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(200, 75, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 75, 108, 0.3);
    font-family: 'Sen', sans-serif;
}

.form-submit:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(200, 75, 108, 0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.form-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ==========================================================================
   25. Blog Styles
   ========================================================================== */
.blog-main {
    padding: 12rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: flex-start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(200, 75, 108, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-card-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
    color: var(--primary-pink);
}

.blog-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--dark-pink);
}

/* Blog Sidebar */
.blog-sidebar {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.blog-sidebar .widget {
    margin-bottom: 2rem;
}

.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-pink);
}

.blog-sidebar .widget ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar .widget ul li {
    margin-bottom: 0.75rem;
}

.blog-sidebar .widget ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-sidebar .widget ul li a:hover {
    color: var(--primary-pink);
}

/* Single Post – Redesigned */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-gold, #D4A574));
    z-index: 9999;
    transition: width 0.1s linear;
}

.single-main {
    padding: 10rem 1.5rem 4rem;
    max-width: 780px;
    margin: 0 auto;
}

.single-container {
    max-width: 100%;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
    gap: 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #ccc;
    font-size: 1rem;
}

.breadcrumb-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--primary-pink);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category Badge */
.single-category-badge {
    margin-bottom: 1rem;
}

.single-category-badge a {
    display: inline-block;
    background: var(--light-pink);
    color: var(--primary-pink);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
}

.single-category-badge a:hover {
    background: var(--primary-pink);
    color: #fff;
}

/* Single Header */
.single-header {
    margin-bottom: 2rem;
}

.single-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.single-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.meta-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.meta-date,
.meta-reading-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-date svg,
.meta-reading-time svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.meta-updated {
    font-style: italic;
    font-size: 0.8rem;
}

/* Featured Image */
.single-featured-image {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Table of Contents */
.table-of-contents {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(200, 75, 108, 0.1);
}

.toc-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0;
    font-family: inherit;
}

.toc-toggle svg {
    color: var(--primary-pink);
    flex-shrink: 0;
}

.toc-chevron {
    margin-left: auto;
    transition: transform 0.3s;
}

.toc-toggle[aria-expanded="false"] .toc-chevron {
    transform: rotate(-90deg);
}

.toc-toggle[aria-expanded="false"] + .toc-list {
    display: none;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    counter-reset: toc-counter;
}

.toc-item {
    margin-bottom: 0.4rem;
}

.toc-item.toc-level-2 {
    counter-increment: toc-counter;
}

.toc-item a {
    display: block;
    padding: 0.35rem 0;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}

.toc-item a::before {
    content: counter(toc-counter) ". ";
    color: var(--primary-pink);
    font-weight: 600;
}

.toc-item a:hover {
    color: var(--primary-pink);
}

.toc-level-3 {
    padding-left: 1.5rem;
}

.toc-level-3 a::before {
    content: "— ";
}

/* Entry Content Typography */
.single-main .entry-content {
    font-size: clamp(1.05rem, 1vw + 0.85rem, 1.2rem);
    line-height: 1.75;
    color: var(--text-dark);
}

.single-main .entry-content p {
    margin-bottom: 1.5em;
}

.single-main .entry-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -0.01em;
    scroll-margin-top: 100px;
}

.single-main .entry-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 2rem 0 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
    scroll-margin-top: 100px;
}

.single-main .entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.single-main .entry-content blockquote {
    border-left: 4px solid var(--primary-pink);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--light-bg);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.single-main .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.single-main .entry-content ul,
.single-main .entry-content ol {
    margin: 1rem 0 1.75rem 1.5rem;
    padding: 0;
}

.single-main .entry-content ul {
    list-style: disc;
}

.single-main .entry-content ol {
    list-style: decimal;
}

.single-main .entry-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    padding-left: 0.25rem;
}

.single-main .entry-content li strong {
    color: var(--text-dark);
}

.single-main .entry-content a {
    color: var(--primary-pink);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s;
}

.single-main .entry-content a:hover {
    color: var(--dark-pink);
    text-decoration-thickness: 2px;
}

/* Single Footer */
.single-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-tags svg {
    color: var(--text-gray);
    flex-shrink: 0;
}

.post-tags a {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.post-tags a:hover {
    background: var(--primary-pink);
    color: #fff;
    border-color: var(--primary-pink);
}

/* Social Sharing */
.social-sharing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sharing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-gray);
    text-decoration: none;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.share-copy:hover,
.share-copy.copied {
    background: var(--primary-pink);
    color: #fff;
    border-color: var(--primary-pink);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid rgba(200, 75, 108, 0.1);
}

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

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

.author-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-name {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.author-bio {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-card:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 4px 16px rgba(200, 75, 108, 0.1);
    transform: translateY(-2px);
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-pink);
    font-weight: 600;
}

.nav-title {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-next {
    text-align: right;
}

/* Related Posts */
.related-posts {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.related-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.related-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200, 75, 108, 0.12);
    border-color: var(--primary-pink);
}

.related-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.related-card-content {
    padding: 1rem 1.25rem;
}

.related-card-date {
    font-size: 0.75rem;
    color: var(--text-gray);
    display: block;
    margin-bottom: 0.35rem;
}

.related-card-content h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(200, 75, 108, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(200, 75, 108, 0.4);
}

/* Active TOC item */
.toc-item a.toc-active {
    color: var(--primary-pink);
    font-weight: 600;
}

/* H2 heading accent decoration */
.single-main .entry-content h2::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-pink);
    margin-bottom: 0.5rem;
    border-radius: 2px;
}

/* Figure & caption styles */
.single-main .entry-content figure {
    margin: 2rem 0;
}

.single-main .entry-content figcaption {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* HR separator */
.single-main .entry-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 75, 108, 0.3), transparent);
    margin: 2.5rem 0;
}

/* CTA box within articles */
.single-main .entry-content .wp-block-button__link,
.single-main .entry-content a[href*="thrivecart"],
.single-main .entry-content a[href*="kiba"] {
    display: inline-block;
    background: var(--primary-pink);
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 75, 108, 0.25);
}

.single-main .entry-content .wp-block-button__link:hover,
.single-main .entry-content a[href*="thrivecart"]:hover,
.single-main .entry-content a[href*="kiba"]:hover {
    background: var(--dark-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 75, 108, 0.35);
}

/* Accessibility focus styles */
.toc-item a:focus-visible,
.breadcrumb-list a:focus-visible,
.share-btn:focus-visible,
.nav-card:focus-visible,
.related-card:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Selection color */
.single-main ::selection {
    background: rgba(200, 75, 108, 0.15);
    color: var(--text-dark);
}

/* Print styles for articles */
@media print {
    .site-nav,
    .reading-progress,
    .cookie-consent-overlay,
    .social-sharing,
    .back-to-top,
    .related-posts,
    .post-navigation,
    .mobile-menu-toggle,
    footer,
    .toc-toggle svg,
    .share-btn {
        display: none !important;
    }

    .single-main {
        padding: 0;
        max-width: 100%;
    }

    .single-main .entry-content {
        font-size: 12pt;
    }

    .single-main .entry-content a {
        color: #000;
        text-decoration: underline;
    }

    .single-main .entry-content a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .single-featured-image {
        box-shadow: none;
        border-radius: 0;
    }

    .author-box {
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
}

/* ==========================================================================
   26. Page Styles
   ========================================================================== */
.page-main {
    padding: 12rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-main h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.page-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.page-main h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.page-main h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.page-main ul,
.page-main ol {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-main a {
    color: var(--primary-pink);
    text-decoration: underline;
}

.page-main a:hover {
    color: var(--dark-pink);
}

/* ==========================================================================
   27. Animation Keyframes
   ========================================================================== */
@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* ==========================================================================
   28. WordPress-Specific Overrides
   ========================================================================== */

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.alignnone {
    display: block;
    margin: 1rem 0;
}

/* WordPress caption */
.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    padding: 0.5rem 0;
}

/* WordPress gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* WordPress pagination */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--primary-pink);
    color: white;
}

.pagination .page-numbers:hover:not(.current),
.nav-links .page-numbers:hover:not(.current) {
    background: var(--light-pink);
    color: var(--primary-pink);
}

/* WordPress screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* WordPress admin bar spacing */
.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-nav {
        top: 46px;
    }
}

/* ==========================================================================
   29. Responsive Design - Tablet (max-width: 968px)
   ========================================================================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .highlight {
        font-size: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-bg-image {
        width: 100%;
        opacity: 0.05;
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    }

    .solution-content,
    .about-content,
    .transformation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .site-nav .nav-links {
        display: none;
    }

    /* Show mobile menu toggle on tablet */
    .mobile-menu-toggle {
        display: block;
    }

    /* Mobile nav overlay */
    .site-nav .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding: 2rem;
        margin: 0;
    }

    .site-nav .nav-links.active a {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .market-gap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .market-gap-image {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .market-gap-text h3 {
        font-size: 2rem;
    }

    .market-gap-text .market-gap-description {
        font-size: 1.1rem !important;
    }

    /* Blog responsive */
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

/* ==========================================================================
   30. Responsive Design - Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 3rem;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   31. Responsive Design - Small Mobile (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
    .hero {
        padding: 8rem 1.5rem 3rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text .highlight {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .pricing-amount {
        font-size: 3rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .pricing-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .pricing-feature {
        align-items: flex-start;
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .pricing-feature span {
        flex: 1;
        display: block;
    }

    .pricing-badge {
        margin-bottom: 1.5rem;
    }

    .single-main {
        padding: 8rem 1rem 3rem;
    }

    .single-title {
        font-size: 1.75rem;
    }

    .single-featured-image {
        border-radius: 10px;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .table-of-contents {
        padding: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .social-sharing {
        flex-wrap: wrap;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 40px;
        height: 40px;
    }

    .single-main .entry-content h2::before {
        width: 30px;
        height: 2px;
    }

    .page-main h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   32. Responsive Design - Extra Small (max-width: 400px)
   ========================================================================== */
@media (max-width: 400px) {
    .nav-container {
        padding: 1rem 1rem;
    }

    .logo-container img {
        height: 40px;
    }

    .hero {
        padding: 7rem 1rem 2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text .highlight {
        font-size: 1.8rem;
        padding: 0.2rem 0.6rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-feature {
        font-size: 0.95rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .market-gap-header h1 {
        font-size: 2rem;
    }

    .market-gap-header h2 {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 1.2rem;
        margin: 0 0.2rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .pricing-feature {
        font-size: 0.85rem;
    }

    .pricing-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .webinar-header h1 {
        font-size: 2rem;
    }

    .outcomes-header h2 {
        font-size: 2rem;
    }

    .social-proof-text {
        font-size: 0.85rem;
    }

    .avatar-group img {
        width: 40px;
        height: 40px;
    }

    .faq-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
        flex-shrink: 0;
        line-height: 1;
    }

    .faq-question {
        padding: 1.2rem 1rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
}

/* Very small screens (< 380px) */
@media (max-width: 380px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text .highlight {
        font-size: 1.5rem;
        padding: 0.15rem 0.4rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .outcomes-header h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 1rem 0.8rem;
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-feature {
        font-size: 0.8rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-info-col h2 {
        font-size: 1.5rem;
    }

    .contact-form-col {
        padding: 1.5rem 1rem;
    }
}


/* E-Book/CTA-Button in Blog-Beiträgen: Text weiß halten (Inhalts-Links sind sonst rosa) */
.single-main .entry-content a.hero-cta {
    color: #fff;
    text-decoration: none;
}
.single-main .entry-content a.hero-cta::after {
    content: none;
}
