/* ==========================================================================
   Executive Coaching Landing Page -
   Version: 3.0
   Updated: Re-synced to renewed styles.css v3.0 token names
            (--gold*, --gold-gradient, --header-h) and new shared script.js
            (header/nav/progress/back-to-top/mobile actionbar now shared).
   ========================================================================== */

/* ==========================================================================
   0. SHARED OVERRIDES & UTILITIES
   ========================================================================== */

/* Section titles restyled as eyebrow labels so they no longer look like the
   gold "Book a Consultation" button, and read consistently across the page.
   This only affects the coaching page because coaching.css loads only here. */
.section-tag {
    display: inline-block;
    padding: 0 0 0.75rem;
    background: none;
    background-size: auto;
    color: var(--gold-medium);
    border-radius: 0;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
    box-shadow: none;
    position: relative;
    animation: none;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--gold);
}

.section-tag:hover {
    transform: none;
    box-shadow: none;
}

/* Repeating call-to-action placed under each section */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================================================
   1. COACHING HERO
   ========================================================================== */
.coaching-hero {
    position: relative;
    min-height: 100vh;
    margin-top: var(--header-h);
    background: linear-gradient(135deg, #0a1628 0%, #1a237e 40%, #1b3a5c 70%, #0d2137 100%);
    display: flex;
    align-items: center;
    padding: 5rem 0;
    overflow: hidden;
}

.coaching-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(180, 155, 87, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 35, 126, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.coaching-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
    z-index: 1;
}

.coaching-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.coaching-hero-content {
    position: relative;
}

.coaching-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(180, 155, 87, 0.15);
    border: 1px solid rgba(180, 155, 87, 0.4);
    color: var(--gold-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.coaching-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.coaching-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.coaching-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(180, 155, 87, 0.4);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.coaching-hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

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

.btn-coaching-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--royal-blue-dark);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(180, 155, 87, 0.3);
}

.btn-coaching-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(180, 155, 87, 0.4);
}

.btn-coaching-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-coaching-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-coaching-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-coaching-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
}

.coaching-hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.coaching-image-wrapper {
    position: relative;
    max-width: 480px;
    margin-left: auto;
}

.coaching-photo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* (#2) Credential badge is now royal blue so the gold "Book a Consultation"
   button clearly stands out as the primary action. */
.coaching-credential-badge {
    position: absolute;
    bottom: 25px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--royal-blue);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: all 0.3s ease;
}

.coaching-credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.coaching-credential-badge i {
    font-size: 1.5rem;
    color: var(--gold-light);
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
}

/* ==========================================================================
   2. FOCUS AREAS — "If You're Struggling With…"
   ========================================================================== */
.coaching-struggle {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 55%, var(--royal-blue-dark) 100%);
    overflow: hidden;
}

.struggle-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(180, 155, 87, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
}

.coaching-struggle .container {
    position: relative;
    z-index: 1;
}

.coaching-struggle .section-header h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coaching-struggle .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto;
}

/* eyebrow label on this dark section */
.coaching-struggle .section-tag {
    background: none;
    border: none;
    color: var(--gold-light);
}

.struggle-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.struggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.struggle-btn i {
    font-size: 1rem;
    color: var(--gold-light);
    transition: color 0.3s ease;
}

.struggle-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(180, 155, 87, 0.4);
    transform: translateY(-2px);
}

.struggle-btn.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--royal-blue-dark);
    box-shadow: 0 6px 22px rgba(180, 155, 87, 0.35);
}

.struggle-btn.active i {
    color: var(--royal-blue-dark);
}

.struggle-btn:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.struggle-panels {
    position: relative;
}

.struggle-panel {
    display: none;
    animation: strugglePanelIn 0.45s ease;
}

.struggle-panel.active {
    display: block;
}

@keyframes strugglePanelIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem;
    max-width: 760px;
    margin: 0 auto;
    backdrop-filter: blur(15px);
}

.panel-head {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.panel-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(180, 155, 87, 0.3);
}

.panel-icon i {
    font-size: 1.8rem;
    color: var(--royal-blue-dark);
}

.panel-head-text h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.panel-sub {
    color: var(--gold-light);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.panel-questions {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.panel-questions li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.5;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-questions li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.panel-questions li i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ==========================================================================
   3. APPROACH — Self-Leadership Transformation Framework
   ========================================================================== */
.coaching-approach {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.coaching-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.03) 0%, rgba(180, 155, 87, 0.05) 100%);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.coaching-approach .container {
    position: relative;
    z-index: 1;
}

.coaching-approach .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.approach-steps::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    z-index: 0;
}

.approach-step {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 3rem 2rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.approach-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.approach-number {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: rgba(26, 35, 126, 0.08);
    line-height: 1;
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(180, 155, 87, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.approach-icon i {
    font-size: 2rem;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.approach-step:hover .approach-icon {
    background: var(--gold-gradient);
    transform: scale(1.08);
}

.approach-step:hover .approach-icon i {
    color: var(--royal-blue-dark);
}

.approach-step h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.approach-step p {
    color: var(--text-medium);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}

/* (#13) Before / After transformation */
.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 3.5rem auto 0;
}

.ba-column {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ba-before {
    border-top: 4px solid var(--text-light);
}

.ba-after {
    border-top: 4px solid var(--gold);
    background: linear-gradient(135deg, #fff, rgba(180, 155, 87, 0.06));
}

.ba-column h4 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.ba-before h4 { color: var(--text-medium); }
.ba-after h4 { color: var(--royal-blue); }

.ba-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ba-column li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
}

.ba-before li { color: var(--text-medium); }
.ba-before li i { color: var(--text-light); font-size: 0.5rem; }
.ba-after li { color: var(--text-dark); font-weight: 500; }
.ba-after li i { color: var(--gold); font-size: 0.85rem; }

.ba-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue-dark);
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(180, 155, 87, 0.3);
}

/* ==========================================================================
   4. COACHING SERVICES (primary offer + condensed supporting services)
   ========================================================================== */
.coaching-services {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #e9ecef 100%);
    overflow: hidden;
}

.coaching-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 90%, rgba(26, 35, 126, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(180, 155, 87, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.coaching-services .container {
    position: relative;
    z-index: 1;
}

.coaching-services .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* (#12) Primary offer — highlighted */
.primary-offer {
    position: relative;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    border: 1px solid rgba(180, 155, 87, 0.3);
    border-radius: 24px;
    padding: 3.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 15px 45px rgba(26, 35, 126, 0.25);
    overflow: hidden;
}

.primary-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 85% 15%, rgba(180, 155, 87, 0.18) 0%, transparent 55%);
    z-index: 0;
}

.primary-offer-content {
    position: relative;
    z-index: 1;
}

.primary-offer-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.primary-offer h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.primary-offer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 820px;
}

/* (#7) Condensed supporting services */
.supporting-heading {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--royal-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.supporting-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.supporting-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.supporting-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.supporting-card .sc-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(180, 155, 87, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.supporting-card .sc-icon i {
    color: var(--royal-blue);
    font-size: 1.2rem;
}

.supporting-card h4 {
    font-family: var(--font-heading);
    color: var(--royal-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.supporting-card p {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   5. CLIENTS & INDUSTRIES
   ========================================================================== */
.coaching-clients {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.coaching-clients .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.client-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.client-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(180, 155, 87, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.client-icon i {
    font-size: 1.8rem;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    background: var(--gold-gradient);
}

.client-card:hover .client-icon i {
    color: var(--royal-blue-dark);
}

.client-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.client-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   6. PRICING — Programs & Rates
   ========================================================================== */
.coaching-pricing {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f2f5 0%, #e9ecef 100%);
    overflow: hidden;
}

.coaching-pricing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 90% 10%, rgba(180, 155, 87, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 90%, rgba(26, 35, 126, 0.06) 0%, transparent 50%);
}

.coaching-pricing .container {
    position: relative;
    z-index: 1;
}

.coaching-pricing .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.14);
}

.pricing-card.pricing-featured {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    border: none;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--royal-blue-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(180, 155, 87, 0.4);
}

.pricing-tier {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.pricing-featured .pricing-tier {
    color: var(--gold-light);
}

.pricing-card-head h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--royal-blue);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.pricing-featured .pricing-card-head h3 {
    color: #fff;
}

.pricing-desc {
    color: var(--text-medium);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.pricing-featured .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.pricing-featured .pricing-amount {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1;
}

.pricing-featured .pricing-price {
    color: var(--gold-light);
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-featured .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-alt {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.8rem;
}

.pricing-featured .pricing-alt {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-medium);
    font-size: 1rem;
}

.pricing-featured .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-featured .pricing-features li i {
    color: var(--gold-light);
}

.pricing-card .btn-coaching-primary {
    width: 100%;
    justify-content: center;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    max-width: 640px;
    margin: 2.5rem auto 0;
    line-height: 1.6;
}

/* ==========================================================================
   7. COACHING ABOUT / BIO
   ========================================================================== */
.coaching-about {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.coaching-about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.03) 0%, rgba(180, 155, 87, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.coaching-about .container {
    position: relative;
    z-index: 1;
}

.coaching-about .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* (#9) Portrait + intro for "Meet Your Coach" */
.coaching-about-intro {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.about-portrait {
    text-align: center;
}

.about-portrait-img {
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.about-intro-text p {
    color: var(--text-medium);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.about-intro-text p strong {
    color: var(--royal-blue);
}

.coaching-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.coaching-bio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coaching-bio-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.coaching-bio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.coaching-bio-card:hover::after {
    transform: scaleX(1);
}

.bio-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(180, 155, 87, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.bio-icon i {
    font-size: 1.5rem;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.coaching-bio-card:hover .bio-icon {
    background: var(--gold-gradient);
}

.coaching-bio-card:hover .bio-icon i {
    color: var(--royal-blue-dark);
}

.coaching-bio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coaching-bio-card p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.coaching-career-timeline {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--royal-blue);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: default;
}

.timeline-item:hover {
    background: var(--royal-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.2);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 35, 126, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 1.2rem;
    color: var(--royal-blue);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item:hover .timeline-icon i {
    color: var(--gold-light);
}

.timeline-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.timeline-item:hover span {
    color: white;
}

/* ==========================================================================
   8. CREDENTIALS
   ========================================================================== */
.coaching-credentials {
    padding: 120px 0;
    background: white;
    position: relative;
}

.coaching-credentials .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.credentials-column {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.credentials-column:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.credentials-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--royal-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.credentials-heading i {
    color: var(--gold);
    font-size: 1.2rem;
}

.credential-entry {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.credential-entry:last-child {
    border-bottom: none;
}

.credential-degree {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.credential-school {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   9. CORE SKILLS (optional section — kept for compatibility)
   ========================================================================== */
.coaching-skills {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    overflow: hidden;
}

.coaching-skills-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(180, 155, 87, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.coaching-skills .container {
    position: relative;
    z-index: 1;
}

.coaching-skills .section-header h2 {
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coaching-skills .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* eyebrow label on this dark section */
.coaching-skills .section-tag {
    background: none;
    border: none;
    color: var(--gold-light);
}

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

.skill-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(180, 155, 87, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.skill-icon {
    width: 65px;
    height: 65px;
    background: rgba(180, 155, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.skill-icon i {
    font-size: 1.5rem;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.skill-item:hover .skill-icon i {
    color: var(--royal-blue-dark);
}

.skill-item h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================================================
   10. BOOK PROMO (now positioned near the top of the page)
   ========================================================================== */
.coaching-book {
    padding: 120px 0;
    background: white;
}

.coaching-book-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(26, 35, 126, 0.03) 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.coaching-book-image {
    text-align: center;
}

.coaching-book-image img {
    max-width: 280px;
    width: 100%;
    border-radius: 12px;
    box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.coaching-book-image img:hover {
    transform: rotate(-3deg) scale(1.03);
}

.coaching-book-content .section-tag {
    margin-bottom: 1rem;
}

.coaching-book-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--royal-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.coaching-book-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.book-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.book-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    color: var(--royal-blue);
    font-size: 0.9rem;
}

.book-highlight-item i {
    color: var(--gold);
}

/* Secondary consultation link under the book */
.book-consult-link {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.book-consult-link a {
    color: var(--royal-blue);
    font-weight: 600;
    text-decoration: none;
}

.book-consult-link a:hover {
    color: var(--gold-dark);
}

/* ==========================================================================
   11. COACHING LOCATIONS
   ========================================================================== */
.coaching-locations {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.coaching-locations-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.coaching-locations-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.coaching-locations-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coaching-locations .container {
    position: relative;
    z-index: 2;
}

.coaching-locations .section-header h2 {
    color: white;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coaching-locations .section-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* eyebrow label on this dark section */
.coaching-locations .section-tag {
    background: none;
    border: none;
    color: var(--gold-light);
}

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

.coaching-location-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coaching-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.coaching-location-card.card-manhattan {
    border: 2px solid var(--gold);
}

.coaching-location-map {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.coaching-location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.coaching-location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--royal-blue);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 5;
}

.coaching-location-badge i {
    color: var(--gold-light);
}

.coaching-badge-featured {
    background: var(--gold-gradient);
    color: var(--royal-blue-dark);
}

.coaching-badge-featured i {
    color: var(--royal-blue-dark);
}

.coaching-location-info {
    padding: 1.8rem;
}

.coaching-location-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.coaching-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.coaching-location-detail:last-of-type {
    margin-bottom: 1.5rem;
}

.coaching-location-detail i {
    color: var(--royal-blue);
    font-size: 1rem;
    margin-top: 0.2rem;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}

.coaching-location-detail p,
.coaching-location-detail a {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.coaching-location-detail a:hover {
    color: var(--royal-blue);
}

.btn-coaching-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--royal-blue);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-coaching-directions:hover {
    background: var(--royal-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.coaching-remote-banner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    transition: all 0.3s ease;
}

.coaching-remote-banner:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(180, 155, 87, 0.3);
    transform: translateY(-3px);
}

.remote-icon-group {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.remote-icon {
    width: 55px;
    height: 55px;
    background: rgba(180, 155, 87, 0.2);
    border: 1px solid rgba(180, 155, 87, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remote-icon i {
    font-size: 1.2rem;
    color: var(--gold-light);
}

.coaching-remote-banner:hover .remote-icon {
    background: rgba(180, 155, 87, 0.3);
}

.remote-content {
    flex: 1;
}

.remote-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.remote-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.coaching-remote-banner .btn-coaching-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ==========================================================================
   12. CTA SECTION
   ========================================================================== */
.coaching-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a237e 50%, #0d2137 100%);
    text-align: center;
    overflow: hidden;
}

.coaching-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(180, 155, 87, 0.1) 0%, transparent 60%);
}

.coaching-cta .container {
    position: relative;
    z-index: 2;
}

.coaching-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coaching-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   13. ACTIVE NAV STATE
   ========================================================================== */
.nav-link.active {
    color: var(--gold-dark);
}

.nav-link.active::after {
    width: 100%;
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

/* Tablet Landscape */
@media screen and (max-width: 1199px) {
    .coaching-hero-title {
        font-size: 3rem;
    }
    
    .supporting-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credentials-layout {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .coaching-locations-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .coaching-locations-grid .coaching-location-card:first-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .coaching-remote-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .remote-icon-group {
        justify-content: center;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 991px) {
    .coaching-hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .coaching-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .coaching-hero-title {
        font-size: 2.6rem;
    }
    
    .coaching-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .coaching-credential-badge {
        left: 10px;
    }
    
    .coaching-struggle,
    .coaching-approach,
    .coaching-about,
    .coaching-services,
    .coaching-clients,
    .coaching-pricing,
    .coaching-credentials,
    .coaching-skills,
    .coaching-book,
    .coaching-locations,
    .coaching-cta {
        padding: 80px 0;
    }
    
    .coaching-struggle .section-header h2,
    .coaching-approach .section-header h2,
    .coaching-pricing .section-header h2 {
        font-size: 2.5rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .approach-steps::before {
        display: none;
    }

    /* before / after stacks vertically */
    .before-after {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .ba-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    /* primary offer + portrait stack */
    .primary-offer {
        padding: 2.5rem;
    }

    .primary-offer h3 {
        font-size: 1.6rem;
    }

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

    .about-portrait-img {
        max-width: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    
    .panel-inner {
        padding: 2.2rem;
    }
    
    .coaching-about-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coaching-locations-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }
    
    .coaching-locations-grid .coaching-location-card:first-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .coaching-book-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .coaching-hero {
        padding: 2rem 0;
    }
    
    .coaching-hero-title {
        font-size: 2.2rem;
    }
    
    .coaching-hero-subtitle {
        font-size: 1rem;
    }
    
    .coaching-hero-stats {
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 0.8rem 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .coaching-hero-actions {
        flex-direction: column;
    }
    
    .btn-coaching-primary,
    .btn-coaching-secondary,
    .btn-coaching-outline {
        width: 100%;
        justify-content: center;
    }
    
    .coaching-struggle,
    .coaching-approach,
    .coaching-about,
    .coaching-services,
    .coaching-clients,
    .coaching-pricing,
    .coaching-credentials,
    .coaching-skills,
    .coaching-book,
    .coaching-locations,
    .coaching-cta {
        padding: 60px 0;
    }
    
    .coaching-struggle .section-header h2,
    .coaching-approach .section-header h2,
    .coaching-pricing .section-header h2 {
        font-size: 2rem;
    }
    
    .struggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.88rem;
    }
    
    .panel-head {
        flex-direction: column;
        text-align: center;
    }
    
    .panel-icon {
        width: 60px;
        height: 60px;
    }
    
    .panel-questions li {
        font-size: 1rem;
    }

    .supporting-services-grid {
        grid-template-columns: 1fr;
    }

    .primary-offer {
        padding: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
    
    .pricing-price {
        font-size: 2.6rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .coaching-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .book-highlights {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    /* Shared mobile action bar is visible at this width (from styles.css),
       so lift the back-to-top button above it to match index behavior. */
    .to-top {
        bottom: 84px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .coaching-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-stat {
        flex: 1;
        min-width: 90px;
    }
    
    .coaching-book-wrapper {
        padding: 1.5rem;
    }
    
    .skill-item {
        padding: 1.5rem 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .coaching-tag,
    .coaching-hero-title,
    .coaching-hero-subtitle,
    .coaching-hero-stats,
    .coaching-hero-actions,
    .coaching-hero-image {
        opacity: 1 !important;
        animation: none !important;
    }
    
    .struggle-panel {
        animation: none;
    }
    
    .struggle-btn,
    .approach-step,
    .pricing-card {
        transition: none;
    }
}

/* ==========================================================================
   NEW: TRANSFORMATION HEADING (intro above Before/After)
   Added per Liz's feedback — emphasize the "after" / results.
   ========================================================================== */
.transformation-heading {
    text-align: center;
    max-width: 640px;
    margin: 4rem auto 0;
}

.transformation-heading h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--royal-blue);
    margin-bottom: 0.75rem;
}

.transformation-heading p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.6;
}

.transformation-heading + .before-after {
    margin-top: 2.5rem;
}

/* ==========================================================================
   NEW: COACHING vs THERAPY — "Is This Right for You?" clarifier
   ========================================================================== */
.coaching-fit {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 3.5rem auto 0;
    align-items: stretch;
}

.fit-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.fit-therapy { border-top: 4px solid var(--text-light); }

.fit-coaching {
    border-top: 4px solid var(--gold);
    background: linear-gradient(135deg, #fff, rgba(180, 155, 87, 0.06));
    box-shadow: var(--shadow-blue);
}

.fit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fit-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--gold-gradient);
    color: var(--royal-blue-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-gold);
}

.fit-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.fit-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.fit-therapy .fit-icon {
    background: rgba(26, 35, 126, 0.06);
    color: var(--royal-blue-light);
}

.fit-coaching .fit-icon {
    background: var(--gold-gradient);
    color: var(--royal-blue-dark);
    box-shadow: var(--shadow-gold);
}

.fit-card-head h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.35;
    color: var(--text-dark);
}

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

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.fit-therapy .fit-list li { color: var(--text-medium); }
.fit-therapy .fit-list li i { color: var(--text-light); font-size: 0.5rem; margin-top: 0.55rem; }

.fit-coaching .fit-list li { color: var(--text-dark); font-weight: 500; }
.fit-coaching .fit-list li i { color: var(--gold); font-size: 0.9rem; margin-top: 0.25rem; }

.fit-note {
    text-align: center;
    max-width: 720px;
    margin: 2.75rem auto 0;
    color: var(--text-medium);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* ==========================================================================
   NEW: TESTIMONIALS  (scaffold — populate with Doug's real quotes)
   ========================================================================== */
.coaching-testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.coaching-testimonials .section-header h2 {
    color: var(--royal-blue);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-med), box-shadow var(--t-med);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote-mark {
    font-size: 1.6rem;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(180, 155, 87, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue-light);
    font-size: 1.1rem;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.88rem;
}

/* ---- Responsive for new sections ---- */
@media (max-width: 992px) {
    .fit-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 560px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .transformation-heading h3 { font-size: 1.6rem; }
    .coaching-testimonials .section-header h2 { font-size: 2.2rem; }
}

/* ==========================================================================
   UX FIX (Doug's feedback): remove button-like "lift" from cards that are
   NOT clickable, so they stop signalling "press me."
   The translateY lift is now reserved for cards with a real action
   (.pricing-card, .coaching-location-card, .coaching-remote-banner).
   Decorative content cards keep their subtle shadow/icon accents but no
   longer rise on hover. Placed at end of file to win by source order.
   ========================================================================== */
.coaching-bio-card:hover,
.client-card:hover,
.supporting-card:hover,
.timeline-item:hover,
.credentials-column:hover,
.approach-step:hover,
.fit-card:hover,
.testimonial-card:hover {
    transform: none;
}

/* ==========================================================================
   TESTIMONIALS — layout tuned for 5 cards (3 + 2, centered) + initial avatars
   ========================================================================== */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonials-grid .testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
}

.testimonial-avatar {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--royal-blue);
}


/* ========================== MECC SECTIONS ========================== */
.mecc-intro { padding: 110px 0; background: #fff; }
.mecc-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; }
.mecc-logo { width: 90px; height: auto; opacity: 0.55; filter: grayscale(30%); margin-bottom: 1.25rem; display: block; }
.mecc-intro-text h2 { font-family: var(--font-heading); font-size: 2.6rem; color: var(--royal-blue); margin: 0.5rem 0 1.25rem; }
.mecc-intro-text p { color: var(--text-medium); font-size: 1.08rem; line-height: 1.8; margin-bottom: 1rem; }
.mecc-unique { background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue)); color: #fff; border-radius: 24px; padding: 2.5rem; box-shadow: 0 20px 50px rgba(20,21,43,0.15); }
.mecc-unique h3 { font-family: var(--font-heading); font-size: 1.7rem; color: var(--gold-light); margin-bottom: 1.5rem; }
.mecc-unique ul { list-style: none; padding: 0; margin: 0; }
.mecc-unique li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 1.05rem; }
.mecc-unique li:last-child { border-bottom: 0; }
.mecc-unique i { color: var(--gold-light); margin-top: 0.25rem; width: 22px; }

.mecc-coaches { padding: 110px 0; background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%); }
.mecc-coaches .section-header, .mecc-assessment .section-header { text-align: center; margin-bottom: 3rem; }
.mecc-coaches .section-header h2, .mecc-assessment .section-header h2 { font-family: var(--font-heading); font-size: 2.6rem; color: var(--royal-blue); margin-bottom: 1rem; }
.mecc-assessment .section-header p { color: var(--text-medium); font-size: 1.1rem; max-width: 680px; margin: 0 auto; }
.mecc-coaches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.mecc-coach-card { background: #fff; border-radius: 20px; padding: 2rem; text-align: center; box-shadow: 0 10px 30px rgba(20,21,43,0.08); }
.mecc-coach-card img, .mecc-coach-placeholder { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 1.25rem; border: 3px solid var(--gold-light); }
.mecc-coach-placeholder { display: flex; align-items: center; justify-content: center; background: #f0f2fb; color: var(--royal-blue-light); font-size: 2.5rem; }
.mecc-coach-card h3 { font-family: var(--font-heading); color: var(--royal-blue); font-size: 1.35rem; margin-bottom: 0.3rem; }
.mecc-coach-role { display: block; color: var(--gold-medium); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.mecc-coach-card p { color: var(--text-medium); line-height: 1.6; }
.mecc-coach-soon { border: 2px dashed rgba(26,35,126,0.15); box-shadow: none; }

.mecc-assessment { padding: 110px 0; background: #fff; }
.mecc-form-wrap { max-width: 760px; margin: 0 auto; background: #fff; border-radius: 24px; padding: 2rem; box-shadow: 0 20px 50px rgba(20,21,43,0.1); }

@media (max-width: 991px) {
    .mecc-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 767px) {
    .mecc-intro, .mecc-coaches, .mecc-assessment { padding: 70px 0; }
    .mecc-intro-text h2, .mecc-coaches .section-header h2, .mecc-assessment .section-header h2 { font-size: 2rem; }
    .mecc-unique, .mecc-form-wrap { padding: 1.5rem; }
}
