/* ============================================
   CoachWhitt Website Stylesheet
   Official Brand Colours:
   - Deep Charcoal Background: #1E1F22
   - Off-White Text: #EBE7D9
   - Accent Coral/Red: #F55139
   Typography: Montserrat (main), Montserrat Black (accent)
   ============================================ */

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

/* Force Calendly popup overlay to appear on top */
.calendly-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.calendly-popup-content {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 1120px !important;
    max-height: 95vh !important;
    min-height: 750px !important;
    z-index: 100000 !important;
    background: white !important;
    border-radius: 8px !important;
    overflow: visible !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5) !important;
}

.calendly-popup-content > div:not(.calendly-custom-close),
.calendly-popup-content > *:not(.calendly-custom-close) {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
}

.calendly-popup-content iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 750px !important;
    min-width: 1120px !important;
    max-width: none !important;
    border: none !important;
    border-radius: 8px !important;
}

/* Force all Calendly internal divs to be full width */
.calendly-popup-content div[class*="calendly"]:not(.calendly-custom-close),
.calendly-popup-content div[data-container],
.calendly-popup-content > div:not(.calendly-custom-close) > div {
    width: 100% !important;
    max-width: none !important;
    min-width: 1120px !important;
}

/* Custom close button - positioned relative to popup */
.calendly-custom-close {
    position: absolute !important;
    top: -23px !important;
    right: -23px !important;
    width: 45px !important;
    height: 45px !important;
    background: #F55139 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 100002 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    font-weight: bold !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(245, 81, 57, 0.6) !important;
    transition: all 0.2s ease !important;
    border: 3px solid white !important;
    line-height: 1 !important;
    min-width: 45px !important;
    max-width: 45px !important;
}

.calendly-custom-close:hover {
    background: #d4441e !important;
    transform: scale(1.1) rotate(90deg) !important;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #1E1F22;
    color: #EBE7D9;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #EBE7D9;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #F55139;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.highlight {
    color: #F55139;
    white-space: nowrap;
}

.emphasis {
    font-weight: 600;
    color: #EBE7D9;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: rgba(30, 31, 34, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 81, 57, 0.2);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: #EBE7D9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F55139;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #EBE7D9;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1E1F22;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #F55139;
    color: #EBE7D9;
}

.btn-primary:hover {
    background-color: #d4441e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 81, 57, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #EBE7D9;
    border: 2px solid #EBE7D9;
}

.btn-secondary:hover {
    background-color: #EBE7D9;
    color: #1E1F22;
}

.btn-outline {
    background-color: transparent;
    color: #F55139;
    border: 2px solid #F55139;
}

.btn-outline:hover {
    background-color: #F55139;
    color: #EBE7D9;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-button {
    background-color: #F55139;
    color: #EBE7D9 !important;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #d4441e;
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 6rem 0;
    background: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    border-bottom: 2px solid rgba(245, 81, 57, 0.3);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    background: linear-gradient(rgba(30, 31, 34, 0.85), rgba(44, 45, 49, 0.85));
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #B8B3A8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   CREDENTIALS BAR
   ============================================ */
.credentials {
    background-color: #25262A;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(245, 81, 57, 0.2);
}

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

.credential-item {
    text-align: center;
    padding: 1rem;
}

.credential-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.credential-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #B8B3A8;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* About Intro Section */
.about-intro {
    background-color: #25262A;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Offerings Section */
.offerings {
    background-color: #1E1F22;
}

.offer-card {
    background-color: #25262A;
    border: 1px solid rgba(245, 81, 57, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card:hover {
    border-color: #F55139;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 81, 57, 0.2);
}

.offer-header {
    border-bottom: 2px solid rgba(245, 81, 57, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.offer-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.price .amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #F55139;
}

.price-note {
    font-size: 0.95rem;
    color: #B8B3A8;
}

.offer-description {
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    display: inline-block;
    text-align: left;
}

.offer-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.offer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F55139;
    font-weight: 700;
}

.offer-body {
    text-align: center;
}

.offer-for {
    font-style: italic;
    color: #B8B3A8;
    margin-bottom: 1.5rem;
}

/* Why Me Section */
.why-me {
    background-color: #25262A;
}

.why-me h2 {
    white-space: nowrap;
}

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

/* Center 4th item when in 3-column layout (3/1 pattern) */
.why-grid .why-item:nth-child(4):nth-last-child(1),
.why-grid .why-card:nth-child(4):nth-last-child(1) {
    grid-column: 2;
}

@media (max-width: 768px) {
    .why-grid .why-item:nth-child(4):nth-last-child(1),
    .why-grid .why-card:nth-child(4):nth-last-child(1) {
        grid-column: auto;
    }
}

.why-item {
    padding: 1.5rem;
    background-color: #1E1F22;
    border-left: 4px solid #F55139;
    border-radius: 4px;
}

.why-item h3 {
    color: #F55139;
    margin-bottom: 1rem;
}

/* Target Audience Section */
.target-audience {
    background-color: #1E1F22;
}

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

.audience-card {
    background-color: #25262A;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #F55139;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-4px);
}

.audience-card h3 {
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    background-color: #25262A;
}

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

.step {
    text-align: center;
    padding: 2rem 1rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #F55139;
    color: #EBE7D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #1E1F22;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #25262A;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #F55139;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #F55139;
    text-align: right;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1E1F22 0%, #2C2D31 100%);
    text-align: center;
    padding: 6rem 0;
    border-top: 2px solid rgba(245, 81, 57, 0.3);
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #B8B3A8;
}

.email-cta {
    margin-top: 2rem;
    font-size: 1rem;
}

.email-cta a {
    color: #F55139;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #15161A;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(245, 81, 57, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    color: #F55139;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tagline {
    font-style: italic;
    color: #B8B3A8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25262A;
    color: #EBE7D9;
    transition: all 0.3s ease;
    border: 2px solid rgba(235, 231, 217, 0.2);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background-color: #F55139;
    border-color: #F55139;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(245, 81, 57, 0.4);
}

/* Individual social platform styling */
.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[aria-label="LinkedIn"]:hover {
    background-color: #0077b5;
}

.social-links a[aria-label="Facebook"]:hover {
    background-color: #1877f2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B8B3A8;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F55139;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(235, 231, 217, 0.1);
}

.footer-bottom p {
    color: #B8B3A8;
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .why-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */
.hero-small {
    padding: 4rem 0;
}

.about-intro {
    background-color: #1E1F22;
    padding: 4rem 0;
}

.intro-with-photo {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #F55139;
}

.intro-text-brief h2 {
    margin-bottom: 0.5rem;
    color: #EBE7D9;
    text-align: left;
}

.intro-title {
    color: #F55139;
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.intro-text-brief p {
    font-size: 1.0625rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-with-photo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .intro-text-brief h2 {
        text-align: center;
    }
}

.about-main {
    background-color: #25262A;
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.0625rem;
}

.about-intro-text .lead {
    font-size: 1.375rem;
    font-weight: 600;
    color: #F55139;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.credentials-detailed {
    background-color: #1E1F22;
}

.credentials-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cred-column h3 {
    color: #F55139;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cred-list {
    list-style: none;
}

.cred-list > li {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
}

.cred-list > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F55139;
    font-weight: 700;
}

.cred-list ul {
    list-style: none;
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.cred-list ul li {
    color: #B8B3A8;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.cred-list ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #F55139;
}

.the-story {
    background-color: #25262A;
}

.story-image {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(245, 81, 57, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.story-intro {
    font-size: 1.375rem;
    font-weight: 600;
    color: #F55139;
    margin-bottom: 1.5rem;
}

.final-score {
    font-size: 1.5rem;
    text-align: center;
    color: #F55139;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #1E1F22;
    border-radius: 8px;
    border: 2px solid #F55139;
    max-width: fit-content;
}

.story-lesson {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #1E1F22;
    border-left: 4px solid #F55139;
    border-radius: 4px;
}

.why-choose {
    background-color: #1E1F22;
}

.why-card {
    background-color: #25262A;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #F55139;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-card h3 {
    color: #F55139;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .credentials-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-intro {
        font-size: 1.25rem;
    }

    .final-score {
        font-size: 1.25rem;
    }

    .story-lesson {
        font-size: 1.125rem;
    }
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */
.hero-subtitle-small {
    font-size: 1rem;
    color: #B8B3A8;
    margin-top: 0.5rem;
}

.service-detail {
    padding: 5rem 0;
}

.performance-plus-section {
    background-color: #25262A;
}

.elite-section {
    background-color: #1E1F22;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-tagline {
    font-size: 1.25rem;
    color: #B8B3A8;
    margin-bottom: 2rem;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F55139;
}

.price-badge {
    background-color: #F55139;
    color: #EBE7D9;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    text-align: center;
}

.features-section {
    margin-bottom: 4rem;
}

.features-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

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

/* Elite section features grid - 4 items as 3/1 with 4th centered */
.elite-section .features-grid .feature-card:nth-child(4):nth-last-child(1) {
    grid-column: 2;
}

@media (max-width: 768px) {
    .elite-section .features-grid .feature-card:nth-child(4):nth-last-child(1) {
        grid-column: auto;
    }
}

.feature-card {
    background-color: #1E1F22;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #F55139;
    transition: transform 0.3s ease;
    text-align: center;
}

.elite-section .feature-card {
    background-color: #25262A;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #F55139;
    margin-bottom: 0.75rem;
}

.who-for-section {
    margin: 3rem 0;
    text-align: center;
}

.who-for-section h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.check-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    padding-left: 2.5rem;
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F55139;
    font-weight: 700;
    font-size: 1.25rem;
}

.founding-member-box {
    background-color: #1E1F22;
    border: 2px solid #F55139;
    border-radius: 8px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.elite-section .founding-member-box {
    background-color: #25262A;
}

.founding-member-box h3 {
    color: #F55139;
    margin-bottom: 1rem;
}

.founding-member-box .btn {
    margin: 2rem 0 1rem;
}

.small-print {
    font-size: 0.875rem;
    color: #B8B3A8;
    font-style: italic;
    margin-top: 1rem;
}

.pricing-tables {
    margin: 4rem 0;
}

.pricing-tables > h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-table {
    margin-bottom: 3rem;
}

.pricing-table h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #25262A;
    border-radius: 8px;
    overflow: hidden;
}

.elite-section .price-table {
    background-color: #1E1F22;
}

.price-table thead {
    background-color: #F55139;
}

.price-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #EBE7D9;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(235, 231, 217, 0.1);
    text-align: center;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background-color: rgba(245, 81, 57, 0.1);
}

.highlight-row {
    background-color: rgba(245, 81, 57, 0.05);
}

.price-highlight {
    color: #F55139;
    font-weight: 700;
    font-size: 1.125rem;
}

.surcharge-note {
    background-color: rgba(245, 81, 57, 0.1);
    border-left: 4px solid #F55139;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 4px;
    text-align: center;
}

.special-offer {
    background: linear-gradient(135deg, rgba(245, 81, 57, 0.1) 0%, rgba(245, 81, 57, 0.05) 100%);
    border: 2px solid #F55139;
    border-radius: 8px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.special-offer h4 {
    color: #F55139;
    font-size: 1.75rem;
}

.offer-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.offer-note {
    text-align: center;
    font-style: italic;
    color: #B8B3A8;
    margin-top: 1rem;
}

.cta-box {
    text-align: center;
    margin: 3rem 0;
}

.how-it-works-detailed {
    background-color: #25262A;
}

.steps-detailed {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* First 3 items span 2 columns each */
.step-detailed:nth-child(1) {
    grid-column: 1 / 3;
}

.step-detailed:nth-child(2) {
    grid-column: 3 / 5;
}

.step-detailed:nth-child(3) {
    grid-column: 5 / 7;
}

/* Items 4 and 5 centered under row 1 */
.step-detailed:nth-child(4) {
    grid-column: 2 / 4;
}

.step-detailed:nth-child(5) {
    grid-column: 4 / 6;
}

.step-detailed {
    background-color: #1E1F22;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #F55139;
    text-align: center;
}

.step-detailed .step-number {
    width: 50px;
    height: 50px;
    background-color: #F55139;
    color: #EBE7D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.step-detailed h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.step-detailed p {
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

.step-detailed ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
    display: inline-block;
    text-align: left;
}

.step-detailed ul li {
    margin-bottom: 0.5rem;
}

.step-detailed .btn {
    margin-top: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.faq-section {
    background-color: #1E1F22;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Services page FAQ - 7 items (3/3/1), center last item under column 2 */
.faq-section .faq-grid .faq-item:nth-child(7):nth-last-child(1) {
    grid-column: 2;
}

/* Contact page FAQ - 4 items as 3/1 with 4th centered */
.contact-faq .faq-grid .faq-item:nth-child(4):nth-last-child(1) {
    grid-column: 2;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section .faq-grid .faq-item:nth-child(7):nth-last-child(1),
    .contact-faq .faq-grid .faq-item:nth-child(4):nth-last-child(1) {
        grid-column: auto;
    }
}

.faq-item {
    background-color: #25262A;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #F55139;
}

.faq-item h3 {
    color: #F55139;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin: 0;
    color: #B8B3A8;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .price-large {
        font-size: 2rem;
    }

    .price-table {
        font-size: 0.875rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
    }

    .steps-detailed {
        grid-template-columns: 1fr;
    }

    /* Reset grid positioning on mobile */
    .step-detailed:nth-child(1),
    .step-detailed:nth-child(2),
    .step-detailed:nth-child(3),
    .step-detailed:nth-child(4),
    .step-detailed:nth-child(5) {
        grid-column: auto;
    }
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
.book-call-section {
    background-color: #25262A;
}

.book-call-card {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.book-call-intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #B8B3A8;
}

.calendly-placeholder {
    background-color: #1E1F22;
    border: 2px dashed #F55139;
    border-radius: 8px;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.calendly-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.calendly-note {
    color: #B8B3A8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.calendly-button {
    /* Style for Calendly trigger button */
    cursor: pointer;
}

.calendly-inline-widget {
    min-width: 320px;
    width: 100%;
    height: 850px;
}

@media (max-width: 768px) {
    .calendly-inline-widget {
        height: 900px;
    }
}

.no-obligation {
    font-style: italic;
    color: #B8B3A8;
    margin-top: 1.5rem;
}

.contact-methods {
    background-color: #1E1F22;
}

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

.contact-card {
    background-color: #25262A;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #F55139;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card a {
    color: #F55139;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #B8B3A8;
    font-style: italic;
    margin-top: 0.5rem;
}

.social-links-contact {
    margin-top: 1rem;
}

.social-links-contact p {
    margin-bottom: 0.75rem;
}

.training-options {
    background-color: #25262A;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.option-card {
    background-color: #1E1F22;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #F55139;
}

.option-card h3 {
    color: #F55139;
    margin-bottom: 1rem;
}

.option-list {
    list-style: none;
    padding: 0;
}

.option-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.option-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F55139;
    font-weight: 700;
}

.what-to-expect {
    background-color: #1E1F22;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #B8B3A8;
}

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

.expect-step {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #25262A;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.expect-step:hover {
    transform: translateY(-4px);
}

.expect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expect-number {
    width: 50px;
    height: 50px;
    background-color: #F55139;
    color: #EBE7D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

.expect-step h3 {
    color: #EBE7D9;
    margin-bottom: 1rem;
}

.contact-faq {
    background-color: #25262A;
}

@media (max-width: 768px) {
    .contact-grid,
    .options-grid,
    .expect-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1E1F22;
    border-top: 2px solid #F55139;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #F55139;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.cookie-text p {
    color: #EBE7D9;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.cookie-text a {
    color: #F55139;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: #F55139;
    color: #EBE7D9;
}

.cookie-btn-accept:hover {
    background-color: #d4441e;
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background-color: transparent;
    color: #EBE7D9;
    border: 2px solid #EBE7D9;
}

.cookie-btn-settings:hover {
    background-color: #EBE7D9;
    color: #1E1F22;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #B8B3A8;
    border: 2px solid #B8B3A8;
}

.cookie-btn-decline:hover {
    background-color: #B8B3A8;
    color: #1E1F22;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background-color: #1E1F22;
    border: 2px solid #F55139;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-settings-content h2 {
    color: #F55139;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background-color: #25262A;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h3 {
    color: #EBE7D9;
    font-size: 1.125rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #B8B3A8;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #F55139;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: #B8B3A8;
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-settings-content {
        padding: 1.5rem;
    }
}

/* ============================================
   PAYMENT INTEGRATION STYLES
   ============================================ */

/* Button Group for Two-Path CTAs (Discovery Call + Buy Now) */
.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    align-items: center;
}

.cta-button-group .btn {
    width: 100%;
    max-width: 400px;
    margin: 0;
}

/* Secondary Button Style (for Discovery Call as secondary option) */
.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
}

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* CTA Description Text */
.cta-description {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
    font-weight: 500;
}

.cta-or {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-grey);
    margin-top: 0.5rem;
}

/* Responsive adjustments for payment CTAs */
@media (max-width: 768px) {
    .cta-button-group {
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .cta-description {
        font-size: 1rem;
    }
}

/* Small Button for Pricing Tables */
.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
    display: inline-block;
}

/* Table Action Column */
.price-table th:last-child,
.price-table td:last-child {
    text-align: center;
    min-width: 120px;
}

/* Responsive table adjustments */
@media (max-width: 768px) {
    .btn-small {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .price-table th:last-child,
    .price-table td:last-child {
        min-width: 90px;
    }
}

/* Center footer Quick Links column */
.footer-center {
    text-align: center;
}

.footer-center .footer-links {
    list-style: none;
    padding: 0;
}

/* Multiline button for pricing CTAs */
.btn-multiline {
    max-width: 280px !important;
    line-height: 1.4;
}

.btn-multiline .btn-price {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

