/* ===================================
   INTERNAL PAGES STYLES - COMPLETE VERSION
   All sections for Businesses, Individuals, Franchise pages
   Mobile-first with proper responsive breakpoints
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.page-hero {
    position: relative;
    min-height: 600px;
    padding: 60px 20px;
    background-color: white;
}

.page-hero-container {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.page-hero-image-col {
    width: 100%;
    order: 2;
}

.page-hero-content-col {
    width: 100%;
    order: 1;
}

.page-hero-image-wrap {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.page-hero-image-placeholder {
    width: 100%;
    aspect-ratio: 9/10;
    background-color: #e5e7eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-image-placeholder p {
    color: #9ca3af;
    font-size: 14px;
}

.page-hero-content-wrap {
    max-width: 672px;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 24px;
}

.page-hero h1 .highlight {
    color: #ee2966;
}

.page-hero-description {
    margin-bottom: 24px;
    font-size: 15px;
    color: #374151;
    line-height: 1.65;
}

.page-hero-description p {
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    background-color: rgba(224, 58, 106, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.benefit-text {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-primary {
    background-color: #ee2966;
    color: white;
    padding: 14px 24px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background-color: #d91456;
}

.btn-secondary {
    background-color: white;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 14px 24px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: border-color 0.3s;
    width: 100%;
}

.btn-secondary:hover {
    border-color: #9ca3af;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    left: -20px;
    top: 20%;
    bottom: 30%;
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 180px;
}

.floating-badge {
    border-radius: 9999px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.floating-badge.blue {
    background-color: #3b82f6;
}

.floating-badge.pink {
    background-color: #ee2966;
}

.floating-badge.purple {
    background-color: #a855f7;
}

.floating-badge.green {
    background-color: #10b981;
}

.floating-badge-dot {
    width: 14px;
    height: 14px;
    background-color: white;
    border-radius: 9999px;
}

.floating-badge-text {
    color: white;
    font-weight: 500;
    font-size: 12px;
}

/* Benefits Overlay - Glassy Container */
.benefits-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    max-width: 360px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.benefit-overlay-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    padding-right: 24px;
}

.benefit-overlay-item:last-child {
    margin-bottom: 0;
}

.benefit-overlay-item svg {
    flex-shrink: 0;
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.social-proof-text {
    font-size: 12px;
    color: #4b5563;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    width: 14px;
    height: 14px;
}

.rating-text {
    font-size: 12px;
    color: #4b5563;
    margin-left: 4px;
}

/* Reviews Badge */
.brokers-reviews-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.reviews-text {
    color: #000;
    font-size: 12.797px;
    line-height: 20px;
}

.reviews-google {
    display: flex;
    align-items: center;
    gap: 4.01px;
}

.google-text {
    color: #000;
    font-weight: 700;
    font-size: 13.781px;
    line-height: 20px;
}

.brokers-star-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-yellow {
    width: 16px;
    height: 16px;
}

/* ===================================
   TRUSTED BY SECTION
   =================================== */
.trusted-by-section {
    background-color: #f9fafb;
    padding: 48px 20px;
}

.trusted-by-container {
    max-width: 1280px;
    margin: 0 auto;
}

.trusted-by-grid {
    display: flex;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.trusted-by-text p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.65;
}

.trusted-by-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.brand-name {
    color: #9ca3af;
    font-size: 13px;
}

.trusted-by-count {
    text-align: center;
}

.count-number {
    font-weight: 500;
    font-size: 14px;
    color: #4b5563;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    width: 100%;
    background-color: white;
    margin: 0;
    padding: 0;
}

.problem-section-inner {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-cards-header {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;  /* Changed from left */
}

.problem-header-title {
    font-size: 60px;  /* Increased from 32px */
    color: #1a1a1a;   /* Darker black */
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin-bottom: 36px;
}

.problem-header-description {
    font-size: 18px;  /* Increased from 16px */
    color: #666;      /* Better readability */
    max-width: 700px;
    margin: 0 auto;
}

.problem-left {
    background-color: #ffffff;
    padding: 60px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-left-content {
    max-width: 640px;
    width: 100%;
}

.problem-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.problem-heading-pink {
    color: #ee2966;
    display: inline;
}

.problem-heading-black {
    color: #000000;
    display: inline;
}

.problem-text {
    margin-bottom: 20px;
}

.problem-text-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 12px 0;
}

.problem-text-regular {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.problem-text-cta {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
}

.problem-btn {
    display: inline-block;
    background-color: #ee2966;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.problem-btn:hover {
    background-color: #d91456;
}

.problem-right {
    background-color: #ee2966;
    padding: 60px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-right-inner {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-doctor-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
}

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution-section-new {
    background-color: #2c2c2c;
    width: 100%;
    margin: 0;
    padding: 0;
}

.solution-section-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.solution-left {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.solution-right {
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-content-wrap {
    max-width: 640px;
    width: 100%;
}

.solution-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.solution-heading-pink {
    color: #ee2966;
}

.solution-text {
    margin-bottom: 20px;
}

.solution-text-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin: 0 0 12px 0;
}

.solution-text-regular {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
}

.solution-text-assurance {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin-bottom: 24px;
}

.solution-btn {
    display: inline-block;
    background-color: #ee2966;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.solution-btn:hover {
    background-color: #d91456;
}

/* ===================================
   BOTTOM LINE SECTION (Business Page Only)
   =================================== */
.bottom-line-section {
    position: relative;
    padding: 80px 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.bottom-line-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.bottom-line-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Text Content */
.bottom-line-text {
    max-width: 100%;
}

.bottom-line-kicker {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #ee2966;
    margin: 0 0 16px 0;
}

.bottom-line-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 24px 0;
}

.bottom-line-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 32px 0;
    max-width: 520px;
}

.bottom-line-button {
    display: inline-block;
    background-color: #ee2966;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.bottom-line-button:hover {
    background-color: #d91f57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 41, 102, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Image Styles */
.bottom-line-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.bottom-line-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #f3f4f6;
}

.bottom-line-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Pink Geometric Shape */
.bottom-line-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: #ee2966;
    border-radius: 24px;
    z-index: 1;
    opacity: 0.95;
    pointer-events: none;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .bottom-line-section {
        padding: 100px 20px;
    }

    .bottom-line-kicker {
        font-size: 38px;
    }

    .bottom-line-title {
        font-size: 44px;
    }

    .bottom-line-description {
        font-size: 19px;
    }

    .bottom-line-content {
        gap: 60px;
    }

    .bottom-line-shape {
        width: 500px;
        height: 500px;
        bottom: -150px;
        right: -150px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .bottom-line-section {
        padding: 120px 20px;
    }

    .bottom-line-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .bottom-line-kicker {
        font-size: 42px;
    }

    .bottom-line-title {
        font-size: 52px;
    }

    .bottom-line-description {
        font-size: 20px;
    }

    .bottom-line-image-wrapper {
        max-width: 600px;
    }

    .bottom-line-shape {
        width: 600px;
        height: 600px;
        bottom: -200px;
        right: -200px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .bottom-line-shape {
        width: 100%;
        height: 500px;
        bottom: -100px;
        right: -750px;
    }
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {
    background-color: white;
    padding: 48px 20px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-title {
    color: #ee2966;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hidden-mobile {
    display: none;
}

.stats-description {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background-color: #efefef;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #000000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4b5563;
}

/* ===================================
   DIFFERENT SECTION (What Makes Reef Different)
   =================================== */
.different-section {
    background-color: white;
    padding: 48px 20px;
}

.different-container {
    max-width: 1280px;
    margin: 0 auto;
}

.different-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.different-image {
    width: 100%;
}

.different-image-wrap {
    max-width: 610px;
    margin: 0 auto;
}

.different-image-wrap .image-placeholder {
    width: 100%;
    height: 550px;
    background-color: #e5e7eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
   width: auto;
   height: 100%;
}

.different-content {
    width: 100%;
}

.different-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 24px;
}

.different-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.different-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

.different-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background-color: #ee2966;
    border-radius: 50%;
}

.different-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-small,
.btn-secondary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary-small {
    background-color: #ee2966;
    color: white;
}

.btn-primary-small:hover {
    background-color: #d91456;
}

.btn-secondary-small {
    background-color: white;
    border: 2px solid #d1d5db;
    color: #374151;
}

.btn-secondary-small:hover {
    border-color: #9ca3af;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    background-color: #f3f4f6;
    padding: 64px 20px 80px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-header p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.size-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.size-btn {
    background-color: rgba(238, 41, 102, 0.05);
    border: none;
    color: #ee2966;
    padding: 8px 32px;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
}

.size-btn:hover,
.size-btn.active {
    background-color: rgba(238, 41, 102, 0.1);
    opacity: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-plan-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #ee2966;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.price-from-label {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 4px;
    font-weight: 400;
}

.plan-price {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 32px;
    line-height: 1;
}

.price-amount {
    font-weight: 700;
    font-size: 52px;
    color: #111827;
    letter-spacing: -0.02em;
}

.price-period {
    font-weight: 400;
    font-size: 28px;
    color: #6b7280;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 0;
}

.benefit-item.benefit-bold {
    font-weight: 600;
    color: #111827;
}

.benefit-item.benefit-disabled {
    color: #9ca3af;
    text-decoration: line-through;
}

/* ===================================
   POWERED SECTION
   =================================== */
.powered-section {
    background-color: #262325;
    padding: 90px 20px;
}

.powered-container {
    max-width: 1280px;
    margin: 0 auto;
}

.powered-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.powered-content {
    width: 100%;
}

.powered-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.powered-title .highlight {
    color: #ee2966;
}

.powered-description {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

.powered-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.powered-image {
    width: 100%;
}

.powered-image-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.powered-image-wrap .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #3c3c3c;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-works-section {
    background-color: white;
    padding: 64px 20px;
}

.how-works-container {
    max-width: 1280px;
    margin: 0 auto;
}

.how-works-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.how-works-image {
    width: 100%;
}

.how-works-image-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.how-works-image-wrap .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e5e7eb;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.how-works-content {
    width: 100%;
}

.how-works-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 32px;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #ee2966;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.how-works-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===================================
   HOW IT WORKS SECTION (PINK BACKGROUND)
   =================================== */
.how-works-section-pink {
    position: relative;
    background-color: #ee2966;
    padding: 100px 32px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .how-works-section-pink {
        padding: 60px 20px;
    }
}

.how-works-pink-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-works-pink-header {
    position: relative;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .how-works-pink-header {
        margin-bottom: 40px;
    }
}

.how-works-pink-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1;
    color: white;
    margin: 0;
    text-transform: lowercase;
}

@media (max-width: 1023px) {
    .how-works-pink-title {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .how-works-pink-title {
        font-size: 42px;
    }
}

.how-works-pink-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    display: block;
}

@media (max-width: 767px) {
    .how-works-pink-image {
        display: none;
    }
}

.how-works-pink-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
}

.how-works-pink-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .how-works-pink-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.how-works-pink-card {
    color: white;
}

.how-works-pink-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    margin: 0 0 16px 0;
}

.how-works-pink-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 767px) {
    .how-works-pink-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .how-works-pink-card p {
        font-size: 14px;
    }
}

.how-works-pink-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
}

@media (max-width: 767px) {
    .how-works-pink-cta {
        margin-top: 32px;
        justify-content: center;
    }
}

.btn-explore-white {
    background-color: white;
    color: #ee2966;
    padding: 16px 36px;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-explore-white:hover {
    background-color: #f9f9f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .btn-explore-white {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===================================
   HOW REEF HEALTH WORKS CARDS SECTION
   =================================== */
.reef-health-works-cards {
    margin-top: 96px;
}

@media (max-width: 1023px) {
    .reef-health-works-cards {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .reef-health-works-cards {
        margin-top: 64px;
    }
}

.reef-health-works-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: white;
    margin: 0 0 56px 0;
    text-align: left;
}

@media (max-width: 1023px) {
    .reef-health-works-title {
        font-size: 36px;
        margin-bottom: 48px;
    }
}

@media (max-width: 767px) {
    .reef-health-works-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.reef-health-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

@media (max-width: 1023px) {
    .reef-health-works-grid {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .reef-health-works-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.reef-health-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
}

@media (max-width: 1023px) {
    .reef-health-card {
        padding: 36px;
    }
}

@media (max-width: 767px) {
    .reef-health-card {
        padding: 32px;
    }
}

.reef-health-icon {
    margin-bottom: 24px;
}

.reef-health-icon svg {
    width: 48px;
    height: 48px;
}

.reef-health-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #111827;
    margin: 0 0 12px 0;
}

@media (max-width: 1023px) {
    .reef-health-card h4 {
        font-size: 20px;
    }
}

.reef-health-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 1023px) {
    .reef-health-card p {
        font-size: 15px;
    }
}

/* ===================================
   EVERYDAYCARE SECTION
   =================================== */
.everydaycare-section {
    background-color: white;
    padding: 64px 20px;
}

.everydaycare-container {
    max-width: 1280px;
    margin: 0 auto;
}

.everydaycare-header {
    text-align: center;
    margin-bottom: 48px;
}

.everydaycare-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
}

.everydaycare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.everydaycare-card {
    background-color: #f3f4f6;
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

/* ===================================
   MEMBER CTA SECTION
   =================================== */
.member-cta-section {
    background-color: #ee2966;
    padding: 64px 20px;
    text-align: center;
}

.member-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.member-cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.member-cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-white {
    display: inline-block;
    background-color: white;
    color: #ee2966;
    padding: 16px 32px;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

/* ===================================
   FAQ SECTION
   =================================== */

/* Strong Reset for FAQ Section - Override WordPress defaults */
.faq-section * {
    box-sizing: border-box;
}

.faq-section button,
.faq-section .faq-question,
.faq-section .faq-show-more,
.faq-section .faq-cta-button {
    /* Reset all button defaults */
    all: unset;
    box-sizing: border-box;
}

.faq-section {
    background-color: #ffffff !important;
    padding: 80px 20px;
}

.faq-section .faq-container {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-section .faq-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Left Column - Image & CTA */
.faq-section .faq-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-section .faq-image-card {
    background: #ee2966;
    border-radius: 24px;
    overflow: hidden;
    max-height: 460px;
    width: 100%;
}

.faq-section .faq-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #d91d59;
}

.faq-section .faq-cta-button {
    all: revert;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px 32px !important;
    margin: 0 !important;
    background-color: transparent !important;
    border: 2px solid #ee2966 !important;
    border-radius: 9999px !important;
    color: #ee2966 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: normal !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
    box-shadow: none !important;
    outline: none !important;
}

.faq-section .faq-cta-button:hover {
    background-color: #ee2966 !important;
    color: white !important;
}

/* Right Column - FAQ Accordion */
.faq-section .faq-right {
    width: 100%;
}

.faq-section .faq-heading {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 36px !important;
    line-height: 1.2 !important;
    color: #1f2937 !important;
    margin: 0 0 32px 0 !important;
}

.faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-section .faq-item {
    border-bottom: 1px solid #e5e7eb;
    transition: opacity 0.3s ease;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.faq-section .faq-item-hidden {
    display: none !important;
}

.faq-section .faq-item.faq-item-show {
    display: block !important;
}

.faq-section .faq-question {
    all: revert;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-align: left !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #1f2937 !important;
    transition: color 0.3s !important;
    outline: none !important;
}

.faq-section .faq-question:hover {
    color: #ee2966 !important;
    background: transparent !important;
}

.faq-section .faq-question:focus {
    outline: none;
    box-shadow: none !important;
}

.faq-section .faq-question span {
    flex: 1;
    padding-right: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
}

.faq-section .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #1f2937;
}

.faq-section .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-section .faq-item.faq-active .faq-answer {
    max-height: 2000px;
    transition: max-height 0.5s ease;
}

.faq-section .faq-answer-content {
    padding: 0 0 24px 0;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #6b7280 !important;
}

.faq-section .faq-answer-content strong {
    color: #1f2937 !important;
    font-weight: 600 !important;
}

.faq-section .faq-show-more {
    all: revert;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 32px !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 14px 28px !important;
    background-color: transparent !important;
    border: 2px solid #ee2966 !important;
    border-radius: 9999px !important;
    color: #ee2966 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: normal !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    box-shadow: none !important;
    outline: none !important;
}

.faq-section .faq-show-more:hover {
    background-color: #ee2966 !important;
    color: white !important;
}

.faq-section .faq-show-more:focus {
    outline: none;
    box-shadow: none !important;
}

.faq-section .faq-show-more svg {
    transition: transform 0.3s;
}

.faq-section .faq-show-more.faq-expanded svg {
    transform: rotate(180deg);
}

/* ===================================
   FEATURES SECTION (Generic)
   =================================== */
.features-section {
    background-color: #f9fafb;
    padding: 64px 20px;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
}

.features-header p {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CTA SECTION (Generic)
   =================================== */
.cta-section {
    background-color: #ee2966;
    padding: 64px 20px;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px;
    max-width: 600px;
}

/* ===================================
   HOW IT WORKS SECTION (PINK BACKGROUND)
   =================================== */
.how-it-works-section {
    position: relative;
    background-color: #ee2966;
    padding: 80px 20px;
    overflow: hidden;
}

.how-it-works-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.how-it-works-header {
    position: relative;
    margin-bottom: 48px;
}

.how-it-works-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: white;
    margin: 0;
    text-transform: lowercase;
}

.how-it-works-image {
    position: absolute;
    right: 0;
    top: -20px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    display: none;
}

.how-it-works-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.how-it-works-card {
    color: white;
}

.how-it-works-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
    margin: 0 0 12px 0;
}

.how-it-works-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.how-it-works-cta {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.btn-explore {
    background-color: white;
    color: #ee2966;
    padding: 14px 28px;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-explore:hover {
    background-color: #f9fafb;
}

/* ===================================
   PROBLEM CARDS SECTION (New Design)
   =================================== */
.problem-cards-section {
    background-color: white;
    padding: 80px 20px;
}

.problem-cards-container {
    max-width: 1280px;
    margin: 0 auto;
}

.problem-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.problem-card {
    background-color: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.problem-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(238, 41, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 12px 0;
}

.problem-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* ===================================
   FLIP THE MODEL SECTION
   =================================== */
.flip-model-section {
    background: linear-gradient(135deg, #ee2966 0%, #d91456 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.flip-model-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.flip-model-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.flip-model-header {
    text-align: center;
    margin-bottom: 56px;
}

.flip-model-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 9999px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.flip-model-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: white;
    margin: 0 0 16px 0;
}

.flip-model-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.flip-model-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.flip-model-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.flip-model-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flip-model-card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.flip-model-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: white;
    margin: 0 0 12px 0;
}

.flip-model-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   TABLET BREAKPOINT (768px+)
   =================================== */
@media (min-width: 768px) {
    /* Hero Section */
    .page-hero {
        min-height: 700px;
        padding: 80px 32px;
    }
    
    .page-hero-grid {
        flex-direction: row;
        gap: 48px;
    }
    
    .page-hero-image-col {
        flex: 1;
        order: 1;
    }
    
    .page-hero-content-col {
        flex: 1;
        order: 2;
    }
    
    .page-hero h1 {
        font-size: 40px;
        margin-bottom: 32px;
    }
    
    .page-hero-description {
        margin-bottom: 32px;
        font-size: 16px;
    }
    
    .benefits-grid {
        gap: 16px 32px;
        margin-bottom: 32px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
    }
    
    .benefit-text {
        font-size: 13px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 18px 32px;
        font-size: 16px;
    }
    
    .floating-badges {
        display: flex;
    }
    
    .floating-badge-text {
        font-size: 13px;
    }
    
    .hidden-mobile {
        display: inline;
    }
    
    /* Problem Section */
    .problem-left {
        padding: 80px 40px;
    }
    
    .problem-heading {
        font-size: 40px;
        margin-bottom: 28px;
    }
    
    .problem-text {
        margin-bottom: 24px;
    }
    
    .problem-text-bold,
    .problem-text-regular {
        font-size: 16px;
    }
    
    .problem-text-cta {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .problem-btn {
        font-size: 16px;
        padding: 16px 36px;
    }
    
    /* Problem Cards Section */
    .problem-cards-section {
        padding: 96px 32px;
    }
    
    .problem-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .problem-card {
        padding: 36px 28px;
    }
    
    /* Flip Model Section */
    .flip-model-section {
        padding: 96px 32px;
    }
    
    .flip-model-title {
        font-size: 42px;
    }
    
    .flip-model-subtitle {
        font-size: 18px;
    }
    
    .flip-model-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .flip-model-card {
        padding: 36px 28px;
    }
    
    .problem-right {
        padding: 80px 40px;
    }
    
    .problem-doctor-img {
        max-width: 450px;
    }
    
    /* Solution Section */
    .solution-section-inner {
        flex-direction: row;
        padding: 60px 32px;
    }
    
    .solution-left,
    .solution-right {
        flex: 1;
        padding: 20px;
    }
    
    .solution-heading {
        font-size: 34px;
    }
    
    .solution-text-bold,
    .solution-text-regular,
    .solution-text-assurance {
        font-size: 15px;
    }
    
    .solution-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    /* Bottomline Section */
    .bottomline-grid {
        flex-direction: row;
        gap: 48px;
    }
    
    .bottomline-image,
    .bottomline-content {
        flex: 1;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    /* Different Section */
    .different-grid {
        flex-direction: row;
        gap: 48px;
    }
    
    .different-image,
    .different-content {
        flex: 1;
    }
    
    .different-buttons {
        flex-direction: row;
    }
    
    /* Pricing Section */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .pricing-plan-card {
        padding: 48px 36px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 56px;
    }
    
    .benefit-item {
        font-size: 15.5px;
    }
    
    /* Powered Section */
    .powered-grid {
        flex-direction: row;
    }
    
    .powered-content,
    .powered-image {
        flex: 1;
    }
    
    .powered-buttons {
        flex-direction: row;
    }
    
    /* How Works Section */
    .how-works-grid {
        flex-direction: row;
    }
    
    .how-works-image,
    .how-works-content {
        flex: 1;
    }
    
    .how-works-buttons {
        flex-direction: row;
    }
    
    /* How Works Section Pink */
    .how-works-section-pink {
        padding: 100px 32px;
    }
    
    .how-works-pink-title {
        font-size: 72px;
    }
    
    .how-works-pink-image {
        display: block;
        width: 300px;
        height: 300px;
    }
    
    .how-works-pink-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .how-works-pink-card h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .how-works-pink-card p {
        font-size: 15px;
    }
    
    .how-works-pink-cta {
        margin-top: 48px;
    }
    
    .btn-explore-white {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    /* Reef Works Grid */
    .reef-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* EverydayCare Grid */
    .everydaycare-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Features Section */
    .features-section {
        padding: 96px 32px;
    }
    
    .features-header h2 {
        font-size: 44px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 96px 32px;
    }
    
    .cta-section h2 {
        font-size: 48px;
    }
    
    .cta-section p {
        font-size: 20px;
    }
    
    /* How It Works Section */
    .how-it-works-section {
        padding: 100px 32px;
    }
    
    .how-it-works-title {
        font-size: 72px;
    }
    
    .how-it-works-image {
        display: block;
        width: 300px;
        height: 300px;
        right: 10%;
        top: -40px;
    }
    
    .how-it-works-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .how-it-works-card h3 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    .how-it-works-card p {
        font-size: 16px;
    }
    
    .how-it-works-cta {
        margin-top: 48px;
    }
    
    .btn-explore {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    /* FAQ Section */
    .faq-section .faq-heading {
        font-size: 42px !important;
    }
}

/* ===================================
   DESKTOP BREAKPOINT (1024px+)
   =================================== */
@media (min-width: 1024px) {
    /* Hero Section */
    .page-hero {
        min-height: 800px;
        padding: 80px 32px;
    }
    
    .page-hero h1 {
        font-size: 55px;
    }
    
    .page-hero-description {
        font-size: 17px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 17px;
    }
    
    .floating-badges {
        left: -40px;
        width: 193px;
    }
    
    .floating-badge {
        padding: 16px 20px;
    }
    
    /* Problem Section */
    .problem-left {
        padding: 100px 60px;
    }
    
    .problem-heading {
        font-size: 48px;
        margin-bottom: 32px;
    }
    
    .problem-text {
        margin-bottom: 28px;
    }
    
    .problem-text-bold,
    .problem-text-regular {
        font-size: 17px;
    }
    
    .problem-text-cta {
        font-size: 17px;
        margin-bottom: 32px;
    }
    
    .problem-btn {
        font-size: 17px;
        padding: 18px 40px;
    }
    
    .problem-right {
        padding: 100px 60px;
    }
    
    .problem-doctor-img {
        max-width: 420px;
    }
    
    /* Solution Section */
    .solution-section-inner {
        padding: 120px 60px;
        gap: 36px;
    }
    
    .solution-left {
        flex: 0 0 60%;
    }
    
    .solution-right {
        flex: 0 0 40%;
    }
    
    .solution-heading {
        font-size: 42px;
    }
    
    .solution-text-bold,
    .solution-text-regular,
    .solution-text-assurance {
        font-size: 16px;
    }
    
    .solution-btn {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .page-template-page-franchise .pricing-grid {
       grid-template-columns: repeat(3, 1fr);
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* How It Works Section */
    .how-it-works-section {
        padding: 120px 32px;
    }
    
    .how-it-works-title {
        font-size: 96px;
    }
    
    .how-it-works-image {
        width: 400px;
        height: 400px;
    }
    
    .how-it-works-grid {
        gap: 48px;
    }
    
    /* Problem Cards Section */
    .problem-cards-section {
        padding: 120px 60px;
    }
    
    .problem-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .problem-card {
        padding: 40px 32px;
    }
    
    .problem-card-title {
        font-size: 21px;
    }
    
    .problem-card-text {
        font-size: 15px;
    }
    
    /* Flip Model Section */
    .flip-model-section {
        padding: 120px 60px;
    }
    
    .flip-model-title {
        font-size: 48px;
    }
    
    .flip-model-subtitle {
        font-size: 19px;
    }
    
    .flip-model-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .flip-model-card {
        padding: 40px 32px;
    }
    
    .flip-model-card-title {
        font-size: 20px;
    }
    
    .flip-model-card-text {
        font-size: 15px;
    }
    
    .how-it-works-card h3 {
        font-size: 28px;
    }
    
    /* How Works Section Pink */
    .how-works-section-pink {
        padding: 120px 32px;
    }
    
    .how-works-pink-title {
      display: block;
      width: 100%;
      text-align: left;
      font-weight: 700;
      white-space: nowrap;
      line-height: 1;
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      letter-spacing: -1px;
    
      /* Responsive scaling */
      font-size: clamp(2rem, 12vw, 9rem);
    }
    
    .how-works-pink-image {
        width: 400px;
        height: 400px;
    }
    
    .how-works-pink-grid {
        gap: 48px;
    }
    
    .how-works-pink-card h3 {
        font-size: 24px;
    }
    
    .how-works-pink-card p {
        font-size: 16px;
    }
    
    /* FAQ Section */
    .faq-section .faq-grid {
        flex-direction: row;
        gap: 80px;
    }
    
    .faq-section .faq-left {
        flex: 0 0 380px;
    }
    
    .faq-section .faq-right {
        flex: 1;
    }
    
    .faq-section .faq-heading {
        font-size: 48px !important;
    }
}

/* ===================================
   PROBLEM/SOLUTION GRID LAYOUT (NEW)
   For Business and Individuals Pages
   =================================== */
.problem-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.problem-content {
    max-width: 640px;
}

.problem-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
}

.problem-title .highlight {
    color: #ee2966;
}

.problem-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 32px;
}

.problem-description p {
    margin-bottom: 16px;
}

.problem-description p:last-child {
    margin-bottom: 0;
}

.mb-16 {
    margin-bottom: 16px;
}

.font-bold {
    font-weight: 700;
}

.font-normal {
    font-weight: 400;
}

.problem-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.stat-card {
    background-color: #ee2966;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.stat-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: white;
    margin: 0;
}

/* Solution Section Grid */
.solution-section {
    background-color: #2c2c2c;
    padding: 60px 20px;
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.solution-image {
    width: 100%;
}

.solution-image-wrap {
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.image-placeholder {
    background-color: #3c3c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    min-height: 400px;
    border-radius: 16px;
}

.solution-content {
    max-width: 640px;
}

.solution-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
}

.solution-title .highlight {
    color: #ee2966;
}

.solution-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 32px;
}

.solution-description p {
    margin-bottom: 16px;
}

.solution-description p:last-child {
    margin-bottom: 0;
}

.solution-description strong {
    color: white;
    font-weight: 700;
}

/* Member CTA Box */
.member-cta-box {
    background-color: #ee2966;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
}

.member-cta-box h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: white;
    margin-bottom: 16px;
}

.member-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Responsive Styles for Problem/Solution Grid */
@media (min-width: 768px) {
    .problem-container,
    .solution-container {
        padding: 80px 32px;
    }
    
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .problem-title,
    .solution-title {
        font-size: 40px;
    }
    
    .problem-description,
    .solution-description {
        font-size: 16px;
    }
    
    .stat-text {
        font-size: 40px;
    }
}

@media (min-width: 1024px) {
    .problem-container,
    .solution-container {
        padding: 100px 60px;
    }
    
    .problem-grid,
    .solution-grid {
        gap: 80px;
    }
    
    .problem-title,
    .solution-title {
        font-size: 48px;
    }
    
    .problem-description,
    .solution-description {
        font-size: 17px;
    }
    
    .stat-card {
        padding: 64px 48px;
    }
    
    .stat-text {
        font-size: 48px;
    }
}