/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {

    /* Global mobile fixes */
    html,
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    #site-wrapper {
        max-width: 100vw;
        /* overflow-x: hidden; */
    }

    /* Ensure all sections don't overflow */
    section,
    div,
    .container,
    .inner {
        max-width: 100%;
        /* overflow-x: hidden; */
    }

    /* Fix any images or media */
    img,
    video,
    iframe {
        height: auto;
    }

    /* Adjust padding for all sections */
    .hero {
        /* padding: 20px 16px 40px; */
        min-height: auto;
        background: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);
        /* position: relative; */
    }

    .hero-bg {
        display: none;
    }

    .hero-bg-mobile {
        display: block;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        /* position: relative; */
        z-index: 1;
    }

    .hero-badge {
        font-size: 14px;
        padding: 6px 14px;
        margin-bottom: 12px;
        display: inline-block;
        border-radius: 20px;
        font-weight: 700;
    }

    .hero-title-main {
        font-size: 28px;
        line-height: 1.4;
        margin: 0;
        letter-spacing: 0px;
        text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.2), 
                     1px 1px 2px rgba(0, 0, 0, 0.15);
    }

    .hero-title-line {
        display: inline-block;
        background: linear-gradient(to top, #F7C6E5 0%, #F7C6E5 35%, transparent 35%);
        padding: 0 10px 5px;
        border-radius: 10px;
    }

    .hero-title-sub {
        font-size: 28px;
        line-height: 1.4;
        margin: 0 0 20px 0;
    }

    .hero-cta-wrapper {
        position: relative;
        margin-bottom: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-cta-button {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        padding: 18px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 3px solid #FFFFFF;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 0 0 3px #9CE1AD, 0 8px 18px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    .hero-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px #9CE1AD, 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    .hero-cta-icon {
        width: 28px;
        height: 28px;
    }

    .hero-cta-badge {
        position: absolute;
        width: 90px;
        height: auto;
        top: -25px;
        right: -75px;
        z-index: 1;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-stat-item {
        min-width: auto;
        width: 100%;
        padding: 2px 20px;
    }

    .hero-stat-label {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .hero-stat-value {
        font-size: 24px;
        font-weight: 900;
    }

    /* Hero Partner Banner (Blue box) */
    .hero-partner-banner {
        background: linear-gradient(135deg, #3B83F6 0%, #2563EB 100%);
        padding: 5px 20px;
        border-radius: 12px;
        margin-bottom: 24px;
        text-align: center;
        box-shadow: 0 6px 16px rgba(59, 131, 246, 0.4);
        border: 2px solid #FFFFFF;
    }

    .hero-partner-text {
        color: #FFFFFF;
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
        font-weight: 700;
    }

    .hero-partner-em {
        font-size: 30px;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Hero Points */
    .hero-points {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-point {
        padding: 5px 10px;
        max-width: 340px;
    }

    .hero-point-body {}

    .hero-point-icon-wrap {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-point-icon {
        width: 64px;
        height: 64px;
    }

    .hero-point-text-wrap {
        flex: 1;
    }

    .hero-point-title {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .hero-point-text {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }

    .behavior-cta-section {
        padding: 5px 16px;
    }

    .behavior-cta {
        max-width: 100%;
    }

    .behavior-cta-text {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center;
        font-weight: 600;
    }

    .behavior-cta-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .behavior-cta-button {
        font-size: 18px;
        padding: 16px 24px;
        width: auto;
        max-width: 100%;
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        color: #FFFFFF;
        border: 3px solid #FFFFFF;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 0 0 3px #9CE1AD, 0 8px 18px rgba(0, 0, 0, 0.18);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .behavior-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px #9CE1AD, 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    .behavior-cta-icon {
        width: 24px;
        height: 24px;
    }

    .behavior-cta-badge {
        width: 80px;
        top: -20px;
        right: -10px;
    }

    .behavior-banner {
        /* margin-bottom: 24px; */
    }

    .behavior-banner-bg {
        width: auto;
        height: auto;
        display: none;
    }

    .behavior-banner-bg-mobile {
        display: block;
        width: 430px;
    }


    .behavior-banner-content {
        padding: 20px 16px;
    }

    .behavior-banner-title {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .behavior-banner-title strong {
        font-size: 28px;
    }

    .solution-intro {
        font-size: 16px;
    }

    .solution-badge {
        font-size: 20px;
        margin: 0;
    }

    .behavior-boxes {
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .behavior-box {
        max-width: 100%;
        width: 100%;
        align-self: stretch !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 16px;
        margin-bottom: 10px;
        box-shadow: none;
        border-radius: 20px 20px 20px 0;
    }

    .behavior-box-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .behavior-box-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .behavior-box-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .solution-section {
        padding: 40px 12px;
    }

    .solution-title {
        font-size: 36px;
    }

    .solution-subtitle {
        font-size: 18px;
    }

    .solution-points {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 10px;
    }

    .checklist-title {
        font-size: 28px;
        
    }

    .checklist-badge {
        font-size: 20px;
        line-height: 1.5;
        margin-top: 0;
    }
    
    .checklist-badge::after {
        height: 14px;

    }

    .checklist-columns {
        display: block;

    }

    .checklist-card-husband {
        margin-bottom: 20px;
    }

    .checklist-section {
        padding: 20px 12px;
    }

    .checklist-note-text {
        font-size: 18px;
    }

    .solution-point-image {
        height: 180px;
    }

    .however-section {
        padding: 40px 16px 50px;
        background-image: none;
    }

    /* Hide desktop version on mobile */
    .however-inner {
        display: none;
    }

    /* Show mobile version */
    .however-bottom-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-width: 100%;
    }

    /* Top green bubble */
    .however-mobile-top-bubble {
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        background: #DCF7E1;
        color: #047857;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Speech bubbles */
    .however-mobile-bubble {
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.6;
        text-align: left;
    }

    .however-mobile-bubble-blue {
        background: #D1ECFF;
        color: #1E40AF;
        border-radius: 10px 10px 0 10px;
    }

    .however-mobile-bubble-pink {
        background: #FBE6EF;
        color: #BE185D;
        border-radius: 10px 10px 10px 0;
    }


    .however-mobile-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Bottom text */
    .however-mobile-bottom-text {
        color: #FE4BA0;
        font-size: 28px;
        font-weight: 900;
        text-align: center;
        margin-top: 20px;
    }

    .final-cta-section {
        padding: 40px 12px 50px;
    }

    .final-cta-section::before {
        border-left-width: 35px;
        border-right-width: 35px;
        border-top-width: 35px;
        top: -1px;
    }

    .final-cta-inner {
        padding-top: 15px;
    }

    .final-cta-badge {
        font-size: 18px;
    }

    .final-cta-subtitle {
        font-size: 20px;
    }
    

    .final-cta-title {
        font-size: 28px;
    }

    .satisfaction-section-top,
    .satisfaction-section-bottom {
        padding: 40px 12px;
    }

    .satisfaction-title-line1 {
        font-size: 28px;
    }

    .satisfaction-title-line2 {
        font-size: 20px;
    }

    .satisfaction-rate-box {
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .satisfaction-achievement-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 16px;
        font-size: 16px;
    }

    .satisfaction-rate-text {
        font-size: 22px;
        margin-top: 0px;
    }

    .satisfaction-rate-no1,
    .satisfaction-rate-percent {
        font-size: 36px;
    }

    .satisfaction-voices-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .satisfaction-chart-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .satisfaction-pie-chart svg {
        width: 240px;
        height: 240px;
    }

    .satisfaction-legend {
        width: 100%;
        max-width: 280px;
    }

    .satisfaction-legend-text {
        font-size: 16px;
    }

    .satisfaction-reasons-box {
        padding: 50px 20px 30px;
    }

    .satisfaction-reasons-title-banner {
        font-size: 20px;
        padding: 10px 30px;
        top: -15px;
    }

    .satisfaction-reasons-intro {
        font-size: 18px;
        margin: 15px 0 20px 0;
    }

    .satisfaction-reasons-key {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .satisfaction-pricing-box {
        padding: 14px 24px;
        margin-bottom: 24px;
    }

    .satisfaction-pricing-text {
        font-size: 32px;
    }

    .satisfaction-features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .satisfaction-features-list li {
        font-size: 16px;
    }

    .satisfaction-check-icon {
        width: 24px;
        height: 24px;
    }

    .info-section,
    .contact-section {
        padding: 40px 12px 0;
    }

    .info-box {
        padding: 30px 24px 30px;
        margin-bottom: 40px;
    }

    .info-box-banner {
        font-size: 20px;
        padding: 8px 25px;
        top: -15px;
    }

    .info-box-item {
        gap: 12px;
        margin-bottom: 20px;
    }

    .info-box-number {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .info-box-text {
        font-size: 16px;
        padding-top: 0;
    }

    .info-box-text-bottom {
        font-size: 16px;
    }

    .contact-cta-section {
        flex-direction: column;
        gap: 40px;
    }

    .contact-title {
        font-size: 18px;
    }

    .phone-number {
        font-size: 36px;
    }

    .contact-hours,
    .contact-free,
    .contact-cta-text {
        font-size: 16px;
        text-align: center;
    }

    .phone-icon {
        width: 36px;
        height: 36px;
    }

    .contact-cta-button {
        font-size: 18px;
        padding: 16px 24px;
        border: 3px solid #FFFFFF;
        box-shadow: 0 0 0 3px #9CE1AD, 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .contact-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px #9CE1AD, 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    .contact-cta-badge {
        width: 90px;
        top: -25px;
        right: -60px;
    }

    .contact-image-wrapper {
        max-width: 100%;
        height: 350px;
        display: none;
    }

    .contact-image-bg {
        width: 300px;
        height: 300px;
        right: -30px;
    }

    .use-cases-section {
        padding: 40px 12px;
    }

    .use-cases-title {
        font-size: 40px;
    }

    .use-cases-icon {
        margin-bottom: 0;
    }

    .use-cases-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .use-case-card {
        padding: 10px 0;
    }

    .case-number {
        font-size: 20px;
    }

    .case-headline {
        font-size: 26px;
    }

    .case-demographic {
        font-size: 16px;
    }

    .case-description {
        font-size: 18px;
        height: auto;
    }

    .case-tag-text {
        font-size: 16px;
    }

    .faq-section {
        padding: 40px 12px;
    }

    .faq-subtitle {
        font-size: 20px;
    }

    .faq-title {
        font-size: 40px;
    }

    .faq-item {
        padding: 20px 16px;
    }

    .faq-question {
        gap: 12px;
    }

    .faq-q-icon,
    .faq-a-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .faq-q-text {
        font-size: 20px;
    }

    .faq-a-text {
        font-size: 18px;
    }

    .faq-answer {
        gap: 12px;
    }

    .final-cta-inquiry-section {
        padding: 40px 12px;
    }

    .final-cta-inquiry-title {
        font-size: 32px;
    }

    .final-cta-inquiry-subtitle {
        font-size: 32px;
    }

    .final-cta-inquiry-card {
        padding: 30px 24px;
    }

    .final-cta-inquiry-promo {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .final-cta-inquiry-button {
        font-size: 18px;
        padding: 16px 28px;
        border: 3px solid #FFFFFF;
        box-shadow: 0 0 0 3px #9CE1AD, 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .final-cta-inquiry-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 0 3px #9CE1AD, 0 10px 22px rgba(0, 0, 0, 0.22);
    }

    .final-cta-inquiry-badge {
        width: 90px;
        top: -30px;
        right: -55px;
    }

    .site-footer {
        padding: 24px 12px;
    }

    .footer-copyright {
        font-size: 14px;
    }

    /* Popup Responsive */
    .popup-modal {
        width: 95%;
        max-width: 95vw;
        max-height: 95vh;
        margin: 0 auto;
        padding: 0;
    }

    .popup-header {
        padding: 16px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-body {
        padding: 20px 16px;
    }

    .popup-main-question {
        font-size: 20px;
    }

    .popup-sub-question {
        font-size: 18px;
    }

    .popup-option {
        font-size: 18px;
        padding: 14px 16px;
    }

    .popup-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .popup-option-full {
        grid-column: 1;
    }

    .form-label {
        font-size: 16px;
    }

    .form-required {
        font-size: 14px;
    }

    .form-input {
        font-size: 16px;
        padding: 12px 16px;
    }

    .form-security-note {
        font-size: 14px;
    }

    .form-checkbox label {
        font-size: 16px;
    }

    .popup-submit-btn {
        font-size: 20px;
        padding: 14px 24px;
    }

    .thankyou-icon,
    .error-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
        margin-bottom: 24px;
    }

    .popup-thankyou,
    .popup-error {
        padding: 32px 16px;
    }

    /* reCAPTCHA Responsive */
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
    
    .chart-container {
        display: block;
    }

    .legend-item {
        margin-left: 50px;
    }
    
    .checklist-list,
    .checklist-card-header {
        padding: 10px;
    }
    .checklist-list li {
        font-size: 18px;
    }

    .final-cta-title-br {
        display: block;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}