/* ==========================================================================
   Components & Sections Styles
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 650px;
    padding: var(--prok9-spacing-xl) 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-xs);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-md);
    font-weight: 400;
    line-height: 1.3;
}

.hero-subtitle .highlight {
    color: var(--prok9-orange);
    font-weight: 600;
}

.hero-description {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--prok9-spacing-lg);
    line-height: 1.7;
    font-weight: 400;
}

.hero-description strong,
.hero-description b {
    color: var(--prok9-white);
    font-weight: 600;
}

/* Mobile hero adjustments */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 90vh;
    }

    .hero .container {
        padding-top: 80px;
    }

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

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee-section {
    background-color: var(--prok9-black);
    padding: 1.25rem 0;
    overflow: hidden;
}

.marquee-secondary-section {
    background-color: var(--prok9-grey-light);
}

.marquee-secondary-section .marquee-item {
    color: var(--prok9-black);
}

.marquee-secondary-section .marquee-separator {
    color: var(--prok9-orange);
}

/* Section Divider - Orange Line */
.section-divider {
    height: 4px;
    background-color: var(--prok9-orange);
    width: 100%;
    border: none;
    margin: 0;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: marquee var(--marquee-speed, 30s) linear infinite;
}

.marquee-item {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--prok9-white);
    padding: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

.marquee-separator {
    color: var(--prok9-orange);
    padding: 0 1.5rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.marquee-star {
    color: var(--prok9-orange);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    vertical-align: middle;
    padding: 0 1rem;
}

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

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Secondary Marquee */
.marquee-secondary .marquee-item {
    color: var(--prok9-black);
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */

.pricing-section {
    padding: var(--prok9-spacing-xl) 0;
    background-color: var(--prok9-black);
}

/* Courses intro banner - matches Squarespace style */
.courses-intro-banner {
    background-color: var(--prok9-black);
    padding: var(--prok9-spacing-xl) var(--prok9-spacing-md);
}

@media (max-width: 576px) {
    .courses-intro-banner {
        padding-bottom: var(--prok9-spacing-sm);
    }

    .pricing-section {
        padding-top: var(--prok9-spacing-md);
    }
}

.courses-intro-banner .container {
    max-width: var(--prok9-container-width);
    margin: 0 auto;
    padding: 0 var(--prok9-spacing-md);
}

.courses-intro-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    font-style: normal;
    color: #f5f0e8;
    max-width: 700px;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: left;
}

/* ==========================================================================
   Coaching Cards (Online Coaching Section - Squarespace Style)
   ========================================================================== */

.coaching-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--prok9-spacing-lg);
}

.coaching-grid .coaching-card {
    flex: 0 1 calc(33.333% - var(--prok9-spacing-lg));
    max-width: calc(33.333% - var(--prok9-spacing-lg));
}

@media (max-width: 992px) {
    .coaching-grid .coaching-card {
        flex: 0 1 calc(50% - var(--prok9-spacing-md));
        max-width: calc(50% - var(--prok9-spacing-md));
    }

    .coaching-grid {
        gap: var(--prok9-spacing-md);
    }
}

@media (max-width: 768px) {
    .coaching-grid .coaching-card {
        flex: 0 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .coaching-grid {
        gap: var(--prok9-spacing-md);
    }
}

@media (max-width: 576px) {
    .coaching-grid .coaching-card {
        flex: 0 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.coaching-card {
    background: transparent;
}

.coaching-card-image {
    margin-bottom: var(--prok9-spacing-md);
}

.coaching-card-image a {
    display: block;
}

.coaching-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--prok9-radius-md);
}

.coaching-card-body {
    padding: 0;
}

.coaching-card-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    font-style: normal;
    color: var(--prok9-white);
    margin-bottom: 0.5rem;
}

.coaching-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.coaching-card-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--prok9-white);
    margin-bottom: 0;
}

.coaching-card-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.coaching-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coaching-card-body .btn {
    margin-bottom: 1.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

.coaching-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.coaching-card-features li {
    font-size: 0.875rem;
    color: var(--prok9-white);
    padding: 0.25rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.coaching-card-features .feature-check {
    color: var(--prok9-white);
    font-weight: 400;
}

.pricing-header {
    margin-bottom: var(--prok9-spacing-lg);
}

.pricing-intro {
    font-size: 1.125rem;
    color: var(--prok9-grey-medium);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--prok9-spacing-md);
}

.pricing-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--prok9-radius-md);
    padding: var(--prok9-spacing-lg);
    display: flex;
    flex-direction: column;
    transition: transform var(--prok9-transition), box-shadow var(--prok9-transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: var(--prok9-spacing-md);
    padding-bottom: var(--prok9-spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--prok9-spacing-sm);
    color: var(--prok9-white);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--prok9-white);
}

.pricing-price del {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.pricing-price ins {
    text-decoration: none;
}

.pricing-card-body {
    flex-grow: 1;
    margin-bottom: var(--prok9-spacing-md);
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--prok9-orange);
    font-weight: 700;
}

.pricing-card-footer {
    margin-top: auto;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.product-grid-section,
.seminars-section,
.equipment-section {
    padding: var(--prok9-spacing-xl) 0;
}

/* Grey background sections */
.seminars-section {
    background-color: var(--prok9-grey-light);
}

/* Section Header with Button */
.section-header-with-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--prok9-spacing-md);
    margin-bottom: var(--prok9-spacing-lg);
}

.section-header-with-button .section-title {
    margin-bottom: 0;
}

.section-header-with-button .section-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--prok9-transition-fast);
}

.section-header-with-button .section-title a:hover {
    color: var(--prok9-orange);
}

.btn-view-all {
    white-space: nowrap;
}

@media (max-width: 576px) {
    .section-header-with-button {
        flex-direction: column;
        gap: var(--prok9-spacing-sm);
        text-align: center;
    }
}

/* Section Header Stacked - title with button underneath */
.section-header-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--prok9-spacing-sm);
}

.section-header-stacked .section-title {
    margin-bottom: 0;
}

.section-header-stacked .section-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--prok9-transition-fast);
}

.section-header-stacked .section-title a:hover {
    color: var(--prok9-orange);
}

/* Seminars Intro Text */
.seminars-intro {
    max-width: 700px;
    margin-bottom: var(--prok9-spacing-md);
}

@media (max-width: 576px) {
    .seminars-intro {
        margin-bottom: var(--prok9-spacing-xs);
    }
}

.seminars-intro-paragraph {
    font-size: 0.95rem;
    color: var(--prok9-grey-dark);
    line-height: 1.6;
    margin-bottom: var(--prok9-spacing-sm);
}

.seminars-intro-paragraph:last-child {
    margin-bottom: 0;
}

/* Mobile/Desktop visibility utilities (default: desktop) */
.show-mobile-only {
    display: none;
}

.hide-mobile-only {
    display: block;
}

/* Seminars Banner */
.seminars-banner-link {
    display: none;
    text-decoration: none;
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
    margin-top: var(--prok9-spacing-sm);
    transition: transform var(--prok9-transition), box-shadow var(--prok9-transition);
}

.seminars-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--prok9-shadow-lg);
}

.seminars-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.seminars-banner-placeholder {
    background: linear-gradient(135deg, var(--prok9-black) 0%, #333 100%);
    padding: var(--prok9-spacing-xxl) var(--prok9-spacing-xl);
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--prok9-orange);
}

.seminars-banner-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--prok9-white);
    display: block;
    margin-bottom: var(--prok9-spacing-sm);
}

.seminars-banner-subtext {
    font-size: 1.125rem;
    color: var(--prok9-orange);
    display: block;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--prok9-grey-medium);
    max-width: 800px;
    margin: 0 auto var(--prok9-spacing-lg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--prok9-spacing-md);
}

.product-card {
    background-color: var(--prok9-white);
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
    transition: transform var(--prok9-transition), box-shadow var(--prok9-transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--prok9-shadow-md);
}

.product-card .card-image {
    position: relative;
    background-color: var(--prok9-grey-light);
}

.product-card .card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.product-card .card-image a {
    display: block;
}

.product-card:hover .card-image img {
    opacity: 0.9;
}

.product-card .card-body {
    padding: var(--prok9-spacing-md);
}

.product-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--prok9-spacing-xs);
}

.product-card .card-title a {
    color: var(--prok9-grey-dark);
    text-decoration: none;
    transition: color var(--prok9-transition-fast);
}

.product-card .card-title a:hover {
    color: var(--prok9-orange);
}

.product-card .card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--prok9-grey-dark);
    margin-bottom: var(--prok9-spacing-sm);
}

.product-card .card-price del {
    color: var(--prok9-grey-medium);
    font-weight: 400;
    font-size: 0.875rem;
}

.product-card .card-price ins {
    text-decoration: none;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--prok9-grey-light) 0%, var(--prok9-grey-border) 100%);
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.placeholder-image.large {
    min-height: 400px;
}

.placeholder-image.square {
    aspect-ratio: 1/1;
    min-height: auto;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: var(--prok9-spacing-xl) 0;
    background-color: var(--prok9-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-lg);
    align-items: center;
}

.services-content {
    padding-right: var(--prok9-spacing-lg);
}

.services-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--prok9-spacing-md);
}

.services-description {
    margin-bottom: var(--prok9-spacing-lg);
}

.services-description p {
    color: var(--prok9-grey-medium);
    margin-bottom: var(--prok9-spacing-sm);
}

.services-image {
    position: relative;
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Contact Sections
   ========================================================================== */

.contact-preview-section {
    padding: var(--prok9-spacing-lg) 0;
    background-color: var(--prok9-white);
}

.contact-full-section {
    padding: var(--prok9-spacing-lg) 0;
    padding-bottom: var(--prok9-spacing-xl);
    background-color: var(--prok9-grey-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-md);
    align-items: start;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--prok9-spacing-sm);
}

.contact-intro {
    color: var(--prok9-grey-medium);
    font-size: 1.125rem;
    line-height: 1.8;
}

.contact-form-wrapper {
    background-color: var(--prok9-white);
}

.contact-form-card {
    background-color: var(--prok9-white);
    border: 1px solid var(--prok9-grey-border);
    border-radius: var(--prok9-radius-md);
    padding: var(--prok9-spacing-md);
}

.contact-form-card h3 {
    margin-bottom: var(--prok9-spacing-sm);
}

/* Get in Touch Induction Layout */
.contact-grid-induction {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-md);
    align-items: start;
}

.contact-left {
    padding-right: var(--prok9-spacing-md);
}

.contact-right {
    /* Form on right */
}

.contact-image {
    margin-top: var(--prok9-spacing-md);
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

/* WhatsApp Button */
.contact-whatsapp {
    margin-top: var(--prok9-spacing-md);
    padding-top: var(--prok9-spacing-md);
    border-top: 1px solid var(--prok9-grey-border);
}

.whatsapp-intro {
    font-size: 0.9375rem;
    color: var(--prok9-grey-medium);
    margin-bottom: var(--prok9-spacing-sm);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: var(--prok9-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--prok9-radius-md);
    font-weight: 500;
    transition: background-color var(--prok9-transition);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--prok9-white);
}

.whatsapp-icon {
    flex-shrink: 0;
}

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

    .contact-left {
        padding-right: 0;
    }
}

/* Full-width Contact Section (Squarespace style) */
/* Additional styling moved to main .contact-full-section rule above */

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--prok9-spacing-xl);
}

.contact-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--prok9-spacing-lg);
    align-items: start;
}

.contact-full-content {
    padding-top: var(--prok9-spacing-md);
}

.contact-full-title {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--prok9-spacing-md);
}

.contact-full-intro {
    font-size: 0.95rem;
    color: var(--prok9-grey-dark);
    line-height: 1.7;
    max-width: 400px;
}

.contact-full-form {
    width: 100%;
}

/* Wide form styling */
.contact-form-wide {
    width: 100%;
}

.form-group-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--prok9-grey-dark);
    margin-bottom: var(--prok9-spacing-xs);
}

.form-label-small {
    font-size: 0.75rem;
    color: var(--prok9-grey-medium);
    display: block;
    margin-bottom: 0.25rem;
}

.form-label-small .required {
    font-weight: 400;
}

.form-input-underline {
    border: 1px solid var(--prok9-grey-border);
    border-radius: var(--prok9-radius-sm);
    padding: 0.75rem 1rem;
    background: var(--prok9-white);
    transition: border-color var(--prok9-transition), box-shadow var(--prok9-transition);
}

.form-input-underline:focus {
    border-color: var(--prok9-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
    outline: none;
}

.form-textarea.form-input-underline {
    border: 1px solid var(--prok9-grey-border);
    border-radius: var(--prok9-radius-sm);
    padding: 0.75rem 1rem;
    resize: vertical;
    background: var(--prok9-white);
}

.form-textarea.form-input-underline:focus {
    border-color: var(--prok9-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.contact-form-wide .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-lg);
}

.contact-form-wide .form-group {
    margin-bottom: var(--prok9-spacing-md);
}

@media (max-width: 992px) {
    .contact-full-grid {
        grid-template-columns: 1fr;
        gap: var(--prok9-spacing-xl);
    }

    .contact-full-intro {
        max-width: 100%;
    }

    .container-wide {
        padding: 0 var(--prok9-spacing-md);
    }
}

@media (max-width: 576px) {
    .contact-form-wide .form-row {
        grid-template-columns: 1fr;
        gap: var(--prok9-spacing-sm);
    }
}

.contact-form-large {
    background-color: var(--prok9-white);
    border: 1px solid var(--prok9-grey-border);
    border-radius: var(--prok9-radius-md);
    padding: var(--prok9-spacing-lg);
}

.contact-info-sidebar .contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--prok9-spacing-md);
}

.contact-info-sidebar .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info-sidebar .contact-item .icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--prok9-orange);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--prok9-spacing-md);
}

/* ==========================================================================
   Story Section
   ========================================================================== */

.story-section {
    padding: var(--prok9-spacing-xl) 0;
    background-color: var(--prok9-grey-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.story-image {
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    text-align: left;
    padding: var(--prok9-spacing-lg);
}

.story-title {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--prok9-spacing-md);
}

.story-description {
    font-size: 0.95rem;
    color: var(--prok9-grey-dark);
    line-height: 1.7;
    margin-bottom: var(--prok9-spacing-lg);
}

/* Rounded button style */
.btn-rounded {
    border-radius: 50px;
    padding: 1rem 2.5rem;
}

/* ==========================================================================
   Social Feed
   ========================================================================== */

.social-section {
    padding: var(--prok9-spacing-xl) 0;
    background-color: var(--prok9-grey-light);
}

.social-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--prok9-spacing-md);
}

.social-feed-item {
    position: relative;
    display: block;
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
    background-color: var(--prok9-grey-border);
}

.social-feed-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform var(--prok9-transition);
}

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

/* Instagram overlay */
.social-feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--prok9-transition);
}

.social-feed-item:hover .social-feed-overlay {
    opacity: 1;
}

.social-feed-icon {
    color: var(--prok9-white);
}

/* Video badge */
.social-feed-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--prok9-white);
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder styling */
.social-feed-placeholder {
    cursor: default;
}

.social-feed-placeholder .placeholder-image {
    background: linear-gradient(135deg, var(--prok9-grey-light) 0%, var(--prok9-grey-border) 100%);
}

/* Smash Balloon Instagram Feed Integration */
.instagram-feed-wrapper {
    margin-bottom: var(--prok9-spacing-md);
}

/* Override Smash Balloon default styles to match theme */
.instagram-feed-wrapper #sb_instagram {
    padding-bottom: 0 !important;
}

.instagram-feed-wrapper #sb_instagram #sbi_images {
    padding: 0 !important;
}

.instagram-feed-wrapper .sbi_item {
    border-radius: var(--prok9-radius-md) !important;
    overflow: hidden;
}

.instagram-feed-wrapper .sbi_photo {
    border-radius: var(--prok9-radius-md) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .social-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--prok9-spacing-sm);
    }
}

/* ==========================================================================
   Page Headers
   ========================================================================== */

.page-header {
    padding: var(--prok9-spacing-lg) 0;
    margin-bottom: var(--prok9-spacing-md);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0;
}

.archive-description {
    margin-top: var(--prok9-spacing-sm);
    color: var(--prok9-grey-medium);
}

/* Shop Header */
.shop-header {
    background-color: var(--prok9-grey-light);
    padding: var(--prok9-spacing-xl) 0;
    margin-bottom: 0;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
    padding: var(--prok9-spacing-sm) 0;
    background-color: var(--prok9-grey-light);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

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

.breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--prok9-grey-medium);
}

.breadcrumbs-list a {
    color: var(--prok9-grey-medium);
    text-decoration: none;
    transition: color var(--prok9-transition-fast);
}

.breadcrumbs-list a:hover {
    color: var(--prok9-orange);
}

.breadcrumbs-list [aria-current="page"] {
    color: var(--prok9-grey-dark);
    font-weight: 500;
}

/* ==========================================================================
   Posts Grid
   ========================================================================== */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--prok9-spacing-md);
}

.post-card {
    background-color: var(--prok9-white);
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
    transition: transform var(--prok9-transition), box-shadow var(--prok9-transition);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--prok9-shadow-md);
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--prok9-grey-medium);
    margin-top: 0.5rem;
}

.entry-excerpt {
    color: var(--prok9-grey-medium);
    margin-bottom: var(--prok9-spacing-sm);
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.navigation.pagination {
    margin-top: var(--prok9-spacing-xl);
}

.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem;
    background-color: var(--prok9-grey-light);
    color: var(--prok9-grey-dark);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--prok9-radius-sm);
    transition: all var(--prok9-transition-fast);
}

.pagination .page-numbers:hover {
    background-color: var(--prok9-orange);
    color: var(--prok9-white);
}

.pagination .page-numbers.current {
    background-color: var(--prok9-orange);
    color: var(--prok9-white);
}

.pagination .page-numbers .icon {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   No Results
   ========================================================================== */

.no-results {
    text-align: center;
    padding: var(--prok9-spacing-xl) 0;
}

.no-results .page-content {
    max-width: 600px;
    margin: var(--prok9-spacing-md) auto 0;
}

.no-results .search-form {
    display: flex;
    max-width: 500px;
    margin: var(--prok9-spacing-md) auto 0;
}

/* ==========================================================================
   Membership Notices
   ========================================================================== */

.prok9-membership-notice {
    text-align: center;
    padding: var(--prok9-spacing-xl);
    background-color: var(--prok9-grey-light);
    border-radius: var(--prok9-radius-md);
    margin: var(--prok9-spacing-md) 0;
}

.prok9-membership-notice h3 {
    margin-bottom: var(--prok9-spacing-sm);
}

.prok9-membership-notice p {
    color: var(--prok9-grey-medium);
    margin-bottom: var(--prok9-spacing-md);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 992px) {
    /* Container */
    .container {
        padding: 0 1.5rem;
    }

    /* Section spacing */
    .section {
        padding: var(--prok9-spacing-lg) 0;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services, Contact, Story */
    .services-grid,
    .contact-grid,
    .story-grid,
    .contact-full-grid {
        grid-template-columns: 1fr;
    }

    .services-content {
        padding-right: 0;
        margin-bottom: var(--prok9-spacing-md);
    }

    .services-image {
        order: -1;
        margin-bottom: var(--prok9-spacing-sm);
    }

    .story-grid {
        gap: var(--prok9-spacing-md);
    }

    .story-content {
        order: -1;
        padding: var(--prok9-spacing-md);
    }

    /* Social Feed */
    .social-feed {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Posts */
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Section titles */
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Section spacing */
    .section {
        padding: var(--prok9-spacing-md) 0;
    }

    .section-lg {
        padding: var(--prok9-spacing-lg) 0;
    }

    /* Marquee */
    .marquee-item {
        font-size: 0.875rem;
        padding: 0 0.75rem;
    }

    .marquee-separator {
        padding: 0 0.75rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--prok9-spacing-md);
    }

    .pricing-card {
        padding: var(--prok9-spacing-md);
    }

    .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

    /* Products */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--prok9-spacing-sm);
    }

    .product-card .card-body {
        padding: var(--prok9-spacing-sm);
    }

    .product-card .card-title {
        font-size: 0.9rem;
    }

    .product-card .card-price {
        font-size: 1rem;
    }

    .product-card .btn {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Posts */
    .posts-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }

    /* Contact */
    .contact-title {
        font-size: 1.5rem;
    }

    .contact-intro {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Products - 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Seminars grid - 2 columns on mobile to reduce scrolling */
    .seminars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--prok9-spacing-sm);
    }

    .seminars-grid .product-card .card-body {
        padding: var(--prok9-spacing-sm);
    }

    .seminars-grid .product-card .card-title {
        font-size: 0.8rem;
    }

    .seminars-grid .product-card .card-price {
        font-size: 0.9rem;
    }

    .seminars-grid .product-card .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    /* Hide on mobile utility */
    .hide-on-mobile {
        display: none !important;
    }

    /* Show/hide mobile-only elements */
    .show-mobile-only {
        display: block !important;
    }

    .hide-mobile-only {
        display: none !important;
    }

    /* Make coaching cards clickable - entire card links to product */
    .coaching-grid .coaching-card {
        cursor: pointer;
    }

    /* Social Feed */
    .social-feed {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--prok9-spacing-sm);
    }

    /* Pricing intro */
    .pricing-intro {
        font-size: 1rem;
    }

    /* Section intro */
    .section-intro {
        font-size: 1rem;
    }

    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        gap: var(--prok9-spacing-sm);
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   About Page
   ========================================================================== */

/* Page Header Hero */
.page-header-hero {
    padding: var(--prok9-spacing-xl) 0 var(--prok9-spacing-lg);
    background-color: var(--prok9-black);
}

.page-header-hero .page-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-sm);
}

.page-header-hero .breadcrumbs {
    background: transparent;
    padding: 0;
}

.page-header-hero .breadcrumbs,
.page-header-hero .breadcrumbs a,
.page-header-hero .breadcrumbs span {
    color: rgba(255, 255, 255, 0.85);
}

.page-header-hero .breadcrumbs a:hover {
    color: var(--prok9-orange);
}

.page-header-hero .breadcrumbs .current,
.page-header-hero .breadcrumbs [aria-current="page"] {
    color: var(--prok9-white);
}

.page-header-hero .breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.6);
}

/* About Intro Section */
.about-intro {
    background-color: var(--prok9-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.about-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--prok9-spacing-md);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--prok9-grey-dark);
}

.about-text p {
    margin-bottom: var(--prok9-spacing-sm);
}

.about-image img,
.about-featured-image {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

/* Mission Section */
.about-mission {
    background-color: var(--prok9-grey-light);
}

.about-mission h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: var(--prok9-spacing-md);
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--prok9-grey-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* NeMo System Section */
.about-nemo {
    background-color: var(--prok9-black);
    color: var(--prok9-white);
}

.nemo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.nemo-image img {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

.nemo-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-md);
}

.nemo-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--prok9-spacing-sm);
}

.nemo-content .btn {
    margin-top: var(--prok9-spacing-md);
}

/* Team Section */
.about-team {
    background-color: var(--prok9-grey-light);
}

.about-team .section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: var(--prok9-spacing-lg);
}

.team-grid {
    gap: var(--prok9-spacing-lg);
}

.team-member {
    text-align: center;
}

.team-image {
    margin-bottom: var(--prok9-spacing-sm);
    border-radius: var(--prok9-radius-md);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--prok9-grey-medium);
    margin: 0;
}

/* Values Section */
.about-values {
    background-color: var(--prok9-white);
}

.about-values .section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
}

.values-grid {
    gap: var(--prok9-spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--prok9-spacing-lg);
    background-color: var(--prok9-grey-light);
    border-radius: var(--prok9-radius-md);
    transition: transform var(--prok9-transition), box-shadow var(--prok9-transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--prok9-shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--prok9-spacing-md);
    padding: 1rem;
    background-color: var(--prok9-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--prok9-white);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--prok9-spacing-xs);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--prok9-grey-medium);
    line-height: 1.6;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    background-color: var(--prok9-black);
}

.about-cta h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: var(--prok9-spacing-sm);
}

.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--prok9-spacing-sm);
    flex-wrap: wrap;
}

/* Founder Section */
.about-founder {
    background-color: var(--prok9-black);
    color: var(--prok9-white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

.founder-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-md);
}

.founder-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--prok9-spacing-sm);
}

.founder-intro {
    font-size: 1.125rem !important;
    color: var(--prok9-white) !important;
}

/* NeMo Detail Section */
.about-nemo-detail {
    background-color: var(--prok9-grey-light);
}

.nemo-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.nemo-detail-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--prok9-spacing-md);
}

.nemo-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--prok9-grey-dark);
    margin-bottom: var(--prok9-spacing-sm);
}

.nemo-detail-content .btn {
    margin-top: var(--prok9-spacing-md);
}

.nemo-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

/* Protection Training Section */
.about-protection {
    background-color: var(--prok9-black);
    color: var(--prok9-white);
}

.protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--prok9-spacing-xl);
    align-items: center;
}

.protection-image img {
    width: 100%;
    height: auto;
    border-radius: var(--prok9-radius-md);
}

.protection-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--prok9-white);
    margin-bottom: var(--prok9-spacing-md);
}

.protection-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--prok9-spacing-sm);
}

/* Protection Detail Section */
.about-protection-detail {
    background-color: var(--prok9-white);
}

.protection-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.protection-detail-content .large-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--prok9-grey-dark);
    margin-bottom: var(--prok9-spacing-md);
}

.protection-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--prok9-grey-dark);
}

/* CTA Description */
.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto var(--prok9-spacing-lg);
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-grid,
    .nemo-grid,
    .founder-grid,
    .nemo-detail-grid,
    .protection-grid {
        grid-template-columns: 1fr;
        gap: var(--prok9-spacing-lg);
    }

    .about-image,
    .nemo-image,
    .founder-image,
    .nemo-detail-image,
    .protection-image {
        order: -1;
    }
}

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

    .value-card {
        padding: var(--prok9-spacing-md);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .protection-detail-content .large-text {
        font-size: 1.25rem;
    }
}

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

    .about-cta .cta-buttons {
        flex-direction: column;
    }

    .about-cta .cta-buttons .btn {
        width: 100%;
    }
}
