/* ================================================
   APEX BOOK MEDIA — MAIN STYLESHEET
   Colors: Navy #1E3A5F | Gold #D4AF37 | Orange #FF6B35
   Font: Poppins (Google Fonts)
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --navy:        #1E3A5F;
    --navy-dark:   #152D4A;
    --navy-light:  #2C5282;
    --gold:        #D4AF37;
    --gold-light:  #E8C94B;
    --orange:      #FF6B35;
    --orange-dark: #E85A25;
    --white:       #FFFFFF;
    --dark:        #333333;
    --gray:        #666666;
    --light-gray:  #F5F5F5;
    --border:      #E0E0E0;
    --success:     #22c55e;
    --error:       #ef4444;

    --font: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);

    --radius:    8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    color: var(--white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--light-gray);
    color: var(--navy);
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    transition: var(--transition);
}
.btn-text:hover { color: var(--orange); }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 54px;
}
.section-header.text-left { text-align: left; }

.section-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: #B8971F;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 20px;
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--navy-dark);
    box-shadow: var(--shadow-md);
    padding: 11px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Logo */
.logo a {
    display: block;
    text-decoration: none;
}

.logo-full {
    height: 65px;
    width: auto;
    display: block;
}

/* Nav */
.nav { flex: 1; }

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    padding: 7px 13px;
    border-radius: 6px;
    transition: var(--transition);
    display: block;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(255,255,255,0.07);
}

/* Header right */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.header-phone:hover { color: var(--gold-light); }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy) 55%, #2C5282 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding: 130px 0 90px;
    overflow: hidden;
}

/* Subtle dot grid texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(212,175,55,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* Two-column hero layout */
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 52px;
    align-items: center;
    width: 100%;
}

.hero-text {
    /* left column — inherits hero content styles */
}

/* Hero form card (right column) */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0,0,0,0.45);
    align-self: center;
}

.hero-form-header {
    background: var(--gold);
    padding: 24px 28px;
    text-align: center;
}
.hero-form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.hero-form-header p {
    font-size: 13px;
    color: rgba(30,58,95,0.72);
    font-weight: 500;
}

.hero-form-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Inputs inside hero card share the base .form-group styles */
.hero-form-body .form-group input,
.hero-form-body .form-group textarea {
    background: var(--light-gray);
    border-color: var(--border);
}
.hero-form-body .form-group input:focus,
.hero-form-body .form-group textarea:focus {
    background: var(--white);
}

.hero-form-note {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    text-align: center;
    margin-top: 2px;
}
.hero-form-note .fa-lock { color: var(--navy); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.13);
    border: 1px solid rgba(212,175,55,0.45);
    color: var(--gold);
    padding: 7px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-highlight {
    color: var(--gold);
    display: block;
}

.hero-subheadline {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 38px;
    max-width: 580px;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
}
.trust-item .fa-star { color: var(--gold); font-size: 11px; }

.trust-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.25);
}

/* ===== MEDIA LOGOS BANNER ===== */
.media-logos-banner {
    background: var(--light-gray);
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.media-logos-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.media-logos-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-right: 40px;
    border-right: 2px solid var(--border);
    margin-right: 40px;
}

.media-logos-grid {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.media-logo-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    opacity: 0.6;
    transition: var(--transition);
    white-space: nowrap;
}

.media-logo-item:hover {
    opacity: 1;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.services-grid-12 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.4);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(30,58,95,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: var(--navy);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--navy);
    color: var(--gold);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-link {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link:hover {
    color: var(--orange);
    gap: 10px;
}

/* ===== PRICING ===== */
.pricing {
    display: none;
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    border: 2px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.featured {
    border-color: var(--gold);
    background: var(--navy);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 5px 22px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-header { border-bottom-color: rgba(255,255,255,0.18); }

.pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}
.pricing-card.featured .pricing-header h3 { color: var(--gold); }

.pricing-tagline {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 18px;
}
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.65); }

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.price-original {
    font-size: 17px;
    color: var(--gray);
    text-decoration: line-through;
}
.pricing-card.featured .price-original { color: rgba(255,255,255,0.45); }

.price-current {
    font-size: 46px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.pricing-card.featured .price-current { color: var(--gold); }

.price-period {
    font-size: 14px;
    color: var(--gray);
}
.pricing-card.featured .price-period { color: rgba(255,255,255,0.55); }

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.88);
    border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-features li .fa-check { color: var(--success); flex-shrink: 0; }
.pricing-features li .fa-times  { color: var(--error);   flex-shrink: 0; }
.pricing-features li.disabled   { opacity: 0.45; }

/* Pricing popular choices block */
.pricing-popular {
    margin: 0 0 24px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.04);
    border-radius: var(--radius);
}
.pricing-card.featured .pricing-popular {
    background: rgba(255,255,255,0.1);
}
.pricing-popular-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}
.pricing-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pricing-popular-list li {
    font-size: 12.5px;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    border-bottom: none;
    padding: 0;
}
.pricing-card.featured .pricing-popular-list li { color: rgba(255,255,255,0.85); }
.pricing-popular-list li .fa-circle { font-size: 5px; margin-top: 6px; color: var(--gold); flex-shrink: 0; }

.pricing-cta { text-align: center; }
.pricing-card.featured .btn-text { color: rgba(255,255,255,0.65); }
.pricing-card.featured .btn-text:hover { color: var(--gold); }

/* ===== PRESS BANNER ===== */
.press-banner {
    background: var(--orange);
    padding: 22px 0;
}

.press-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.press-banner-text {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 15px;
    flex: 1;
}
.press-banner-text .fa-bullhorn { font-size: 22px; flex-shrink: 0; }

/* ===== SERVICES DETAIL ===== */
.services-detail {
    padding: 100px 0;
    background: var(--white);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-detail-card {
    display: flex;
    gap: 22px;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.4);
}

.service-detail-icon {
    width: 58px;
    height: 58px;
    background: rgba(30,58,95,0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    flex-shrink: 0;
    transition: var(--transition);
}
.service-detail-card:hover .service-detail-icon {
    background: var(--navy);
    color: var(--gold);
}

.service-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-detail-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--navy);
    padding: 80px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-banner-text { flex: 1; }

.cta-banner-text h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-banner-text p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.cta-banner-actions .btn { min-width: 168px; }

.cta-phone {
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    background: #f0f0f0;
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.portfolio-overlay { display: none; }

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item.active {
    border-color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    width: 100%;
    background: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}
.accordion-item.active .accordion-header {
    background: var(--navy);
    color: var(--white);
}

.accordion-icon {
    width: 38px;
    height: 38px;
    background: rgba(30,58,95,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition);
}
.accordion-item.active .accordion-icon {
    background: rgba(255,255,255,0.18);
    color: var(--gold);
}

.accordion-header > span:not(.accordion-icon) { flex: 1; }

.accordion-arrow {
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
    display: none;
    padding: 20px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.85;
    border-top: 1px solid var(--border);
}
.accordion-item.active .accordion-body { display: block; }

/* Stats */
.why-us-visual {
    align-self: start;
    padding-top: 52px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-card {
    background: var(--navy);
    padding: 26px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.why-us-img {
    border-radius: var(--radius-lg);
    width: 100%;
}

/* ===== EMPOWERING AUTHORS ===== */
.empower {
    padding: 100px 0;
    background: var(--light-gray);
}

.empower-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.empower-content .section-tag { display: inline-block; margin-bottom: 14px; }

.empower-content h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.25;
}

.empower-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 16px;
}

.empower-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 26px 0;
}

.empower-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}
.empower-point .fa-check-circle { color: var(--gold); font-size: 18px; flex-shrink: 0; }

.empower-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.empower-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* ===== MEDIA COLLAGE ===== */
.media-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    width: 100%;
}

.collage-card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(30,58,95,0.10);
    padding: 20px;
    overflow: hidden;
}

/* Podcast card — spans full width */
.collage-podcast {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--navy) 0%, #2c5282 100%);
    color: var(--white);
    padding: 22px 24px;
}

.collage-podcast-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.collage-mic {
    width: 54px;
    height: 54px;
    background: rgba(212,175,55,0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--gold);
}

.collage-podcast-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.collage-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.collage-podcast-text strong {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
}

.collage-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.collage-live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 0 0 0 3px rgba(255,68,68,0.3);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,68,68,0.3); }
    50%       { box-shadow: 0 0 0 7px rgba(255,68,68,0.1); }
}

/* Press release card */
.collage-press {
    background: #fffbf0;
    border-left: 4px solid var(--gold);
}

.collage-press-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.collage-press-headline {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 8px;
}

.collage-press-body {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.collage-press-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--navy);
    font-weight: 600;
}

.collage-press-meta i { color: var(--gold); }

/* Media logos card */
.collage-logos {
    background: var(--white);
}

.collage-logos-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.collage-logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.collage-logo-chip {
    background: var(--light-gray);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.collage-logo-chip i { color: var(--gold); font-size: 10px; }

/* Article screenshot card — spans full width */
.collage-article {
    grid-column: 1 / -1;
    padding: 0;
    overflow: hidden;
}

.collage-article-bar {
    background: #f0f0f0;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.collage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.collage-dot.red    { background: #ff5f57; }
.collage-dot.yellow { background: #febc2e; }
.collage-dot.green  { background: #28c840; }

.collage-url {
    font-size: 11px;
    color: #888;
    margin-left: 6px;
    font-family: monospace;
}

.collage-article-body {
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.collage-article-img {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), #2c5282);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

.collage-article-text {
    flex: 1;
}

.collage-article-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 5px;
}

.collage-article-text p {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.collage-article-stars i {
    color: #f5a623;
    font-size: 12px;
}

/* ===== IMPRINT ===== */
.imprint {
    background: var(--navy);
    padding: 100px 0;
}

.imprint-inner { text-align: center; }

.imprint-text h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.imprint-text p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

.imprint-services {
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.imprint-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.imprint-service .fas,
.imprint-service .fab { font-size: 30px; color: var(--gold); }

.imprint-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: start;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.4);
}
.testimonial-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

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

.testimonial-author { flex: 1; }

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.testimonial-card.featured .testimonial-author h4 { color: var(--white); }

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 3px;
}
.testimonial-stars .fa-star { color: var(--gold); font-size: 11px; }

.testimonial-tag {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.testimonial-card.featured .testimonial-tag { color: rgba(255,255,255,0.5); }

/* Alternating navy blue cards */
.testimonial-card:nth-child(even) {
    background: var(--navy);
    border-color: var(--navy);
}
.testimonial-card:nth-child(even) .testimonial-author h4 {
    color: var(--white);
}
.testimonial-card:nth-child(even) .testimonial-tag {
    color: rgba(255,255,255,0.5);
}
.testimonial-card:nth-child(even) .testimonial-quote {
    color: rgba(255,255,255,0.78);
}
.testimonial-card:nth-child(even) .testimonial-result {
    color: var(--gold);
}
.testimonial-card:nth-child(even) .testimonial-result i {
    color: var(--gold);
}

.testimonial-book {
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}
.testimonial-card.featured .testimonial-quote { color: rgba(255,255,255,0.78); }

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}

/* ===== VIDEO SECTION ===== */
/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 100px 0 80px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.results-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
    user-select: none;
}

.results-section .section-tag { background: rgba(212,175,55,0.15); color: var(--gold); }
.results-section .section-title { color: var(--white); }
.results-section .section-subtitle { color: rgba(255,255,255,0.55); }

.results-counters {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 56px 0 64px;
    flex-wrap: wrap;
}

.results-counter-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.results-counter-item:last-child { border-right: none; }

.results-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.85;
}

.results-number {
    display: inline;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
}

.results-plus {
    display: inline;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
}

.results-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Scrolling ticker */
.results-ticker-wrap {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    position: relative;
}

.results-ticker-wrap::before,
.results-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.results-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}
.results-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.results-ticker {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

.results-ticker span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.results-ticker span i {
    color: var(--gold);
    font-size: 13px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .results-counters { gap: 0; }
    .results-counter-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px; }
    .results-counter-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .results-counter-item:last-child { border-bottom: none; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 24px;
    width: 100%;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.faq-header:hover { background: #f9f9fb; }

.faq-arrow {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-item.active .faq-header { background: #f9f9fb; }

.faq-body {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.active .faq-body { display: block; }

.faq-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag { display: inline-block; margin-bottom: 14px; }

.contact-info h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: rgba(30,58,95,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 17px;
    flex-shrink: 0;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-detail strong { font-size: 14px; font-weight: 700; color: var(--dark); }
.contact-detail span, .contact-detail a { font-size: 14px; color: var(--gray); }
.contact-detail a:hover { color: var(--navy); }

/* Contact form */
.contact-form-wrapper {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}
.form-group label span { color: var(--error); }

.form-group input,
.form-group textarea {
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 14px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--error); }

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

.form-error {
    font-size: 12px;
    color: var(--error);
    display: none;
    font-weight: 500;
}
.form-group.has-error .form-error { display: block; }

.form-success {
    display: none;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: #065f46;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
    align-items: center;
    justify-content: center;
}
.form-success.show {
    display: flex;
}
.form-success .fa-check-circle { font-size: 18px; }

.form-note {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer { background: #222222; }

.footer-top { padding: 72px 0 44px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.2fr;
    gap: 32px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.58);
    line-height: 1.85;
    margin: 16px 0 26px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo .logo-full {
    height: 70px;
    width: auto;
    display: block;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    padding-bottom: 12px;
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}
.footer-contact-list li .fas { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: rgba(255,255,255,0.6); }
.footer-contact-list li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ===== STICKY SIDEBAR ===== */
.sidebar-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange);
    color: var(--white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 22px 13px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.sidebar-toggle:hover {
    background: var(--orange-dark);
    padding-right: 18px;
}
.sidebar-toggle .fa-envelope {
    writing-mode: horizontal-tb;
    font-size: 16px;
}

.sidebar-form {
    position: fixed;
    right: -380px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 899;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-form.open { right: 0; }

.sidebar-form-header {
    background: var(--navy);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-lg) 0 0 0;
}
.sidebar-form-header h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.sidebar-close {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    padding: 4px;
    transition: var(--transition);
}
.sidebar-close:hover { color: var(--gold); }

.sidebar-form form {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    /* Container and spacing adjustments */
    .container { padding: 0 24px; }
    .section-header { margin-bottom: 48px; }

    /* Reduce section padding slightly */
    .services-overview,
    .pricing,
    .services-detail,
    .portfolio,
    .why-us,
    .empower,
    .testimonials,
    .faq-section,
    .contact { padding: 80px 0; }

    .cta-banner,
    .imprint { padding: 70px 0; }

    /* Hero: keep two columns but narrower form card */
    .hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
    .hero { padding: 120px 0 80px; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .services-grid-12 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .service-card { padding: 32px 22px; }
    .services-detail-grid { gap: 24px; }

    /* Pricing */
    .pricing-grid { gap: 24px; }
    .pricing-card { padding: 36px 26px; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
    .footer-top { padding: 60px 0 36px; }

    /* Why Us */
    .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
    .why-us-visual { padding-top: 0; }

    /* Empower */
    .empower-inner { grid-template-columns: 1fr; gap: 48px; }
    .empower-image { order: -1; }

    /* Contact */
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrapper { padding: 36px 32px; }

    /* Testimonials */
    .testimonials-grid { gap: 22px; }

    /* CTA Banner */
    .cta-banner-text h2 { font-size: 28px; }
    .cta-banner-inner { gap: 32px; }

    /* Imprint */
    .imprint-services { gap: 36px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    /* Global adjustments */
    .container { padding: 0 20px; }
    .section-title { font-size: 26px; }
    .section-header { margin-bottom: 40px; }
    .section-subtitle { font-size: 15px; }

    /* Button size adjustments for mobile */
    .btn { padding: 11px 20px; font-size: 14px; }
    .btn-lg { padding: 13px 24px; font-size: 15px; }

    /* Header */
    .nav {
        position: fixed;
        top: 0; left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        padding: 80px 20px 40px;
        transition: left 0.32s ease;
        z-index: 999;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav.open { left: 0; }

    .nav-list  { flex-direction: column; gap: 4px; }
    .nav-link  { font-size: 16px; padding: 13px 16px; display: block; }

    .header-phone { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    /* Logo responsive */
    .logo-full { height: 50px; }
    .footer-logo .logo-full { height: 55px; }

    /* Hero — stack to single column */
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    .hero-subheadline { font-size: 16px; margin-bottom: 28px; }
    .hero-badge {
        margin-bottom: 20px;
        margin-top: 24px;
        font-size: 12px;
        padding: 6px 14px;
    }

    /* Hero CTA - better mobile spacing */
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        width: 100%;
    }
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-top: 8px;
    }
    .trust-item {
        background: rgba(255,255,255,0.08);
        padding: 10px 20px;
        border-radius: 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    .trust-divider { display: none; }
    .hero-form-card { max-width: 100%; width: 100%; margin: 0; }
    .hero-form-header { padding: 20px 24px; }
    .hero-form-header h3 { font-size: 18px; }
    .hero-form-body { padding: 24px; gap: 14px; }

    /* Media Logos Banner */
    .media-logos-banner { padding: 24px 0; }
    .media-logos-inner { gap: 20px; flex-direction: column; }
    .media-logos-label {
        font-size: 13px;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 8px;
    }
    .media-logos-grid { gap: 20px; justify-content: center; }
    .media-logo-item { font-size: 14px; }

    /* All sections - reduce padding */
    .services-overview,
    .pricing,
    .services-detail,
    .cta-banner,
    .portfolio,
    .why-us,
    .empower,
    .imprint,
    .testimonials,
    .faq-section,
    .contact { padding: 60px 0; }

    .results-section { padding: 60px 0 50px; }
    .footer-top { padding: 50px 0 30px; }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-grid-12 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 28px 20px;
    }
    .service-detail-card {
        padding: 24px;
        gap: 18px;
    }
    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-card {
        padding: 32px 24px;
    }
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    .pricing-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    .pricing-features {
        margin-bottom: 24px;
    }
    .pricing-popular {
        margin-bottom: 20px;
        padding: 12px 14px;
    }

    /* Press banner */
    .press-banner { padding: 18px 0; }
    .press-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .press-banner-text {
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }

    /* CTA banner */
    .cta-banner { padding: 50px 0; }
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }
    .cta-banner-text h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .cta-banner-text p { font-size: 15px; }
    .cta-banner-actions {
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }
    .cta-banner-actions .btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }
    .cta-phone {
        text-align: center;
        justify-content: center;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .portfolio-item img {
        height: auto;
        object-fit: contain;
    }

    /* Why Us */
    .accordion { gap: 10px; }
    .accordion-header {
        padding: 16px 18px;
        font-size: 14px;
        gap: 12px;
    }
    .accordion-body {
        padding: 18px;
        font-size: 14px;
    }
    .accordion-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .why-us-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-card { padding: 20px 16px; }
    .stat-number { font-size: 32px; }

    /* Empower */
    .empower-content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .empower-content p {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .empower-points {
        gap: 11px;
        margin: 20px 0;
    }
    .empower-point { font-size: 14px; }
    .empower-cta {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }
    .empower-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Media collage */
    .media-collage {
        gap: 12px;
        grid-template-columns: 1fr;
    }
    .collage-card { padding: 16px; }
    .collage-podcast { padding: 18px 20px; }
    .collage-logos-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .collage-logo-chip {
        padding: 8px 12px;
        font-size: 12px;
        justify-content: center;
    }

    /* Imprint */
    .imprint-text h2 { font-size: 26px; margin-bottom: 14px; }
    .imprint-text p {
        font-size: 15px;
        margin: 0 auto 32px;
    }
    .imprint-services {
        gap: 28px;
        margin-bottom: 32px;
    }
    .imprint-service { gap: 8px; }
    .imprint-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    .imprint-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 24px;
    }
    .testimonial-card.featured {
        transform: none;
    }

    /* Alternating navy blue cards on mobile */
    .testimonial-card:nth-child(even) {
        background: var(--navy);
        border-color: var(--navy);
    }
    .testimonial-card:nth-child(even) .testimonial-author h4 {
        color: var(--white);
    }
    .testimonial-card:nth-child(even) .testimonial-tag {
        color: rgba(255,255,255,0.5);
    }
    .testimonial-card:nth-child(even) .testimonial-quote {
        color: rgba(255,255,255,0.78);
    }
    .testimonial-card:nth-child(even) .testimonial-result {
        color: var(--gold);
    }
    .testimonial-card:nth-child(even) .testimonial-result i {
        color: var(--gold);
    }
    .testimonial-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    .testimonial-quote {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* FAQ */
    .faq-grid {
        gap: 10px;
        margin-top: 36px;
    }
    .faq-header {
        padding: 16px 18px;
        font-size: 14px;
        gap: 12px;
    }
    .faq-body {
        padding: 0 18px 16px;
    }
    .faq-body p { font-size: 14px; }

    /* Contact */
    .contact-info h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    .contact-info > p {
        font-size: 15px;
        margin-bottom: 28px;
    }
    .contact-details { gap: 18px; }
    .contact-detail { gap: 14px; }
    .contact-detail-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    .contact-form { gap: 18px; }
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .form-group { gap: 5px; }
    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand p {
        font-size: 14px;
        margin: 14px 0 20px;
    }
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    .footer-col ul { gap: 9px; }
    .footer-bottom { padding: 18px 0; }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-legal {
        justify-content: center;
        gap: 18px;
    }

    /* Sidebar — slide up from bottom on mobile */
    .sidebar-toggle {
        bottom: 20px;
        top: auto;
        right: 20px;
        transform: none;
        writing-mode: horizontal-tb;
        border-radius: 8px;
        padding: 12px 18px;
        flex-direction: row;
        gap: 8px;
    }
    .sidebar-toggle:hover { padding-right: 18px; }

    .sidebar-form {
        top: auto;
        bottom: -520px;
        right: 0; left: 0;
        transform: none;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        max-height: 80vh;
        overflow-y: auto;
    }
    .sidebar-form.open { bottom: 0; right: 0; }
    .sidebar-form-header {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 18px 22px;
    }
    .sidebar-form-header h3 { font-size: 17px; }
    .sidebar-form form {
        padding: 22px;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    /* Extra small phones - tighter spacing */
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 90px 0 50px; }
    .hero-headline { font-size: 24px; line-height: 1.2; }
    .hero-subheadline { font-size: 15px; }
    .hero-form-body { padding: 20px; gap: 12px; }
    .hero-form-header { padding: 16px 20px; }
    .hero-form-header h3 { font-size: 17px; }
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-top: 20px;
    }

    /* Buttons - slightly smaller */
    .btn { padding: 10px 18px; font-size: 14px; }
    .btn-lg { padding: 12px 20px; font-size: 14px; }

    /* Section spacing */
    .services-overview,
    .pricing,
    .services-detail,
    .cta-banner,
    .portfolio,
    .why-us,
    .empower,
    .imprint,
    .testimonials,
    .faq-section,
    .contact { padding: 50px 0; }

    .section-header { margin-bottom: 32px; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }

    /* Cards and components */
    .service-card { padding: 24px 18px; }
    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 26px;
        margin-bottom: 18px;
    }
    .service-card h3 { font-size: 17px; margin-bottom: 10px; }
    .service-card p { font-size: 14px; margin-bottom: 16px; }

    .pricing-card { padding: 28px 20px; }
    .pricing-header h3 { font-size: 24px; }
    .price-current { font-size: 42px; }

    .testimonial-card { padding: 20px; }
    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Stats */
    .why-us-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .stat-card { padding: 18px 14px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 12px; }

    /* Imprint */
    .imprint-services {
        gap: 20px;
        margin-bottom: 28px;
    }
    .imprint-service {
        min-width: 90px;
        font-size: 12px;
    }
    .imprint-service .fas,
    .imprint-service .fab {
        font-size: 26px;
    }

    /* Contact */
    .contact-form-wrapper { padding: 24px 18px; }
    .contact-form { gap: 16px; }
    .form-row { gap: 16px; }

    /* FAQ & Accordion */
    .accordion-header { padding: 14px 16px; font-size: 14px; }
    .accordion-body { padding: 16px; }
    .faq-header { padding: 14px 16px; font-size: 14px; }
    .faq-body { padding: 0 16px 14px; }

    /* Footer */
    .footer-grid { gap: 28px; }
    .footer-col h4 { font-size: 14px; }

    /* CTA Banner */
    .cta-banner { padding: 40px 0; }
    .cta-banner-text h2 { font-size: 22px; }

    /* Results section */
    .results-section { padding: 50px 0 40px; }
}
