/* For Practice Owners Page Styles */

/* Inner page header - always white background (no hero video) */
.header--inner {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header--inner .nav-link {
    color: var(--black);
    text-shadow: none;
}

.header--inner .nav-link::after {
    background-color: var(--black);
}

.header--inner .mobile-menu-toggle span {
    background-color: var(--black);
}

/* Active nav link */
.nav-link--active {
    color: var(--orange) !important;
}

.nav-link--active::after {
    background-color: var(--orange) !important;
    width: 100% !important;
}

/* Hero Section */
.po-hero {
    padding: 180px 0 120px;
    background-color: var(--black);
    color: var(--white);
}

.po-hero__content {
    max-width: 800px;
}

.po-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.po-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.po-hero .cta-button {
    margin: 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Problem Section */
.po-problem {
    padding: 100px 0;
    background-color: var(--white);
}

.po-problem__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.po-problem__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.po-problem__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.po-problem__text:last-child {
    margin-bottom: 0;
}

/* Who We Are / How We Work Sections */
.po-who-we-are {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.po-how-we-work {
    padding: 100px 0;
    background-color: var(--white);
}

.po-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.po-point {
    padding: 0;
}

.po-point__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.po-point__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.po-point__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Offering Section */
.po-offering {
    padding: 120px 0;
    background-color: var(--black);
    color: var(--white);
}

.po-offering__content {
    max-width: 800px;
    margin: 0 auto;
}

.po-offering__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: var(--white);
}

.po-offering__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.po-offering__text p:first-child {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
}

.po-offering__text p:last-child {
    margin-bottom: 0;
}

/* Through-line Section */
.po-throughline {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.po-throughline__text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    color: var(--gray-dark);
}

/* Override sticky CTA for inner pages */
.page-practice-owners .sticky-cta {
    opacity: 0;
    transform: translateY(100px);
}

.page-practice-owners .sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE STYLES */

/* Tablet */
@media screen and (max-width: 1024px) {
    .po-points {
        gap: 3rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .po-hero {
        padding: 140px 0 80px;
    }

    .po-hero__title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .po-problem,
    .po-who-we-are,
    .po-how-we-work {
        padding: 60px 0;
    }

    .po-offering {
        padding: 80px 0;
    }

    .po-throughline {
        padding: 60px 0;
    }

    .po-points {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .po-point__number {
        font-size: 2.5rem;
    }

    .po-point__title {
        font-size: 1.25rem;
    }

    .po-offering__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    /* Inner page header mobile nav text color */
    .header--inner .nav-menu .nav-link {
        color: var(--black);
        text-shadow: none;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .po-hero {
        padding: 120px 0 60px;
    }

    .po-hero__subtitle {
        font-size: 1rem;
    }

    .po-problem__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .po-problem__text {
        font-size: 1rem;
    }

    .po-point__text {
        font-size: 1rem;
    }

    .po-offering__text p {
        font-size: 1rem;
    }

    .po-offering__text p:first-child {
        font-size: 1.125rem;
    }

    .po-throughline__text {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
}
