/* ========================= 
   HOME PAGE SPECIFIC STYLES
   Updated with Playfair Display Bold for headings and Georgia for body text
   Brand Colors: Lilac (#D2C1FE), Baby Blue (#C1E7EE), Violet (#6B54A6), Denim Blue (#1671B0)
   ========================= */

/* Font & Color Variables */
:root {
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Georgia', serif;

    /* Brand Colors */
    --lilac: #D2C1FE;
    --baby-blue: #C1E7EE;
    --violet: #6B54A6;
    --denim-blue: #1671B0;
}

/* MODIFIED: Added overflow-x property to prevent horizontal scroll */
body {
    overflow-x: clip;
}

/* Typography Overrides for Home Page */
.hero-title,
.hero-subtitle,
.life-areas-left h2,
.therapy-right-title,
.take-control h2,
.transform-left h2,
#pricing .pricing-header h1,
#why-choose-us h2,
#comparison h2,
#testimonials h2,
.hero-card-content h2,
.advertise-title,
.advertise-subtitle,
.advertise-card-content h2 {
    font-family: var(--heading-font) !important;
}

.hero-description,
.life-areas-left p,
.therapy-card span,
.take-control p,
.steps li strong,
.steps li span,
#pricing .pricing-header p,
#pricing .card p,
.testimonial-text,
.user-name,
.advertise-description,
.advertise-card-content p {
    font-family: var(--body-font) !important;
}

/* Hero Section */
.hero {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: linear-gradient(180deg, var(--lilac) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-title {
    color: var(--denim-blue);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--body-font);
    /* Georgia */
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    text-align: center;

    color: rgba(0, 0, 0, 0.9);
    max-width: 90%;
    /* same as home */
    margin: 0 auto;
}


.hero-description {
    color: var(--violet);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* Hero Slider Structure */
.hero-slider-wrapper {
    position: relative;
    max-width: 1189px;
    margin: 0 auto;
    border-radius: var(--radius-xxl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.hero-slides {
    display: flex;
    width: 400%;
    transition: transform 0.6s ease-in-out;
}

.hero-card {
    width: 25%;
    min-width: 25%;
    flex-shrink: 0;
    height: clamp(300px, 40vw, 460px);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(47, 36, 83, .45), rgba(47, 36, 83, .45));
}

.hero-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    width: 90%;
    max-width: 800px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-card-content h2 {
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #F7F4ED;
    margin: 0;
}

.hero-card-content p {
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #F7F4ED;
    margin: 0;
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-dot.active {
    opacity: 1;
}

/* Life Areas Section */
.life-areas {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--baby-blue) 0%, rgba(255, 255, 255, 1) 100%);
}

.life-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.life-areas-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.life-areas-left h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.3;
    text-align: center;
    color: var(--denim-blue);
    margin-bottom: 0.75rem;
}

.life-areas-left .highlight {
    color: var(--denim-blue);
    position: relative;
}

.life-areas-left .highlight::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 35px;
    border-top: 4px solid var(--denim-blue);
    border-radius: 90%;
    margin-top: 2px;
}

.life-areas-left p {
    font-weight: 500;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
    text-align: center;
    color: rgba(75, 85, 99, 1);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.life-areas-left .btn {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 100%;
    letter-spacing: 0.036em;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 1);
    background-color: var(--violet);
}

.therapy-right-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #000;
    text-align: center;
    margin-bottom: 1.5rem;
}


/* ================================================================ */
/* START: Final polished version with reduced card size.            */
/* ================================================================ */

/* --- The Grid Container --- */
.therapy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 350px;
    margin: 0 auto;
    gap: 1.5rem;
}

/* --- The Card Item --- */
.therapy-item {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    z-index: 1;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- The Icon and Title Link --- */
.therapy-card-link {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.therapy-card-link img {
    width: clamp(2rem, 4vw, 2.5rem);
    height: clamp(2rem, 4vw, 2.5rem);
}

.therapy-card-link span {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: var(--body-font);
    font-weight: 500;
}

/* --- The Pop-up Description Box --- */
.therapy-item p {
    position: absolute;
    top: 50%;
    width: 220px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.95);
    z-index: 10;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition-delay: 0.1s;
}

.therapy-cards:hover>.therapy-item:not(:hover) {
    transform: scale(0.9);
    opacity: 0.2;
    filter: blur(1px);
    z-index: 0;
}

.therapy-item:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.therapy-item:hover p {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.therapy-item:nth-child(odd) p {
    left: 100%;
    margin-left: 20px;
}

.therapy-item:nth-child(even) p {
    right: 100%;
    margin-right: 20px;
}


/* Take Control Section */
.take-control {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--lilac) 0%, rgba(255, 255, 255, 1) 100%);
}

.take-control h2 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.3;
    text-align: center;
    color: var(--violet);
    margin-bottom: 1rem;
}

.take-control p {
    font-weight: 500;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 2rem;
}

.preferences-form {
    background: rgba(246, 242, 255, 1);
    border-radius: var(--radius-xxl);
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.2rem);
}

@media (min-width: 769px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-grid label:first-child {
        grid-column: 1 / -1;
    }
}

.field span {
    display: block;
    font-weight: 600;
    color: var(--violet);
    margin-bottom: .35rem;
    font-size: clamp(.85rem, 1.2vw, .95rem);
}

select {
    width: 100%;
    padding: .8rem 1.2rem;
    border: 1px solid #d8ddff;
    border-radius: var(--radius-lg);
    background: #fff;
    font-size: clamp(.9rem, 1.2vw, 1rem);
    font-family: var(--body-font);
}

.form-actions {
    text-align: right;
    margin-top: 1.5rem;
}

/* ========================= */
/* START: TRANSFORM SECTION STYLES (MODIFIED) */
/* ========================= */

.transform {
    padding: clamp(2rem, 5vw, 4rem) 0;
    /* MODIFIED: Reduced padding */
    background: linear-gradient(180deg, var(--baby-blue) 0%, rgba(255, 255, 255, 1) 100%);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    /* MODIFIED: Reduced gap */
    align-items: center;
}

.transform-left h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    /* MODIFIED: Reduced font size */
    line-height: 1.3;
    color: var(--denim-blue);
    margin-bottom: 1.5rem;
    /* MODIFIED: Reduced margin */
}

.steps {
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* MODIFIED: Reduced gap */
    padding-left: 0;
    margin-bottom: 1.5rem;
    /* MODIFIED: Reduced margin */
}

.steps:hover .step-container:not(:hover) {
    opacity: 0.4;
    filter: blur(2px);
}

.step-container {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
}

.step-content {
    position: relative;
    padding: 0.5rem 0.5rem 0.5rem 80px;
    /* MODIFIED: Reduced padding */
    min-height: 60px;
    /* MODIFIED: Reduced min-height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* MODIFIED: Red border only appears on hover */
.step-container:hover .step-content {
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.step-content::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 10px;
    /* MODIFIED: Adjusted position */
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    /* MODIFIED: Reduced size */
    height: 60px;
    /* MODIFIED: Reduced size */
    border-radius: 50%;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 24px;
    /* MODIFIED: Reduced font size */
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.step-container:nth-child(odd) .step-content::before {
    background-color: rgba(219, 239, 250, 0.7);
}

.step-container:nth-child(even) .step-content::before {
    background-color: rgba(233, 232, 245, 1);
}

.step-content strong {
    display: block;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.3rem);
    /* MODIFIED: Reduced font size */
    line-height: 1.3;
    color: rgba(0, 0, 0, 1);
}

.step-content span {
    font-weight: 500;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    /* MODIFIED: Reduced font size */
    line-height: 1.5;
    color: rgba(0, 0, 0, 1);
    opacity: 0.6;
}

.step-popup {
    display: none;
}

.transform-btn {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    letter-spacing: 0.036em;
    padding: 16px 24px;
    background: var(--violet);
    box-shadow: 0 8px 20px rgba(107, 84, 166, .25);
}

.transform-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 1rem 0;
    /* MODIFIED: Reduced padding */
    background: linear-gradient(180deg, var(--lilac) 0%, rgba(255, 255, 255, 0.5) 100%);
    height: 50%;
    max-width: 100%;
    /* MODIFIED: Reduced height */
}

.transform-slides {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.phone-mockup {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 0 1rem;
    /* MODIFIED: Reduced padding */
    box-sizing: border-box;
}

.phone-mockup img {
    max-width: 100%;
    height: 90%;
    object-fit: contain;
    border-radius: 20px;
}

.app-download-slide {
    flex-direction: column;
    padding: 2rem 1rem;
    box-sizing: border-box;
    height: 100%;
}

.app-download-slide h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--denim-blue);
}

.app-download-slide p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.app-download-slide .app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 220px;
}

.app-download-slide .app-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    background: #000;
    color: #fff;
    transition: background-color 0.2s ease;
}

.app-download-slide .app-buttons a:hover {
    background: #333;
}

.app-download-slide .app-buttons svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.app-download-slide .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-download-slide .store-text .small {
    font-size: 10px;
    opacity: 0.8;
}

.app-download-slide .store-text .large {
    font-size: 16px;
    font-weight: bold;
}

.transform-slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.transform-slider-nav .nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-ink);
    opacity: 0.4;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.transform-slider-nav .nav-dot.active {
    opacity: 1;
}

/* ========================= */
/* END: TRANSFORM SECTION STYLES (MODIFIED) */
/* ========================= */


/* ========================= 
   ADVERTISE SECTION (Same as Hero)
   ========================= */

.advertise {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: linear-gradient(180deg, var(--lilac) 0%, rgba(255, 255, 255, 1) 100%);
}

.advertise-title {
    color: var(--denim-blue);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    margin-bottom: 1rem;
}

.advertise-subtitle {
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
    margin-bottom: 1rem;
}

.advertise-description {
    color: var(--violet);
    font-weight: 500;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.advertise-slider-wrapper {
    position: relative;
    max-width: 1189px;
    margin: 0 auto;
    border-radius: var(--radius-xxl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.advertise-slides {
    display: flex;
    width: 400%;
    transition: transform 0.6s ease-in-out;
}

.advertise-card {
    width: 25%;
    min-width: 25%;
    flex-shrink: 0;
    height: clamp(300px, 40vw, 460px);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.advertise-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(47, 36, 83, .45), rgba(47, 36, 83, .45));
}

.advertise-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    width: 90%;
    max-width: 800px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.advertise-card-content h2 {
    font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #F7F4ED;
    margin: 0;
}

.advertise-card-content p {
    font-weight: 400;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #F7F4ED;
    margin: 0;
    line-height: 1.5;
}

.advertise-slider-nav {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.advertise-slider-nav .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0;
    cursor: pointer;
}

.advertise-slider-nav .nav-dot.active {
    opacity: 1;
}

/* ========================= */
/* START: PRICING SECTION STYLES (MODIFIED) */
/* ========================= */

.section-divider {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
    width: 100%;
}

.page-section {
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

#pricing {
    background-color: #fff;
    text-align: center;
}

#pricing .container {
    width: 90%;
    max-width: 1200px;
    /* MODIFIED: Set a max-width for better control */
    margin: 0 auto;
    /* MODIFIED: Center the container */
}

#pricing .pricing-header h1 {
    font-size: clamp(2rem, 5vw, 2.8em);
    color: var(--denim-blue);
    margin-bottom: 8px;
    font-weight: 900;
}

#pricing .pricing-header p {
    font-size: clamp(1.1rem, 3vw, 1.3em);
    color: var(--violet);
    font-weight: 500;
    margin-bottom: 40px;
}

#pricing .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    text-align: left;
    align-items: center;
    /* MODIFIED: Vertically align items in the center */
}

#pricing .card {
    width: 100%;
    max-width: none;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

#pricing .card.traditional {
    border: none;
    border-left: 4px solid #e53935;
    background-color: #FEF6F6;
    margin-top: 0;
    /* MODIFIED: Removed top margin */
}

#pricing .card.traditional h3 {
    color: #e53935;
    font-size: 1.2em;
    font-weight: 800;
    margin: 0 0 10px 0;
}

#pricing .card.traditional p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

#pricing .card.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f9ff;
    border: 1px solid #e0e7ff;
}

#pricing .price {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--denim-blue);
    width: 100%;
}

#pricing .price .currency {
    font-size: 1.0rem;
    vertical-align: super;
}

#pricing .price .amount {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0 0.15rem;
    margin-left: -0.5rem;
}

#pricing .price .per-minute {
    font-size: 1.5rem;
    color: #555;
    font-weight: 500;
}

#pricing .pricing-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    width: 100%;
    color: var(--denim-blue);
    text-align: center;
    margin-bottom: 2rem;
}

#pricing .features-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 30px 0;
    width: 100%;
    justify-content: left;
    flex-wrap: wrap;
    text-align: left;
}

#pricing .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 1em;
    margin-left: 1rem;
}

#pricing .features-list li::before {
    content: '✓';
    color: #2196f3;
    font-weight: bold;
    font-size: 1.2em;
    margin-right: 12px;
}

#pricing .cta-button {
    display: block;
    width: 100%;
    max-width: none;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: var(--violet);
    border: none;
    cursor: pointer;
    margin-top: auto;
}

#pricing .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(107, 84, 166, 0.35);
}

#pricing .pricing-footer-text {
    margin-top: 2rem;
    text-align: left;
}

#pricing .pricing-footer-text h3 {
    font-weight: 800;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 0.5rem;
}

#pricing .pricing-footer-text p {
    color: #555;
    line-height: 1.6;
}

/* ========================= */
/* END: PRICING SECTION STYLES (MODIFIED) */
/* ========================= */

/* Why Choose Us Section */
#why-choose-us {
    background: linear-gradient(180deg, var(--baby-blue) 0%, rgba(255, 255, 255, 1) 100%);
}

#why-choose-us h2 {
    font-size: clamp(2rem, 4.5vw, 2.8em);
    color: var(--denim-blue);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
    justify-content: center;
}

.grid-container .card {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
    max-width: 280px;
    box-sizing: border-box;
}

.card-image {
    width: 100%;
    height: 150px;
    margin-bottom: 30px;
    background-color: #e0f2f7;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card.professional .card-image {
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 150px;
    border: none;
}

.card.professional .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#why-choose-us .card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

#why-choose-us .card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 1.05em;
}

.containers {
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
}

.table-responsive-wrapper {
    overflow-x: auto;
}

.comparison-table th {
    background-color: transparent;
    font-weight: 700;
    font-size: 1.1em;
}

.comparison-table th:nth-child(1) {
    color: #333;
}

.comparison-table th:nth-child(2) {
    color: blue;
    text-align: center;
}

.comparison-table th:nth-child(3) {
    color: #555;
    text-align: right;
}

.comparison-table .feature-column {
    font-weight: 600;
    color: #333;
}

.comparison-table .mind360-column {
    color: blue;
    font-weight: 500;
    text-align: center;
}

.comparison-table .in-person-column {
    color: #555;
    text-align: right;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Testimonials Section */
#testimonials {
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e3ff 100%);
    padding: 80px 20px;
    position: relative;
}

#testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#testimonials h2 {
    font-size: clamp(2.2rem, 5vw, 3.2em);
    color: #4b3d84;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.testimonial-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(75, 61, 132, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(75, 61, 132, 0.12);
}

.stars {
    color: #ffc107;
    font-size: 1.4em;
    letter-spacing: 3px;
}

.testimonial-text {
    margin-bottom: 35px;
    font-size: 1.15em;
    color: #333;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d1c4e9 0%, #b39ddb 100%);
    color: #4b3d84;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: 700;
    margin-right: 20px;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(75, 61, 132, 0.2);
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    color: #2d2d2d;
    font-size: 1.25em;
    margin-bottom: 2px;
}

.user-age {
    font-size: 1em;
    color: #666;
    font-weight: 500;
}

#testimonials .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3 0%, #9c27b0 100%);
    color: #ffffff;
    padding: 22px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(33, 150, 243, 0.3);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    white-space: normal;
    max-width: 90%;
    width: auto;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

#testimonials .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976d2 0%, #7b1fa2 100%);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.get-app-modal {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal-overlay.hidden .get-app-modal {
    transform: scale(0.9);
}

.get-app-modal .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0d6efd;
    cursor: pointer;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.get-app-modal .close-btn:hover {
    background-color: #f0f0f0;
}

.get-app-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1d2433;
}

.get-app-modal p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.8rem;
}

.get-app-modal .app-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
}

.get-app-modal .app-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 42px;
    min-width: 140px;
}

.get-app-modal .app-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.get-app-modal .app-buttons a.google-play {
    background-color: #000;
    color: #fff;
}

.get-app-modal .app-buttons a.app-store {
    background-color: #000;
    color: #fff;
}

.get-app-modal .app-buttons a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.get-app-modal .app-buttons a .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.get-app-modal .app-buttons a .store-text .small {
    font-size: 9px;
    font-weight: 400;
    opacity: 0.85;
    text-transform: uppercase;
}

.get-app-modal .app-buttons a .store-text .large {
    font-size: 14px;
    font-weight: 600;
}

.no-scroll {
    overflow: hidden;
}

/* ========================= 
   MOBILE RESPONSIVE STYLES FOR HOME PAGE
   ========================= */

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

    .transform-slider-wrapper {
        order: -1;
    }
}


@media (max-width: 768px) {

    .hero-card-content .btn,
    .hero-card-content a.btn,
    .hero-slides .btn,
    .hero-slides a.btn,
    .advertise-card-content .btn,
    .advertise-card-content a.btn,
    .advertise-slides .btn,
    .advertise-slides a.btn {
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        word-break: break-word !important;
    }

    .hero,
    .advertise {
        padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }

    .hero-title,
    .advertise-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle,
    .advertise-subtitle {
        font-size: clamp(1rem, 2.2vw, 1.15rem);
        margin-bottom: 1.5rem;
    }

    .hero-description,
    .advertise-description {
        font-size: clamp(0.9rem, 2vw, 1rem);
        margin-bottom: 2rem;
    }

    .hero-slider-wrapper,
    .advertise-slider-wrapper {
        border-radius: var(--radius-lg);
    }

    .hero-card,
    .advertise-card {
        height: clamp(250px, 35vw, 300px);
    }

    .hero-card-content,
    .advertise-card-content {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 0.5rem;
        background: transparent;
        backdrop-filter: none;
        max-width: 90%;
        width: 90%;
        box-sizing: border-box;
        border-radius: var(--radius-lg);
    }

    .hero-card-content h2,
    .advertise-card-content h2 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        text-align: center;
        line-height: 1.3;
    }

    .hero-card-content .btn,
    .advertise-card-content .btn {
        font-size: clamp(0.7rem, 1.8vw, 0.85rem) !important;
        padding: 0.5rem 0.6rem !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.1 !important;
        max-width: 180px !important;
        width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
    }

    .slider-nav,
    .advertise-slider-nav {
        bottom: 1rem;
        gap: 0.8rem;
    }

    .nav-dot {
        width: 10px !important;
        height: 10px !important;
        min-width: 10px;
        min-height: 10px;
        position: relative;
        padding: 0;
        border-radius: 50%;
    }

    /* Life Areas Section Mobile */
    .life-areas {
        padding: clamp(2rem, 4vw, 3rem) 0;
    }

    .life-areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .life-areas-left h2 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        line-height: 1.3;
    }

    .life-areas-left .highlight::after {
        height: 25px;
    }

    .life-areas-left p {
        font-size: clamp(0.95rem, 2vw, 1.05rem);
        margin-top: 2rem;
    }

    .therapy-right-title {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .therapy-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .therapy-item {
        padding: 0.8rem;
        min-height: 100px;
    }

    .therapy-card-link img {
        width: 2rem;
        height: 2rem;
    }

    .therapy-card-link span {
        font-size: clamp(0.8rem, 1.8vw, 0.95rem);
        line-height: 1.2;
    }

    /* START: Fix for therapy card pop-up on mobile */
    .therapy-item p {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: 90vw;
        max-width: 300px;
        margin: 0;
    }

    .therapy-item:nth-child(odd) p,
    .therapy-item:nth-child(even) p {
        left: 50%;
        right: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .therapy-item:hover p {
        transform: translate(-50%, -50%) scale(1);
    }

    /* END: Fix for therapy card pop-up on mobile */

    /* Take Control Section Mobile */
    .take-control {
        padding: clamp(2rem, 4vw, 3rem) 0;
    }

    .take-control h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.2;
    }

    .take-control p {
        font-size: clamp(1rem, 2.2vw, 1.15rem);
        margin-bottom: 1.5rem;
    }

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

    .form-grid label:first-child {
        grid-column: 1;
    }

    .form-actions {
        text-align: center;
    }

    /* Transform Section Mobile - Fix Number Circles */
    .transform {
        padding: clamp(2rem, 4vw, 3rem) 0;
    }

    .transform-left h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        line-height: 1.2;
        text-align: center;
        margin-bottom: 2rem;
    }

    .steps {
        gap: 1.5rem;
    }

    .step-content {
        padding-left: 80px;
        min-height: 60px;
    }

    .step-content::before {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-content strong {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        line-height: 1.3;
    }

    .step-content span {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }

    .transform-slider-wrapper {
        min-height: 70%;
        padding: 2rem 0;
    }

    .phone-mockup img {
        max-width: 50%;
    }


    /* Pricing Section Mobile */
    #pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #pricing .card.traditional {
        margin-top: 0;
    }

    #pricing .card.pricing {
        padding: 2rem 1.5rem;
    }

    #pricing .price {
        margin-bottom: 1.5rem;
    }

    #pricing .price .amount {
        font-size: 3rem;
    }

    /* Why Choose Us Mobile */
    .grid-container {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        justify-content: center !important;
    }

    .grid-container .card {
        flex: 1 1 calc(50% - 1rem) !important;
        min-width: 150px !important;
        max-width: 200px !important;
        text-align: center;
        padding: 1.5rem;
    }

    .card h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }

    .card-image {
        width: 100% !important;
        max-width: 100% !important;
        height: 120px !important;
        margin: 0 auto 1rem !important;
    }

    /* Comparison Table Mobile */
    .table-responsive-wrapper {
        overflow-x: auto;
        padding: 0 1rem;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        text-align: center;
    }

    .comparison-table .feature-column {
        text-align: left;
        font-weight: 600;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .user-info {
        margin-top: 1rem;
    }

    #testimonials .cta-button {
        font-size: 1rem !important;
        padding: 16px 20px !important;
        max-width: 95% !important;
        width: 95% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        line-height: 1.2 !important;
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 650px) {
    .grid-container .card {
        flex: 1 1 calc(50% - 0.5rem) !important;
        min-width: 130px !important;
        max-width: 180px !important;
        padding: 1rem !important;
    }

    .grid-container {
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .table-responsive-wrapper {
        padding: 0 0.75rem;
    }

    .hero-card-content .btn,
    .advertise-card-content .btn {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.5rem !important;
        max-width: 160px !important;
        line-height: 1.1 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-card-content,
    .advertise-card-content {
        padding: 0.6rem 0.4rem !important;
        max-width: 85% !important;
        width: 85% !important;
    }

    .therapy-cards {
        gap: 0.6rem;
    }

    .therapy-item {
        padding: 0.6rem;
        min-height: 80px;
    }

    .therapy-card-link span {
        font-size: 0.8rem;
    }

    .slider-nav,
    .advertise-slider-nav {
        bottom: 0.8rem;
    }

    .nav-dot {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        min-height: 8px !important;
    }

    #testimonials .cta-button {
        font-size: 0.85rem !important;
        padding: 12px 16px !important;
        max-width: 90% !important;
        width: 90% !important;
        letter-spacing: 0.01em !important;
    }

    .grid-container {
        justify-content: center !important;
    }

    .grid-container .card {
        flex: 1 1 100% !important;
        min-width: unset !important;
        max-width: 300px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .card-image {
        height: 80px !important;
        max-width: 100px !important;
    }
}

@media (max-width: 360px) {

    .hero-card-content .btn,
    .hero-card-content a.btn,
    .advertise-card-content .btn,
    .advertise-card-content a.btn {
        font-size: 0.6rem !important;
        padding: 0.4rem 0.4rem !important;
        max-width: 140px !important;
        min-height: 32px !important;
        line-height: 1.0 !important;
        word-break: break-all !important;
        white-space: normal !important;
        text-overflow: clip !important;
        overflow: hidden !important;
        display: block !important;
        width: 100% !important;
    }

    .hero-card-content,
    .advertise-card-content {
        padding: 0.5rem 0.3rem !important;
        max-width: 80% !important;
        width: 80% !important;
        gap: 0.6rem !important;
    }

    .hero-card-content h2,
    .advertise-card-content h2 {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem) !important;
        margin-bottom: 0.3rem;
    }

    #testimonials .cta-button {
        font-size: 0.75rem !important;
        padding: 10px 12px !important;
        max-width: 85% !important;
        width: 85% !important;
        line-height: 1.0 !important;
        word-break: break-all !important;
        letter-spacing: 0 !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .grid-container {
        gap: 1.5rem !important;
    }

    .grid-container .card {
        flex: 1 1 calc(50% - 1.5rem) !important;
        min-width: 200px !important;
    }
}



/* ========================= 
   URGENT HELP SECTION
   ========================= */

.urgent {
    background-color: #FFF0F0;
    /* A light, alarming pink/red for urgency */
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 2px solid #FFCDD2;
    border-bottom: 2px solid #FFCDD2;
}

.urgent .container {
    max-width: 1050px;
    /* Increased from 800px to allow more width */
    margin: 0 auto;
}

.urgent h2 {
    font-family: var(--heading-font);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: #D32F2F;
    /* A strong, serious red color */
    margin: 0 0 0.75rem 0;
    font-weight: 800;
}

.urgent p {
    font-family: var(--body-font);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #424242;
    /* Dark grey for good readability */
    line-height: 1.7;
    margin: 0;
}

.urgent p a {
    color: #D32F2F;
    /* Make the links match the heading color */
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    transition: color 0.2s ease;
}

.urgent p a:hover {
    color: #B71C1C;
    /* A slightly darker red on hover for feedback */
    text-decoration: none;
}