/*
 * CONSOLIDATED base.css Easy Tidings 
 * Merged base.css and customer-landing.css
 * 
 * - Mapped new customer-landing header/footer styles to legacy .main-header & .site-footer classes.
 * - Added custom user logo filter rules.
 * - Unified custom properties and typography.
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* --- Primary Palette --- */
    --navy:          #1a2640;   
    --navy-light:    #243352;   
    --blue:          #4a90c4;   
    --blue-soft:     #6aafd6;   
    --blue-mellow:   #cee6f6;   
    --blue-pale:     rgba(74, 144, 196, 0.08); 
    --et-navy-deep:  #002442;   
    --et-blue-light: #6abdff;   
    --et-bg-light:   #cee6f6;   

    /* --- Neutrals --- */
    --white:         #ffffff;
    --off-white:     #f8f7f4; 
    --text:          #2c2c2c;
    --text-muted:    #666666;
    --border:        #e8e4df;

    /* --- Semantic --- */
    --color-primary:       var(--blue);
    --color-primary-dark:  var(--navy);
    --color-text-subtle:   var(--text-muted);
    --bg-light-blue:       var(--et-bg-light);  
    --bg-white:            var(--white);
    --color-border:        var(--border);

    /* --- Spacing & Shape --- */
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     16px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white); 
    color: var(--text);
    margin: 0; padding: 0;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
@font-face {
    font-family: 'Autography';
    src: url('fonts/Autography.ttf.woff2') format('woff2'),
        url('fonts/Autography.ttf.woff') format('woff');
    font-weight: normal; font-style: normal;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem);   font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem;    font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--blue); }

p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.72;
}

/* Legacy Utility text classes */
.initial-tagline, .centered-text { font-size: 19px; text-align: center; font-family: 'DM Sans', sans-serif; }
.text-center { text-align:center; }
.space_between_p { padding-bottom: 2ex; }
.special-note { font-style: italic; font-size: 80%; }
.footnote { margin: 25px 0; }
.text-anchor { color: var(--blue); text-decoration: underline; cursor: pointer; }
.user-email { font-weight: bold; font-size: 125%; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.centered-container { padding-left: 15px; padding-right: 15px; }
.align-items-center { align-items:center; }
.align-self-start { align-self:flex-start; }
.align-self-end { align-self:flex-end; }

.row { 
    --gutter-x:30px; --gutter-y:0;
    display:flex; flex-wrap:wrap; width:100%;
    margin-top: calc(var(--gutter-y) * -1); margin-right: calc(var(--gutter-x) / -2); margin-left: calc(var(--gutter-x) / -2);
}
/*body:not(.pace-done) .row > * {
    padding-right:calc(var(--gutter-x)/2); padding-left:calc(var(--gutter-x)/2); margin-top:var(--gutter-y); width:100%;
}*/

.col-center { margin: 0 auto; }
.readable { width:90%; }
.readable * { padding-bottom:1.5ex; width:100%; }
.readable h3, .readable p { font-size: 135%; }

.col-flex-two, .col-flex-three, .col-flex-four, .col-flex-five, .col-flex-six, .col-flex-seven {
    flex: 0 0 auto; padding:12px; box-sizing:border-box;
}
.col-flex-two {width:16.666666%;}
.col-flex-three {width:25%;}
.col-flex-four {width:33.3333333%;}
.col-flex-five {width:41.5%;}
.col-flex-six {width:50%;}
.col-flex-seven {width:58.3333333%;}
.col-flex-eight {width:66.66666%;}
.col-flex-twelve {width:100%;}
.interspace-y { --gutter-y:1rem; }

.nodisplay, .mobileonly { display: none; }
.inner { max-width: 1200px; margin: 0 auto; }
.order-first, .order-last { order: 0; }

/* ============================================================
   5. NAVIGATION (Mapped old classes to new layout)
   ============================================================ */
/* Unified header classes */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.main-header {
    position: relative;
    z-index: 100;
}

/* 2. Strip all hidden padding/margins from the theme's sticky wrappers */
.stricky-header,
.sticky-header__content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}
.main-menu__logo img {
    max-width: 100px;
    max-height: 70px;
    padding: 0 25px;
    filter: drop-shadow(0px 0px 0.25px #000);
    vertical-align: middle;
}

/* Brand Text */
.nav-logo, .ET-name {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin: auto 0 auto -40px;
    white-space: nowrap;
}

/* Navigation lists */
.nav-links, .main-menu .main-menu__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0; padding: 0;
}

.nav-links a, .main-menu__item a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
    font-weight: 400;
    padding: 0;
}

.nav-links a:hover, .main-menu .main-menu__list li > a:hover {
    color: var(--navy);
}

/* Utility overrides for legacy nav structure */
.main-menu__main-menu-box, .main-menu__left { margin: 0; }
.main-menu__right-bottom { display: flex; align-items: center; gap: 16px; background-color: inherit; }


/* ============================================================
   6. BUTTONS & PILLS
   ============================================================ */
.btn-primary, .thm-btn {
    display: inline-block; background: var(--navy); color: var(--white); text-decoration: none;
    padding: 14px 30px; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover, .thm-btn:hover { background: var(--navy-light); transform: translateY(-1px); color: var(--white); }

.btn-ghost-dark {
    display: inline-block; color: var(--navy); text-decoration: none; padding: 14px 26px;
    border-radius: var(--radius-sm); font-weight: 500; font-size: 0.95rem; border: 1.5px solid var(--border);
    background: transparent; transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.btn-ghost-dark:hover { border-color: var(--navy); background: rgba(26, 38, 64, 0.03); }

.btn-white { display: inline-block; background: var(--white); color: var(--navy); padding: 15px 34px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 500; transition: opacity 0.2s, transform 0.15s; }
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }

/* Unified Signup/Nav Button */
a.btn-nav, a.main-menu__btn_signup, .animated a.main-menu__btn_signup.in-hero {
    background: var(--navy);
    color: var(--white) !important;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: background 0.2s;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
a.btn-nav{
    padding: 10px 22px;
    white-space: nowrap;
}

.btn-nav:hover, a.main-menu__btn_signup:hover { background: var(--navy-light) !important; }

.submit-button { width: fit-content; padding: 10px 30px; margin: 2vh auto; }

/* Labels & Badges */
.label-pill, .nav-badge {
    display: inline-block; background: var(--blue-pale); color: var(--blue);
    border: 1px solid rgba(74, 144, 196, 0.25); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 13px;
    border-radius: 100px; margin-bottom: 20px; font-family: 'DM Sans', sans-serif;
}

/* ============================================================
   7. SECTIONS & HEADERS (Shared)
   ============================================================ */
section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
    font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 14px;
}
.section-header h2 em { font-style: italic; color: var(--blue); }
.section-header p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

section.separator-section.testimonials, section.separator-section.about { background: var(--white); background-image: none; }
#planHolder { background-color: var(--off-white); padding: 2vh 4vw; }
.container { width:100%; margin-right: auto; margin-left:auto; }

/* ============================================================
   8. MODERN LANDING PAGE BLOCKS (From customer-landing)
   ============================================================ */
.hero { background: var(--white); padding: 0 40px 40px; }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600; line-height: 1.1; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-tagline {color: var(--white); font-size: 19px; text-align: center;  margin: 40px auto 80px auto; font-family: 'Lora', serif; min-width:95vw;}
.hero-cta { display: inline-block; background: var(--navy); color: var(--white); text-decoration: none; padding: 15px 34px; border-radius: 8px; font-weight: 500; transition: background 0.2s, transform 0.15s; margin-bottom: 18px; }
.hero-cta:hover { background: var(--navy-light);  transform: translateY(-1px);}
.hero-trust { display: block; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.02em; }
.hero-checklist { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.hero-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.hero-checklist li::before { content: ''; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: rgba(74, 144, 196, 0.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='4 9 7.5 12.5 14 6' stroke='%234a90c4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-size: contain; }

.hero-card { width: 100%; max-width: 400px; display: flex; flex-direction: column; background: transparent; }
.hero-img { width: 100%; height: 350px; position: relative; z-index: 2; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50% 50% 0 0 / 45% 45% 0 0; display: block; }
.hero-quote { background: var(--off-white); border: 1px solid var(--border); border-top: none; border-radius: 0 0 16px 16px; padding: 40px 28px 24px; margin-top: -20px; position: relative; z-index: 1; }
.hero-quote::before, .hero-quote::after { content: ""; position: absolute; top: -20px; width: 1px; height: 20px; background: var(--border); }
.hero-quote::before { left: -1px; } .hero-quote::after { right: -1px; }
.hero-quote p { font-style: italic; font-size: 0.95rem; line-height: 1.65; margin-bottom: 10px; }

/* Loneliness / Testimonials / Voices / FAQs */
.loneliness-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.loneliness-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.loneliness-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 20px; }
.voice-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; font-style: italic; font-size: 0.95rem; border-left: 3px solid var(--blue); }
.loneliness-voices { display: flex; flex-direction: column; gap: 14px; }
.testimonials-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);}
.faqs { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);}

/* Pricing / Features / Grid blocks */
.how-section, .family-trust, .features-section, .pricing-section, .contact { background: var(--off-white); }
.steps-grid, .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 28px 32px 28px;
    position: relative; 
}

.step-number {
    width: 36px;
    height: 36px;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--navy);
}

.step-icon {
    position: absolute; 
    top: 0px;
    right: 14px;
    width: 100px;
    height: auto;    
    margin: 0;
    padding: 0;
    object-fit: contain;
    display:none;
}
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { font-size: 1.5rem; width: 44px; min-width: 44px; height: 44px; background: rgba(74, 144, 196, 0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--navy); box-shadow: 0 8px 32px rgba(26, 38, 64, 0.1); }
.pricing-price { font-size: 2rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pricing-badge { display: inline-block; background: var(--navy); color: var(--white); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; align-self: flex-start; }
.pricing-features li { display: flex; gap: 10px; font-size: 0.88rem; line-height: 1.5; margin-bottom:10px;}
.btn-pricing { display: block; text-align: center; background: var(--navy); color: var(--white); text-decoration: none; padding: 14px; border-radius: 8px; font-weight: 500; }

.not-therapy, .founders-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 40px; }
.not-therapy-inner, .founders-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.founders-inner blockquote::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--blue); opacity: 0.3; line-height: 0; vertical-align: -1rem; margin-right: 4px; }
.founders-attr strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 2px; }

.final-cta { background: var(--navy); padding: 88px 40px; text-align: center; }
.final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 440px; margin: 0 auto 36px; }
.btn-cta-white { display: inline-block; background: var(--white); color: var(--navy); padding: 15px 36px; border-radius: 8px; font-weight: 500; text-decoration: none; font-size:1rem; transition: opacity 0.2s, transform 0.15s; margin-bottom:16px;}

/* Meet Your New Best Friend (homepage companion carousel) */
.meet-friends .friends-swiper { position: relative; padding: 48px 20px; }
.meet-friends .swiper-slide { height: auto; }
.friend-card {
    display: flex; flex-direction: column; height: 100%; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
    text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s;
}
.friend-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26, 38, 64, 0.12); }
.friend-card__photo { display: flex; align-items: center; justify-content: center; height: 320px; }
.friend-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.friend-card__initial { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 600; color: var(--navy); opacity: 0.5; }
.friend-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.friend-card__body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); }
.friend-card__body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.friend-card__cta { font-size: 0.88rem; font-weight: 500; color: var(--blue); margin-top: 6px; }
.friend-card--more {
    align-items: center; justify-content: center; text-align: center; gap: 14px;
    background: var(--navy); padding: 32px 28px; min-height: 260px;
}
.friend-card--more:hover { background: var(--navy-light); }
.friend-card--more .friend-card__more-icon {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; transition: transform 0.2s;
}
.friend-card--more:hover .friend-card__more-icon { transform: translateX(4px); }
.friend-card--more h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); }
.friend-card--more p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.friends-swiper .swiper-pagination-bullet-active { background: var(--blue); }
.friends-swiper-prev, .friends-swiper-next {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: calc(50% - 24px); z-index: 2;
    width: 44px; height: 44px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
    background: var(--white); color: var(--navy); box-shadow: 0 8px 24px rgba(26, 38, 64, 0.15);
    transition: background 0.2s, color 0.2s;
}
.friends-swiper-prev svg, .friends-swiper-next svg { width: 18px; height: 18px; }
.friends-swiper-prev:hover, .friends-swiper-next:hover { background: var(--navy); color: var(--white); }
.friends-swiper-prev { left: -8px; }
.friends-swiper-next { right: -8px; }
.friends-swiper-prev.swiper-button-disabled, .friends-swiper-next.swiper-button-disabled { opacity: 0; pointer-events: none; }

/* ============================================================
   9. LEGACY BASE BLOCKS & FORMS
   ============================================================ */
/* Old Hero */
.main-hero-section { margin: auto; background-color: rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; justify-content: center; background-image: url('/assets/images/backgrounds/heroImage.png'); background-blend-mode: darken; background-size: cover; text-align: center; height: 92vh; }
.hero-tagline-new, .hero-tagline-lead { padding: 3vh 0 20px 0; text-align: center; width: 100%; font-size: 60px; color: var(--white); font-weight: 900; line-height: 73px; font-family: 'Playfair Display', serif; }

/* Lead Split */
.lead-followed { display: grid; grid-template-columns: repeat(2, 1fr); font-weight: 900; }
.lead-message { background-color: var(--et-bg-light); padding: 25vh 9vw 0 9vw; height: 75vh; min-width: 50vw; display: flex; flex-direction: column; justify-content: center; }

/* Forms (Payment, Client, etc.) */
#payment-form, #loginform, #client-form, #customer-form { list-style-type: none; padding: 0; border-radius: 3px; }
#payment-form div, #loginform div { margin: 5px 15px; display: flex; justify-content: flex-end; padding: 0.5em; }
#payment-form div > label, #loginform div > label { padding: 0.5em 1em 0.5em 0; font-weight: 600; flex: 1; }
.form-errors { padding-left: 3em; color: #f00; font-weight: 900; }
.form-required { background-color: var(--blue-pale); }
.first-email { width: 35vw; margin: 0 auto; padding: 3vh 0 0 0; display: grid; grid-template-columns: 35% 65%; grid-gap: 2px; }

/* Toggle Slider */
.toggle-container { display: flex; justify-content: center; align-items: center; padding: 5px; background-color: var(--et-bg-light); width: 50%; margin: 0 auto; border-radius: 25px; }
.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--border); transition: 0.4s; }
.slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: var(--white); transition: 0.4s; }
input:checked + .slider { background-color: var(--blue); }
input:checked + .slider:before { transform: translateX(26px); }
.slider.round { border-radius: 34px; } .slider.round:before { border-radius: 50%; }

/* FAQ & Sidebar */
.content-with-sidebar { max-width: 1100px; margin: 0 auto; padding: 72px 40px; display: grid; grid-template-columns: 220px 1fr; gap: 64px; }
.sidebar { position: sticky; top: 96px; }
.faq-group-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); border-bottom: 2px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   10. FOOTER (Mapped old classes to new layout)
   ============================================================ */
/* Unify the backgrounds and core padding */
.site-footer, footer {
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 40px 32px;
}
.site-footer__top, .site-footer__bottom { background-color: transparent; border:none; padding:0; }

/* Unified Container Grid */
.footer-inner, .site-footer .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Retains 4 cols for legacy setup */
    gap: 48px;
    align-items: start;
}

/* Brand / Logo elements */
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    font-style: italic;
    text-decoration: none;
}
.footer-widget__about-logo img { filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.95)); }

/* Descriptive Text */
.footer-tagline, .footer-widget__about-text, .footer-widget__contact-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
    font-family: 'DM Sans', sans-serif;
}

/* Footer Widget Columns */
.footer-col h3, .footer-widget__title {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}
.footer-widget__links { text-align: left; } /* Resetting old right-align */

.footer-col ul, .footer-widget__links-list {
    list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0;
}
.footer-col a, .footer-widget__links-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
}
.footer-col a:hover, .footer-widget__links-list li a:hover, .footer-bottom a:hover{ color: var(--white); }

/* Footer Bottom Strip */
.footer-bottom, .site-footer__bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a, .site-footer__bottom-text a { color: rgba(255, 255, 255, 0.3); text-decoration: none; }

/* free trial landing page custom */
/* ── FOUNDERS NOTE ── */
.founders-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 40px;
}

.founders-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.founders-inner blockquote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
}

.founders-inner blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--blue);
    opacity: 0.3;
    line-height: 0;
    vertical-align: -1rem;
    margin-right: 4px;
}

.founders-attr {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.founders-attr strong {
    display: block;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 2px;
}
/* ── PRICING ── */
.pricing-section { background: var(--off-white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--navy);
    box-shadow: 0 8px 32px rgba(26, 38, 64, 0.1);
}

.pricing-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-weight: 500;
    align-self: flex-start;
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    font-family: 'DM Sans', sans-serif;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(74,144,196,0.1);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3.5 8 6.5 11 12.5 5' stroke='%234a90c4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-pricing:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.pricing-custom {
    text-align: center;
    margin-top: 28px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-custom a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(74,144,196,0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card blockquote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    flex: 1;
}

.testimonial-card blockquote::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--blue);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
}

.testimonial-attr {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
/* ── NOT THERAPY NOTE ── */
.not-therapy {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 40px;
}

.not-therapy-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.not-therapy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.not-therapy h2 em {
    font-style: italic;
    color: var(--blue);
}

.not-therapy p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.prefooter{
    padding:40px;
}

.prefooter h2, .prefooter > .final-trust{
    padding:20px;
}
.final-trust {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}


/* end free-trial  */


/*************************************************************************************/
/* Home Page Sections */
/*************************************************************************************/

/* ============================================================
   TRUST / FAMILY SECTION
   ============================================================ */
.family-trust h3{
    font-size:150%;
}

#trust-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 575px;
    margin: 5vh auto;
    text-align: center;
}

.trust-element {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width:fit-content;
}

.trust-element figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 25px 5px;
}

.trust-element figure img {
    margin: auto;
    display: block;
}

#vetted, #safety {
    background-color: var(--blue-mellow);
}

/* ============================================================
   Connect Methods
   ============================================================ */
.row.connection > *{
    padding-bottom:30px;
}

.connection-types{
    height: 350px;
    aspect-ratio: 1 / 1;
    margin: 25px auto;
    clip-path: polygon(5.22% 55.20%, 5.12% 60.08%, 5.41% 63.91%, 6.36% 68.47%, 6.55% 68.68%, 6.64% 69.43%, 6.83% 69.64%, 7.02% 70.59%, 7.78% 72.29%, 7.78% 72.61%, 8.54% 74.31%, 8.92% 74.73%, 9.11% 75.37%, 9.30% 75.48%, 9.68% 76.33%, 9.96% 76.54%, 9.96% 76.75%, 10.25% 76.96%, 10.63% 77.81%, 11.95% 79.41%, 12.14% 79.94%, 12.33% 79.94%, 14.80% 82.80%, 14.99% 82.80%, 16.32% 84.18%, 17.27% 84.71%, 17.46% 85.03%, 17.65% 85.03%, 17.84% 85.35%, 18.03% 85.35%, 18.69% 85.99%, 20.78% 87.05%, 20.87% 87.26%, 22.20% 88.00%, 22.77% 88.54%, 23.06% 88.54%, 23.81% 89.07%, 24.95% 89.17%, 25.33% 89.60%, 25.81% 89.70%, 26.09% 90.13%, 26.47% 90.23%, 26.57% 90.45%, 27.32% 90.87%, 28.27% 90.98%, 28.75% 91.30%, 29.51% 91.40%, 29.70% 91.61%, 30.74% 91.72%, 31.59% 92.14%, 31.97% 92.14%, 32.16% 92.36%, 32.92% 92.46%, 33.11% 92.68%, 33.68% 92.68%, 35.29% 93.31%, 36.81% 93.63%, 37.38% 93.95%, 37.95% 93.95%, 38.14% 94.16%, 39.09% 94.27%, 39.28% 94.48%, 40.23% 94.59%, 40.51% 94.80%, 41.08% 94.80%, 42.50% 95.33%, 43.07% 95.33%, 44.21% 95.75%, 44.78% 95.75%, 48.10% 96.50%, 51.23% 96.82%, 53.23% 97.45%, 57.59% 97.66%, 59.39% 97.56%, 61.01% 97.24%, 62.62% 97.35%, 63.19% 97.13%, 63.85% 97.13%, 64.42% 96.82%, 64.99% 96.82%, 65.75% 96.39%, 66.22% 96.39%, 66.41% 96.18%, 67.65% 95.86%, 67.84% 95.65%, 68.41% 95.54%, 68.88% 95.12%, 69.64% 94.90%, 69.92% 94.59%, 70.68% 94.16%, 70.97% 94.16%, 71.06% 93.95%, 71.92% 93.63%, 72.11% 93.31%, 72.49% 93.21%, 72.77% 92.78%, 73.24% 92.57%, 74.19% 91.51%, 75.43% 90.87%, 75.71% 90.45%, 76.94% 89.70%, 77.13% 89.38%, 77.32% 89.38%, 77.61% 88.96%, 77.80% 88.96%, 78.75% 88.00%, 79.32% 87.79%, 80.08% 87.05%, 80.27% 87.05%, 80.93% 86.20%, 81.69% 85.88%, 82.16% 85.35%, 82.64% 85.14%, 84.16% 83.44%, 84.16% 83.23%, 86.05% 81.32%, 86.05% 81.10%, 86.43% 80.79%, 86.43% 80.57%, 86.72% 80.36%, 86.72% 80.15%, 87.00% 79.94%, 87.29% 79.30%, 87.67% 78.98%, 87.76% 78.56%, 88.05% 78.34%, 88.14% 77.92%, 88.33% 77.81%, 88.71% 76.86%, 89.18% 76.22%, 89.28% 75.69%, 89.47% 75.58%, 89.75% 74.63%, 90.61% 73.04%, 90.61% 72.72%, 91.27% 71.34%, 91.75% 69.53%, 91.94% 69.32%, 92.41% 67.09%, 92.60% 66.88%, 92.60% 66.35%, 92.88% 65.71%, 92.98% 64.76%, 93.17% 64.44%, 93.17% 63.91%, 93.36% 63.59%, 93.55% 62.10%, 93.74% 61.68%, 93.83% 60.30%, 94.02% 59.98%, 94.02% 59.02%, 94.40% 56.58%, 94.69% 50.64%, 94.59% 48.41%, 94.40% 47.88%, 94.40% 45.97%, 94.21% 44.06%, 94.02% 43.52%, 94.02% 42.57%, 93.83% 42.25%, 93.74% 40.98%, 93.55% 40.55%, 93.36% 39.07%, 93.17% 38.75%, 93.17% 38.00%, 92.98% 37.79%, 92.88% 36.84%, 92.60% 35.56%, 92.41% 35.46%, 92.22% 34.18%, 92.03% 33.97%, 91.84% 33.01%, 91.65% 32.80%, 91.56% 32.17%, 91.27% 31.74%, 90.89% 30.36%, 90.61% 29.94%, 90.61% 29.62%, 90.42% 29.51%, 90.42% 29.19%, 90.04% 28.66%, 89.09% 26.33%, 88.52% 25.48%, 88.52% 25.16%, 87.95% 24.42%, 87.86% 23.99%, 87.67% 23.89%, 87.29% 23.04%, 86.91% 22.72%, 86.91% 22.51%, 86.34% 21.87%, 85.77% 20.70%, 85.58% 20.70%, 85.39% 20.17%, 84.82% 19.64%, 84.82% 19.43%, 84.35% 19.00%, 84.35% 18.79%, 84.06% 18.47%, 83.87% 18.47%, 82.35% 16.77%, 82.35% 16.56%, 81.88% 16.03%, 81.31% 15.71%, 80.93% 15.18%, 80.74% 15.18%, 80.46% 14.76%, 79.89% 14.44%, 79.51% 13.91%, 79.03% 13.69%, 78.84% 13.38%, 78.08% 12.95%, 77.89% 12.63%, 77.51% 12.53%, 76.94% 12.00%, 76.66% 12.00%, 76.47% 11.68%, 75.14% 10.93%, 75.05% 10.72%, 74.38% 10.40%, 74.00% 9.98%, 73.15% 9.66%, 73.06% 9.45%, 71.73% 8.60%, 71.16% 8.49%, 70.68% 8.07%, 70.40% 8.07%, 69.17% 7.32%, 68.22% 7.11%, 68.03% 6.90%, 67.65% 6.90%, 66.13% 6.26%, 65.46% 6.26%, 62.90% 5.63%, 61.57% 5.52%, 61.01% 5.31%, 59.96% 5.31%, 58.73% 4.99%, 56.64% 4.78%, 51.61% 4.99%, 47.82% 5.52%, 43.07% 6.58%, 42.88% 6.79%, 40.04% 7.54%, 38.99% 8.07%, 38.14% 8.28%, 37.95% 8.49%, 37.38% 8.60%, 37.19% 8.81%, 36.05% 9.13%, 35.96% 9.34%, 35.48% 9.45%, 35.20% 9.77%, 34.35% 9.98%, 33.87% 10.40%, 31.50% 11.57%, 31.12% 12.00%, 29.98% 12.53%, 29.13% 13.27%, 28.37% 13.59%, 27.89% 14.12%, 27.70% 14.12%, 27.61% 14.33%, 27.42% 14.33%, 27.32% 14.54%, 27.13% 14.54%, 27.04% 14.76%, 25.71% 15.61%, 25.52% 15.92%, 25.05% 16.14%, 24.10% 17.20%, 23.62% 17.41%, 22.96% 18.26%, 22.77% 18.26%, 22.01% 19.11%, 21.82% 19.11%, 21.73% 19.43%, 21.16% 19.75%, 21.16% 19.96%, 20.97% 19.96%, 20.78% 20.38%, 20.02% 21.23%, 19.83% 21.23%, 19.26% 22.08%, 19.07% 22.08%, 18.60% 22.61%, 18.60% 22.82%, 17.93% 23.46%, 17.65% 24.10%, 17.08% 24.63%, 16.79% 25.27%, 15.56% 26.65%, 15.56% 26.86%, 15.28% 27.07%, 15.28% 27.28%, 14.99% 27.49%, 14.99% 27.71%, 14.33% 28.56%, 14.04% 29.30%, 13.57% 29.83%, 13.38% 30.47%, 13.09% 30.68%, 13.09% 30.89%, 12.33% 31.95%, 11.39% 34.08%, 11.20% 34.18%, 11.01% 34.93%, 10.63% 35.46%, 10.34% 36.41%, 10.06% 36.73%, 10.06% 37.05%, 8.92% 39.38%, 8.82% 40.02%, 8.35% 40.98%, 8.25% 41.61%, 8.06% 41.83%, 7.21% 44.69%, 6.55% 47.66%, 6.36% 47.88%, 6.36% 48.51%, 6.07% 49.15%, 5.22% 55.20%);
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials h2.testimonial-hero{
    padding-bottom:15px;
}

/* ============================================================
   Magazine/Blog
   ============================================================ */
section.magazine-sample, section.magazine-sample h2 {
    background: #000;
    color: #fff;
}

section.magazine-sample h2 {
    font-size:clamp(2rem, 1vw, 2.2rem);
}

.magazine .inner{
    max-width:90vw;
}
.center-by-margin{
    margin: auto;
}

.latest-posts-container {
    display: flex;
    justify-content: space-between;
    margin: auto;
    color: #fff;
}

.blog-post-card {
    flex: 1;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.blog-post-card h3 {
    font-size: 120%;
}
.blog-title, .readmore {
    text-align: left;
    font-weight: bold;
    text-decoration: underline;
    color: #fff;
    margin-top: 20px;
}
.blog-title, .blog-title a:link, .blog-title a:visited {
    color: #fff;
    text-decoration: none;
    min-height: 3vh;
    overflow: hidden;
    display: block;
}
.blog-post-card img {
    height: auto;
    display: block;
    margin-bottom: 10px;
    width: 20vw;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.blog-excerpt {
    text-align: justify;
    font-size: 85%;
    padding: 10px 0;
    height: 9vh;
    overflow: auto;
}
.readmore a:link, .readmore a:visited {
    color: #fff;
}
/* ============================================================
   PAGE HERO (FAQ and similar interior pages)
   ============================================================ */
.page-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px;;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 20px;
}

.page-hero h1 em { font-style: italic; color: var(--blue); }

.page-hero p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   SIDEBAR NAVIGATION (FAQ page, reusable for other pages)
   ============================================================ */
.sidebar {
    position: sticky;
    top: 96px;
}

.sidebar-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.sidebar-links a {
    display: block;
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
}

.sidebar-links a:hover {
    background: var(--blue-pale);
    color: var(--navy);
}

.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.sidebar-cta {
    display: block;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
    margin-top: 20px;
    font-family: 'DM Sans', sans-serif;
}

.sidebar-cta:hover { background: var(--navy-light); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-content { min-width: 0; }

.faq-group { margin-bottom: 56px; }

.faq-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    scroll-margin-top: 96px;
}

.faq-group-title em { font-style: italic; color: var(--blue); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.faq-question span {
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
}

.faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue);
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.25s;
}

.faq-item.open .faq-icon { background: var(--navy); }

.faq-item.open .faq-icon svg {
    stroke: var(--white);
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
    padding-bottom: 20px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-answer-inner a {
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 144, 196, 0.3);
    transition: border-color 0.2s;
}

.faq-answer-inner a:hover { border-bottom-color: var(--blue); }

/* ============================================================
   CONTACT CARD (dark CTA card, reusable)
   ============================================================ */
.contact-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    margin-top: 8px;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-card h3 em { font-style: italic; color: var(--blue-soft); }

.contact-card p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Ghost button (dark bg variant — different from btn-ghost-dark) */
.btn-ghost {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 400;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

/* ============================================================
   MAIN CONTENT LAYOUT (sidebar + content grid)
   ============================================================ */
.content-with-sidebar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: start;
}


/* ============================================================
   ABOUT
   ============================================================ */
section.separator-section.about {
    background-color: var(--white);
    background-image: none;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

section.contact h2.contact-message {
    font-size:clamp(2.1rem, 1vw, 2.2rem);
}
.mail-listing{
    padding:25px 0;
}
.mail-listing p{
    padding-left:15px;
}

section.contact-three .section-title__title { margin-bottom: 1.5vh; }
section.contact-three .about-four__text     { max-width: 38vw; margin-bottom: 1.5vh; }
section.contact-three address               { font-weight: bold; font-size: 125%; margin-bottom: 1.5vh; }

.contact-page__form {
    margin: 0;
    padding: 0;
}

.contact-form__input-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 0.5vh 1vw;
}

.contact-form__input-box label {
    color: var(--white);
    padding: 0.75vh 0 0.5vh 0;
    font-family: 'DM Sans', sans-serif;
}

/* Contact button */
.contact-btn {
    float: right;
    margin: 4vh 1.5vh 2vh;
    padding-right: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.go-arrow {
    background: var(--navy);
    color: var(--white);
    font-size: 200%;
    padding: 4px 5px;
    border-radius: 25px;
    margin-left: 1vw;
}

.contact-btn:hover .go-arrow {
    background: var(--white);
    color: var(--text-muted);
}

.go-arrow:before {
    content: '\2192';
    font-weight: bold;
    position: relative;
    top: -2px;
}

.icon-svg {
    width: 2.5em;
    height: 2.5em;
    margin: 0 1em;
}

.about-team {
    width: 100%;
    margin-top: 15%;
    border-radius: 5em;
}

.about-title            { font-size: 150%; font-family: 'Playfair Display', serif; }
.about-title,
.about-explain,
.about-attr             { margin-top: 25px; }

figcaption#ET-Team {
    text-align: center;
    width: 100%;
    font-style: italic;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
}
/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a.sm-icon {
    font-size: 200%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: var(--Navy);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover                     { background-color: #555; color: var(--white); }
.social-icons a:hover .fa-linkedin        { color: #0077b5; }
.social-icons a:hover .fa-medium-m        { color: #000; }
.social-icons a:hover .fa-x-twitter      { color: #000; }
.social-icons a:hover .fa-reddit-alien   { color: #FF5700; }

/* ============================================================
   TOOLTIP
   ============================================================ */
.ttip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.ttip .ttiptext {
    visibility: hidden;
    max-width: 25vw;
    background-color: black;
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
}

.ttip:hover .ttiptext { visibility: visible; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader__text {
    position: absolute;
    top: 54vh;
    left: 43vw;
    font-size: 20px;
    color: var(--blue);             /* was --oxpins-base */
    font-family: 'Playfair Display', serif;
}

/*************************************************************************************/
/* End Home Page Sections */
/*************************************************************************************/


/* ============================================================
   11. RESPONSIVE
   ============================================================ */
/* Hide mobile toggler natively on desktop */
.mobile-nav__toggler {
    display: none;
    font-size: 20px;
    color: var(--blue);
    cursor: pointer;
    transition: 0.5s;
    background: transparent;
    border: none;
    padding: 17px 0;
}

.mobile-nav__toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px 0;
    border-radius: 3px;
}


@media (max-width: 960px) {
    .footer-inner, .site-footer .container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 480px; }
    .loneliness-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid, .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .lead-followed { grid-template-columns: 1fr; }
    .first-email { width: 80vw; }
    .toggle-container { width: 90%; }
    .content-with-sidebar { grid-template-columns: 1fr; padding: 48px 24px; }
    .sidebar { display: none; }
    .col-flex-four {flex: 0 0 100%; max-width: 100%; margin-bottom: 24px;}
    .col-flex-five, .col-flex-seven {flex: 0 0 100%; max-width: 100%; width:100%;}
    .testimonials .col-flex-five.order-first {order: -1;}
    .testimonials .col-flex-seven.order-last {order: 1;}
    .col-flex-six {width:99%;}
    div.contact-form__input-box {padding:0vh 1vw;}
    div.contact-form__input-box .col-flex-six {padding:0 12px;}
    div.contact-form__input-box .col-flex-twelve {padding:0 12px;flex: 0 0 auto;}

    .main-menu__right {
        width: auto;
        float: right;
    }
    .main-menu__right-bottom {
        padding-left: 0;
    }

    /* Reveal Hamburger icon */
    .mobile-nav__toggler {
        display: inline-block;
        margin-left: auto;
    }
    .main-menu__right {
        margin-left: 0;
    }
    .main-menu__main-menu-box {
        display: none !important;
    }

    .mobile-nav__container .nav-links {
        display: block !important;
    }

    .mobile-nav__container .nav-links li {
        display: block;
        width: 100%;
        margin-bottom: 15px; /* Adds a little breathing room between mobile links */
    }    

    a.btn-nav{
        width:50%;
        background: var(--blue-soft);
    }

    .latest-posts-container {
        overflow:scroll;
    }
    #trust-matrix{
        max-width:93vw;
    }
/*    .step-card{
        aspect-ratio:1/1;
        padding: 3% 12% 12% 12%;
    }
    .step-icon{
        height:45%;        
    }
    .step-card h3{
        font-size:clamp(2.0rem, 2vw, 2.5rem);
    }
    .step-card p{
        font-size: clamp(1.05rem, 1.4vw, 2rem);
    }*/

.step-card {
        padding: 40px 24px 32px 24px;
    }
    
    .step-icon {
        width: 75px; 
        right: 10px;
    }
    .friends-swiper-prev, .friends-swiper-next { display: none; }
}
@media (max-width: 640px) {
    nav { padding: 0 20px; }
    section, .hero, .not-therapy, .founders-section, .final-cta, footer, .site-footer { padding-left: 20px; padding-right: 20px; }
    .footer-inner, .site-footer .container { grid-template-columns: 1fr; }
    .footer-bottom, .site-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
