
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

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

html {
    scroll-behavior: smooth;
}

:root {
    --background: #F8F9FF;
    --primary-cta: #009379;
    --secondary-cta-bg: #E5F4F2;
    --text-dark: #2D2D2D;
    --text-black: #000000;
    --white: #FFFFFF;
    --accent-pink: #F2BFAF;
    --accent-persimmon: #FF6250;
    --accent-purple: #5D5FEF;
    --border-grey: #D8D8D8;
    --neutral-900: #111827;
    --neutral-700: #374151;
    --star-yellow: #F8D57E;
    --social-bg: #4E4D4D;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--background);
}

/* Landing Page Container */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--background);
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 55px;
}

/* Navbar */
.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    max-width: 1280px;
    min-height: 100px;
    height: auto;
    background: var(--background);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 6px;
    width: 136px;
    height: 25px;
}

    .logo img {
        width: 136px;
        height: 25px;
        object-fit: contain;
    }

.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    gap: clamp(20px, 4vw, 50px);
    width: 100%;
    max-width: 640px;
    min-height: 60px;
    flex: 1 1 auto;
}

.highlighted-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    gap: clamp(12px, 1.5vw, 20px);
    width: 100%;
    max-width: 600px;
    min-height: 60px;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 50px;
    gap: 8px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    width: 144px;
    height: 60px;
    background: var(--secondary-cta-bg);
    color: var(--primary-cta);
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-login:hover {
    background: color-mix(in srgb, var(--primary-cta) 85%, white);
    color: var(--white);
}

.btn-primary {
    width: 272px;
    height: 60px;
    background: var(--primary-cta);
    color: var(--white);
}

    .btn-primary:hover {
        background: #007A64;
    }

.btn.primary-signup-link {
    white-space: nowrap;
}

.btn.bookademo {
    background-color: #d84572;
    color: var(--white);
    min-width: 240px;
    height: 60px;
    padding-left: 24px;
    padding-right: 24px;
    white-space: nowrap;
    box-sizing: border-box;
}

    .btn.bookademo:hover {
        background-color: #c23d66;
    }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-close {
    display: none;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: clamp(24px, 3.5vw, 40px) clamp(24px, 4.3vw, 55px) clamp(48px, 6.25vw, 80px);
    gap: clamp(24px, 8vw, 65px);
    width: 100%;
    max-width: 1280px;
    height: auto;
    min-height: 400px;
    background: var(--background);
    box-sizing: border-box;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: clamp(20px, 1.5vw, 20px);
    width: 100%;
    max-width: 550px;
    min-width: 0;
    flex-shrink: 1;
}

.hero-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-badge {
    width: 100%;
    max-width: 550px;
    height: auto;
    min-height: 30px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 1.4vw + 6px, 20px);
    line-height: 150%;
    text-transform: uppercase;
    color: var(--text-dark);
}

.hero-title {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.5vw + 1rem, 55px);
    line-height: 1.25;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hero-subtitle {
    width: 100%;
    max-width: 100%;
    height: auto;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1vw + 8px, 16px);
    line-height: 150%;
    color: var(--text-dark);
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 18px;
    width: 100%;
    max-width: min(515px, 100%);
    container-type: inline-size;
}

.hero-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    min-height: 44px;
    padding: 8px 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: var(--primary-cta);
    background: var(--secondary-cta-bg);
    border-radius: 12px;
    box-sizing: border-box;
}

@container (max-width: 429px) {
    .hero-cta-badge {
       width: auto;
    }
}

.hero-visuals {
    width: 100%;
    max-width: min(585px, 48vw);
    height: clamp(280px, 35vw, 450px);
    min-height: 240px;
    position: relative;
    flex-shrink: 0;
}

/* Circle: same width/height so it stays round (padding-bottom % is based on width) */
.illustration-circle {
    position: absolute;
    width: 76%;
    padding-bottom: 76%;
    height: 0;
    left: 12%;
    top: 1%;
    background: var(--accent-pink);
    border-radius: 50%;
    box-sizing: content-box;
}

/* Rings: same width/height via padding-bottom so they stay perfect circles at any size */
.illustration-ring-1 {
    box-sizing: content-box;
    position: absolute;
    width: 25%;
    padding-bottom: 25%;
    height: 0;
    left: 62%;
    top: 1%;
    border-width: clamp(12px, 2.2vw, 31.55px);
    border-style: solid;
    border-color: var(--primary-cta);
    border-radius: 50%;
    background: transparent;
}

.illustration-ring-2 {
    box-sizing: content-box;
    position: absolute;
    width: 15%;
    padding-bottom: 15%;
    height: 0;
    left: 16%;
    top: 65%;
    border-width: clamp(10px, 2.2vw, 31.55px);
    border-style: solid;
    border-color: var(--accent-persimmon);
    border-radius: 50%;
    background: transparent;
}

.desktop-mockup {
    position: absolute;
    width: 97%;
    left: 0;
    top: 12%;
    aspect-ratio: 565 / 341;
    max-width: 565px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-radius: 15.15px;
}

/* Hero – tablet / small desktop: stack when narrow */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: clamp(32px, 5vw, 48px);
        min-height: auto;
    }

    .hero-header {
        align-items: center;
        max-width: 100%;
    }

    .hero-header-content {
        align-items: center;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle {
        text-align: center;
    }

    .hero-ctas {
        margin: 0 auto;
    }

    .hero-visuals {
        max-width: min(400px, 85vw);
        height: clamp(260px, 45vw, 380px);
    }
}

/* Features Section */
.features-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(24px, 3vw, 30px) clamp(20px, 5vw, 55px) clamp(60px, 8vw, 80px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--background);
}

.headline-subhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: clamp(16px, 1.5vw, 20px);
    width: 100%;
    max-width: min(1170px, 92vw);
}

.section-title {
    width: 100%;
    max-width: 1000px;
    height: auto;
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 38px);
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-black);
    margin-bottom: clamp(12px, 1.5vw, 20px);
}

.section-title-accent {
    color: var(--primary-cta);
}

.section-subtitle {
    width: 100%;
    max-width: min(800px, 90vw);
    height: auto;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.2vw, 16px);
    line-height: 150%;
    text-align: center;
    color: var(--text-dark);
    margin: 0 auto;
}

.cards-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: min(1170px, 92vw);
    margin-top: clamp(20px, 2.5vw, 30px);
}

.feature-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 30px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    min-width: 0;
    max-width: 370px;
    min-height: 500px;
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    box-shadow: 34.85px 29.63px 48.34px rgba(51, 102, 255, 0.05);
    border-radius: clamp(16px, 2vw, 20px);
    flex: 1 1 min(370px, 100%);
}

/* Platform Overview Video Section */
.platform-overview-video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(24px, 3vw, 30px) clamp(20px, 5vw, 55px) clamp(60px, 8vw, 80px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--background);
}

.platform-overview-video-section .headline-subhead {
    width: 100%;
    max-width: min(1170px, 92vw);
}

.video-showcase-wrap {
    width: 100%;
    max-width: min(960px, 92vw);
    margin: 0 auto;
    border-radius: clamp(16px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 34.85px 29.63px 48.34px rgba(51, 102, 255, 0.08);
    border: 1px solid var(--secondary-cta-bg);
    background: var(--neutral-900);
}

.platform-overview-iframe {
    display: block;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border: none;
}

/* Feature section: 4-card layout – only elements with these classes are affected */
.feature-cards-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: min(1170px, 92vw);
    margin-top: clamp(20px, 2.5vw, 30px);
}

.feature-cards-four .feature-card-four {
    max-width: none;
    min-width: 0;
    flex: none;
    padding: 20px;
}

@media (max-width: 1024px) {
    .feature-cards-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 310px;
}

.card-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(12px, 1.5vw, 20px);
    gap: 10px;
    width: clamp(80px, 10vw, 142px);
    height: clamp(80px, 10vw, 142px);
    min-width: 80px;
    min-height: 80px;
    border-radius: 100px;
    flex-shrink: 0;
}

    .card-icon svg {
        width: 100%;
        height: 100%;
        max-width: 84px;
        max-height: 84px;
        object-fit: contain;
    }

.icon-purple {
    background: rgba(93, 95, 239, 0.2);
}

.icon-orange {
    background: rgba(255, 98, 80, 0.2);
}

.icon-teal {
    background: rgba(0, 147, 121, 0.2);
}

.icon-pink {
    background-color: rgb(253 232 238);
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: clamp(8px, 1vw, 12px);
    width: 100%;
    max-width: 310px;
}

.card-title {
    width: 100%;
    max-width: 310px;
    height: auto;
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.01em;
    color: var(--text-black);
}

.card-description {
    width: 100%;
    max-width: 310px;
    height: auto;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 16px);
    line-height: 150%;
    text-align: center;
    color: var(--text-black);
}

.learn-more-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 8px;
    height: 30px;
    border-radius: 20px;
    background: transparent;
    border: none;
    color: var(--primary-cta);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.1vw, 16px);
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .learn-more-btn:hover {
        color: var(--accent-persimmon);
        transform: translateX(6px);
    }

    .learn-more-btn:active {
        transform: translateX(3px) scale(0.97);
    }

    .learn-more-btn::after {
        content: '→';
        margin-left: 4px;
    }

.cta-button-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: clamp(20px, 2.5vw, 30px);
}

/* Portabl Member Cover Section */
.member-cover-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 55px);
    background: var(--background);
    box-sizing: border-box;
}

.member-cover-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2.5vw, 32px);
}

.member-cover-title {
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 130%;
    text-align: center;
    color: #00A68A;
    margin: 0;
}

.member-cover-intro {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 150%;
    text-align: center;
    color: var(--text-dark);
    margin: 0;
}

.member-cover-card {
    width: 100%;
    background: var(--white);
    border-radius: clamp(12px, 1.5vw, 20px);
    padding: clamp(20px, 3vw, 32px) clamp(36px, 5vw, 56px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--secondary-cta-bg);
}

.member-cover-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.member-cover-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    padding: clamp(14px, 2vw, 20px) 0;
    border-bottom: 1px solid var(--border-grey);
    flex-wrap: wrap;
}

.member-cover-row:last-child {
    border-bottom: none;
}

.member-cover-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 140%;
    color: var(--text-dark);
    flex: 1 1 200px;
    min-width: 0;
}

.member-cover-value {
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2vw, 28px);
    color: #00A68A;
    flex-shrink: 0;
}

.member-cover-note,
.member-cover-downloads,
.member-cover-plus,
.member-cover-provider {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: 150%;
    color: var(--text-dark);
    margin: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.member-cover-note strong,
.member-cover-downloads strong,
.member-cover-plus strong {
    font-weight: 700;
}

.member-cover-link {
    color: #00A68A;
    text-decoration: none;
    font-weight: 600;
}

.member-cover-link.download-pdf {
    text-decoration: underline;
}

.member-cover-pipe {
    margin: 0 6px;
    color: var(--text-dark);
}

.member-cover-provider {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--neutral-700);
    font-style: italic;
}

/* Highlighted CTA Section – responsive like hero */
.highlighted-cta-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: clamp(24px, 3.5vw, 40px) clamp(24px, 4.3vw, 55px) clamp(48px, 6.25vw, 60px);
    gap: clamp(32px, 5vw, 60px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background: var(--background);
    box-sizing: border-box;
}

/* Visuals: fluid size like .hero-visuals – inner elements use % so ratio is preserved */
.highlighted-visuals {
    width: 100%;
    max-width: min(540px, 48vw);
    height: clamp(280px, 48vw, 540px);
    min-height: 280px;
    position: relative;
    flex-shrink: 0;
}

.mobile-illustration-circle {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 16.85%;
    top: 7.24%;
    background: var(--accent-pink);
    border-radius: 50%;
}

.sub-hero-image-wrap {
    position: absolute;
    width: 70%;
    height: 70%;
    left: 16.85%;
    top: 7.24%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

    .sub-hero-image-wrap img,
    #sub-hero-image {
        position: absolute;
        inset: 0;
        object-fit: cover;
        object-position: center;
        box-sizing: border-box;
        display: block;
        left: 15%;
        top: 25%;
        width: 70%;
    }

.mobile-illustration-ring {
    box-sizing: border-box;
    position: absolute;
    width: 35%;
    height: 35%;
    left: 0;
    top: 8.22%;
    border: clamp(10px, 3.2vw, 31.55px) solid var(--primary-cta);
    border-radius: 50%;
}

.mobile-mockup {
    position: absolute;
    width: 48.9%;
    left: 10.6%;
    top: 18.9%;
    aspect-ratio: 264 / 508;
    max-height: 75%;
    box-shadow: inset -2.71px -6.09px 4.74px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(12.70px 17.16px 24.06px rgba(0, 0, 0, 0.15));
    border-radius: 100px;
    background: linear-gradient(193.25deg, #2D2D2D 9.53%, #726F6F 56.11%, #2D2D2D 94.81%);
    border: 0.68px solid #D8D8D8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .mobile-mockup img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.mobile-ring-2 {
    box-sizing: border-box;
    position: absolute;
    width: 19.8%;
    height: 19.8%;
    z-index: 2;
    left: 72.96%;
    top: 58.56%;
    border: clamp(8px, 3vw, 31.55px) solid var(--accent-persimmon);
    border-radius: 50%;
}

/* Header: fluid like .hero-header */
.highlighted-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: clamp(24px, 3vw, 40px);
    width: 100%;
    max-width: min(570px, 48vw);
    min-width: 0;
    flex-shrink: 1;
}

.highlighted-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: clamp(12px, 1.5vw, 20px);
    width: 100%;
    max-width: 100%;
}

.highlighted-title {
    width: 100%;
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 130%;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.highlighted-description {
    width: 100%;
    max-width: 100%;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 150%;
    color: var(--text-dark);
}

/* Highlighted CTA – tablet: stack like hero at 900px */
@media (max-width: 900px) {
    .highlighted-cta-section {
        flex-direction: column;
        align-items: center;
        gap: clamp(32px, 5vw, 48px);
    }

    .highlighted-header {
        align-items: center;
        max-width: 100%;
    }

    .highlighted-header-content {
        align-items: center;
    }

    .highlighted-title,
    .highlighted-description {
        text-align: center;
    }

    .highlighted-header .hero-ctas {
        justify-content: center;
    }

    .highlighted-visuals {
        max-width: min(400px, 85vw);
        height: clamp(260px, 400px, 450px);
    }

    /* Testimonials – tablet: quote centered, star rating after quote */
    .testimonial-text-content {
        flex-direction: column;
    }

        .testimonial-text-content .testimonial-quote {
            order: 1;
            text-align: center;
        }

        .testimonial-text-content .star-rating {
            order: 2;
            justify-content: center;
        }
}

/* Digital Health & Wellness Service Section */
.digital-wellness-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 55px);
    background: var(--background);
    box-sizing: border-box;
}

.digital-wellness-inner {
    width: 100%;
    max-width: min(1170px, 92vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 1vw, 14px);
}

.digital-wellness-badge {
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(23px, 2.1vw, 28px);
    color: var(--text-black);
    margin: 0;
    text-align: center;
}

.digital-wellness-title {
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 130%;
    text-align: center;
    color: #00A68A;
    margin: 0;
}

.digital-wellness-intro {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 150%;
    text-align: center;
    color: var(--neutral-700);
    margin: 0;
}

.digital-wellness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
    width: 100%;
    margin-top: clamp(20px, 2.5vw, 32px);
}

.digital-wellness-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.2vw, 16px);
    padding: clamp(20px, 2.5vw, 28px) 0;
    box-sizing: border-box;
    text-align: center;
}

.digital-wellness-icon {
    width: clamp(48px, 5vw, 56px);
    height: clamp(48px, 5vw, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.digital-wellness-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.digital-wellness-item-title {
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 130%;
    color: #00A68A;
    margin: 0;
    text-align: center;
}

.digital-wellness-item-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 145%;
    color: var(--neutral-700);
    margin: 0;
    text-align: center;
}

.digital-wellness-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(24px, 3vw, 40px);
}

.digital-wellness-cta {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .digital-wellness-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .digital-wellness-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {

    .digital-wellness-section {
        padding: 40px 20px 56px;
    }

    .digital-wellness-inner {
        gap: 20px;
    }
}

/* Logo Bar Section */
.logo-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(20px, 5vw, 55px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logos-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(48px, 7vw, 80px) 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: min(1170px, 92vw);
    border-width: 1px 0;
    border-style: solid;
    border-color: var(--border-grey);
}

.logo-bar .headline-subhead {
    width: 100%;
    max-width: 100%;
}

.brand-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    gap: clamp(12px, 1.5vw, 16px);
    width: 100%;
    max-width: min(1170px, 92vw);
    margin-top: clamp(20px, 2.5vw, 30px);
}

.brand-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 2vw, 20px);
    gap: clamp(6px, 0.8vw, 8px);
    width: 100%;
    min-width: 0;
    max-width: 280.5px;
    min-height: clamp(160px, 18vw, 205px);
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    border-radius: clamp(16px, 2vw, 20px);
    flex: 1 1 min(280.5px, 100%);
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    width: clamp(72px, 8vw, 99px);
    height: clamp(40px, 5vw, 53px);
}

.brand-logo-img {
    width: clamp(72px, 8vw, 99px);
    height: clamp(24px, 3vw, 34px);
    min-width: 72px;
    min-height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .brand-logo-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

.brand-description {
    width: 100%;
    max-width: 240.5px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 16px);
    line-height: 150%;
    color: var(--text-dark);
}

/* Included Features Section */
.included-features-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 80px 55px 60px;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    background: var(--background);
}

.included-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 50px;
    width: 100%;
    max-width: 1170px;
}

.included-features-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    max-width: 1170px;
}

.included-features-description {
    width: 100%;
    max-width: 800px;
    height: auto;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 150%;
    text-align: center;
    color: var(--text-dark);
}

.features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    max-width: 1170px;
    margin-top: 50px;
}

.feature-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    width: 600px;
    min-height: 107px;
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    border-radius: 20px;
}

.feature-check-icon {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12.2px;
    gap: 6.1px;
    width: 50px;
    height: 50px;
    background: var(--secondary-cta-bg);
    border-radius: 12.2px;
    flex-shrink: 0;
}

.check-mark {
    width: 26px;
    height: 16px;
    border: 2px solid var(--primary-cta);
    border-top: none;
    border-right: none;
    transform: rotate(310deg);
    margin: auto;
    margin-bottom: 10px;
}

.feature-item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex: 1;
}

.feature-item-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 130%;
    color: var(--text-dark);
}

.feature-item-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 150%;
    color: var(--text-dark);
}

/* Metrics Section */
.metrics-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 55px);
    gap: clamp(32px, 4vw, 50px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--background);
}

    .metrics-section .headline-subhead {
        width: 100%;
        max-width: min(1170px, 92vw);
    }

.metrics-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: min(1170px, 92vw);
}

.metric-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(32px, 4vw, 48px) clamp(12px, 2vw, 28px);
    gap: clamp(10px, 1.2vw, 15px);
    width: 100%;
    min-width: 0;
    max-width: 370px;
    min-height: clamp(240px, 28vw, 283px);
    background: var(--white);
    border-bottom: 4px solid var(--accent-pink);
    box-shadow: 34.85px 29.63px 48.34px rgba(51, 102, 255, 0.05);
    border-radius: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 20px) 0 0;
    flex: 1 1 min(370px, 100%);
}

.metric-number {
    width: 100%;
    min-height: clamp(72px, 9vw, 98px);
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 130%;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-label {
    width: 100%;
    min-height: clamp(60px, 8vw, 84px);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 16px);
    line-height: 130%;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Easy Quick Flexible Section */
.easy-quick-flexible {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 55px);
    gap: clamp(24px, 3vw, 36px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--background);
}

    .easy-quick-flexible .headline-subhead {
        width: 100%;
        max-width: min(1170px, 92vw);
    }

.easy-quick-subtitle {
    width: 100%;
    max-width: min(808px, 85vw);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 21px);
    line-height: 150%;
    text-align: center;
    color: var(--text-dark);
    margin-top: clamp(8px, 1vw, 12px);
}

.easy-quick-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: min(1170px, 92vw);
    margin-top: clamp(24px, 3vw, 36px);
}

.easy-quick-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 30px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    min-width: 0;
    max-width: 370px;
    min-height: 350px;
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    box-shadow: 34.85px 29.63px 48.34px rgba(51, 102, 255, 0.05);
    border-radius: clamp(16px, 2vw, 20px);
    flex: 1 1 min(370px, 100%);
}

    .easy-quick-card .card-info,
    .easy-quick-card .card-text {
        width: 100%;
        max-width: 100%;
    }

    .easy-quick-card .card-title,
    .easy-quick-card .card-description {
        width: 100%;
        max-width: 100%;
        font-size: clamp(18px, 2vw, 28px);
    }

    .easy-quick-card .card-description {
        font-size: clamp(16px, 1.1vw, 18px);
    }

.easy-quick-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: clamp(16px, 1.8vw, 20px);
    gap: 10px;
    width: clamp(100px, 12vw, 140px);
    height: clamp(100px, 12vw, 140px);
    min-width: 100px;
    min-height: 100px;
    background: var(--secondary-cta-bg);
    border-radius: 100px;
    flex-shrink: 0;
}

    .easy-quick-icon svg {
        width: clamp(56px, 7vw, 78px);
        height: clamp(40px, 5vw, 57px);
        max-width: 78px;
        max-height: 57px;
        fill: var(--primary-cta);
    }

    .easy-quick-icon i {
        font-size: clamp(36px, 4vw, 48px);
        color: var(--primary-cta);
    }

.easy-quick-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 350px;
    min-height: 60px;
    background: var(--primary-cta);
    border-radius: clamp(16px, 2vw, 20px);
    margin-top: clamp(24px, 3vw, 36px);
}

/* Testimonials Section */
.testimonials-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 55px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
    background: var(--background);
}

    .testimonials-section .headline-subhead {
        width: 100%;
        max-width: min(1170px, 92vw);
    }

.testimonials-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: min(1170px, 92vw);
    margin-top: clamp(20px, 2.5vw, 30px);
}

.testimonial-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(28px, 3.5vw, 40px);
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    min-width: 0;
    max-width: 570px;
    min-height: clamp(240px, 26vw, 271px);
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    box-shadow: 34.85px 29.63px 48.34px rgba(51, 102, 255, 0.05);
    border-radius: clamp(16px, 2vw, 20px);
    flex: 1 1 min(570px, 100%);
}

.testimonial-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 100%;
}

.client-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: clamp(12px, 1.2vw, 16px);
    width: 100%;
    max-width: 180px;
}

.client-photo {
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: var(--primary-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    overflow: hidden;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 6px;
    width: 100%;
    max-width: 180px;
}

.person-name {
    width: 100%;
    font-family: 'Zilla Slab', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 130%;
    text-align: center;
    color: var(--neutral-900);
}

.person-role {
    width: 100%;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 1.2vw, 14px);
    line-height: 160%;
    text-align: center;
    color: var(--neutral-700);
}

.testimonial-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: clamp(16px, 2vw, 24px);
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.star-rating {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: clamp(3px, 0.4vw, 5px);
    width: 100%;
}

.star-icon {
    width: clamp(18px, 2.2vw, 24px);
    height: clamp(17px, 2.1vw, 23.08px);
    min-width: 18px;
    min-height: 17px;
    background: var(--star-yellow);
    border: 2px solid var(--star-yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-quote {
    width: 100%;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 16px);
    line-height: 150%;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 60px 55px 120px;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    background: var(--background);
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 50px;
    width: 100%;
    max-width: 1170px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    width: 100%;
    max-width: 1170px;
    margin-top: 20px;
}

.faq-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 0;
    width: 100%;
    max-width: 1170px;
    min-height: 90px;
    background: var(--white);
    border: 1px solid var(--secondary-cta-bg);
    border-radius: 20px;
    cursor: pointer;
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s ease;
}

    .faq-item:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.faq-question-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.faq-question {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.faq-question-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 150%;
    color: var(--text-dark);
}

.faq-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12.2px;
    gap: 6.1px;
    width: 50px;
    height: 50px;
    background: var(--secondary-cta-bg);
    border-radius: 12.2px;
    flex-shrink: 0;
    margin-left: auto;
}

.caret-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-cta);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin-bottom: 10px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .caret-icon {
    transform: rotate(135deg);
    margin-top: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding-top: 20px;
}

.faq-answer-content {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--text-dark);
    padding: 0;
    padding-top: 4px;
}

/* FAQ answer lists: bullets for ul, numbers for ol */
.faq-answer-content .faq-list-bullets,
.faq-list-bullets {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

.faq-answer-content .faq-list-bullets li,
.faq-list-bullets li {
    margin: 0.25em 0;
}

.faq-answer-content .faq-list-numbers,
.faq-list-numbers {
    list-style-type: decimal;
    padding-left: 1.5em;
    margin: 0.5em 0;
}

.faq-answer-content .faq-list-numbers li,
.faq-list-numbers li {
    margin: 0.25em 0;
}

/* Footer - full width of window */
footer {
    width: 100%;
    min-height: 80px;
    background: var(--text-dark);
    box-sizing: border-box;
}

.footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 60px;
    min-height: 80px;
    box-sizing: border-box;
}

.footer-copyright {
    flex: 1;
    min-width: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 16px;
    flex-shrink: 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: var(--social-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: var(--primary-cta);
    }

/* Navbar: when buttons would wrap, show hamburger menu instead */
@media (max-width: 980px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        max-width: 100%;
        height: 100%;
        min-height: 100vh;
        background: var(--background);
        padding: 24px;
        gap: 24px;
        z-index: 1050;
        margin: 0;
    }

    .nav-menu.active .highlighted-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .nav-menu.active .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .menu-close {
        display: none;
        position: absolute;
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        background: var(--secondary-cta-bg);
        color: var(--primary-cta);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
    }

    .menu-close:hover {
        background: var(--primary-cta);
        color: var(--white);
    }

    .nav-menu.active .menu-close {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Responsive Design - Mobile (375px) */
@media (max-width: 768px) {

    .mobile-ring-2 {
        border: clamp(8px, 3.2vw, 31.55px) solid var(--accent-persimmon);
    }

    .landing-page {
        width: 100%;
        max-width: 375px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navbar Mobile */
    .navbar {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 20px;
        width: 100%;
        height: 65px;
    }

    /* Hero Section Mobile */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        width: 100%;
        height: auto;
        min-height: 802.38px;
    }

    .hero-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 40px;
        width: 335px;
        height: auto;
    }

    .hero-header-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 12px;
        width: 335px;
        height: auto;
    }

    .hero-badge {
        width: 335px;
        height: 60px;
        text-align: center;
    }

    .hero-title {
        width: 335px;
        height: 147px;
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle {
        width: 335px;
        height: 96px;
        text-align: center;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 0;
        gap: 18px;
        width: 100%;
        max-width: 273px;
    }

    .hero-cta-badge {
        width: 100%;
    }

    .btn-primary {
        width: 273px;
        height: 60px;
    }

    .hero-visuals {
        width: 100%;
        max-width: 280px;
        height: 0;
        padding-bottom: 76.8%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    /* Mobile: keep circle and rings round using same width/height (padding-bottom %) */
    .illustration-circle {
        width: 75%;
        padding-bottom: 75%;
        height: 0;
        left: 12%;
        top: 1%;
        box-sizing: content-box;
    }

    .illustration-ring-1 {
        width: 25%;
        padding-bottom: 25%;
        height: 0;
        left: 62%;
        top: 1%;
        border-width: 15.1px;
        border-style: solid;
        border-color: var(--primary-cta);
        box-sizing: content-box;
    }

    .illustration-ring-2 {
        width: 15%;
        padding-bottom: 15%;
        height: 0;
        left: 16%;
        top: 60%;
        border-width: 15.1px;
        border-style: solid;
        border-color: var(--accent-persimmon);
        box-sizing: content-box;
    }

    .desktop-mockup {
        width: 96%;
        left: 0;
        top: 12%;
        aspect-ratio: 565 / 341;
        max-width: 270px;
        height: auto;
        border-radius: 7.24px;
    }

    #hero-img {
        object-fit: fill;
        border-radius: 7.24px;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 24px 20px 60px;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }

    .headline-subhead {
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        width: 100%;
        font-size: clamp(22px, 5.5vw, 38px);
    }

    .section-subtitle {
        width: 100%;
        max-width: 100%;
        font-size: clamp(16px, 3.8vw, 16px);
    }

    .cards-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: 24px;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        flex: 1 1 auto;
    }

    .feature-cards-four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-cards-four .feature-card-four {
        width: 100%;
        max-width: 100%;
    }

    .card-info {
        width: 100%;
        max-width: 100%;
    }

    .card-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(18px, 4.5vw, 26px);
    }

    .card-description {
        width: 100%;
        max-width: 100%;
        font-size: clamp(16px, 3.8vw, 16px);
    }

    /* Member Cover Section Mobile */
    .member-cover-section {
        padding: 32px 20px 48px;
    }

    .member-cover-inner {
        max-width: 100%;
        gap: 20px;
    }

    .member-cover-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .member-cover-desc,
    .member-cover-value {
        flex: none;
    }

    /* Highlighted CTA Section Mobile – same pattern as hero mobile */
    .highlighted-cta-section {
        flex-direction: column;
        padding: 40px 20px 60px;
        gap: clamp(40px, 10vw, 60px);
        width: 100%;
        max-width: 100%;
    }

    .highlighted-visuals {
        width: 100%;
        /* max-width: 376px; */
        height: 335px;
        padding-bottom: 83.33%;
        margin-left: auto;
        margin-right: auto;
        min-height: 0;
    }

    .highlighted-header {
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        gap: clamp(24px, 5vw, 40px);
    }

    .highlighted-header-content {
        align-items: center;
        width: 100%;
        max-width: 100%;
        gap: clamp(12px, 3vw, 20px);
    }

    .highlighted-title {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: clamp(22px, 5.5vw, 34px);
    }

    .highlighted-description {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: clamp(15px, 4vw, 18px);
    }

    .highlighted-header .hero-ctas {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        gap: 18px;
        width: 100%;
        max-width: 100%;
    }

    .highlighted-header .btn-primary {
        width: 100%;
        max-width: 335px;
    }

    /* Logo Bar Mobile */
    .logo-bar {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .logos-container {
        width: 100%;
        max-width: 100%;
        padding: 48px 0;
        gap: 24px;
    }

    .logo-bar .headline-subhead {
        width: 100%;
        max-width: 100%;
    }

    .brand-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 12px;
        margin-top: 24px;
    }

    .brand-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        flex: 1 1 100%;
    }

    .brand-description {
        width: 100%;
        max-width: 100%;
        font-size: clamp(16px, 4vw, 16px);
    }

    /* Included Features Section Mobile */
    .included-features-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 40px 20px 30px;
        gap: 60px;
        width: 375px;
        height: auto;
    }

    .included-features-header {
        width: 335px;
        height: auto;
    }

    .included-features-content {
        width: 335px;
        height: 551px;
    }

    .section-title {
        width: 335px;
    }

    .included-features-description {
        width: 335px;
        max-width: 800px;
        height: 384px;
    }

    .features-list {
        width: 335px;
        height: auto;
    }

    .feature-item {
        width: 335px;
        min-height: 166px;
    }

    .feature-item-text {
        width: 225px;
    }

    .feature-item-title {
        width: 225px;
        height: auto;
    }

    .feature-item-description {
        width: 225px;
        height: auto;
    }

    /* Metrics Section Mobile */
    .metrics-section {
        padding: clamp(40px, 10vw, 60px) 20px;
        gap: clamp(32px, 6vw, 50px);
        width: 100%;
        max-width: 100%;
    }

        .metrics-section .headline-subhead {
            width: 100%;
            max-width: 100%;
        }

        .metrics-section .section-title {
            width: 100%;
            max-width: 100%;
        }

    .metrics-grid {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }

    .metric-item {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: clamp(220px, 45vw, 283px);
        flex: 1 1 100%;
    }

    .metric-number {
        width: 100%;
        max-width: 100%;
        min-height: clamp(64px, 14vw, 98px);
        font-size: clamp(22px, 5.5vw, 34px);
    }

    .metric-label {
        width: 100%;
        max-width: 100%;
        min-height: clamp(56px, 12vw, 84px);
        font-size: clamp(16px, 3.8vw, 16px);
    }

    /* Easy Quick Flexible Mobile */
    .easy-quick-flexible {
        padding: clamp(40px, 10vw, 60px) 20px;
        gap: clamp(24px, 5vw, 36px);
        width: 100%;
        max-width: 100%;
    }

        .easy-quick-flexible .headline-subhead {
            width: 100%;
            max-width: 100%;
        }

        .easy-quick-flexible .section-title {
            width: 100%;
            max-width: 100%;
        }

    .easy-quick-subtitle {
        width: 100%;
        max-width: 100%;
        font-size: clamp(15px, 4vw, 19px);
    }

    .easy-quick-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        margin-top: 24px;
    }

    .easy-quick-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        flex: 1 1 100%;
    }

        .easy-quick-card .card-info,
        .easy-quick-card .card-title,
        .easy-quick-card .card-description {
            width: 100%;
            max-width: 100%;
        }

    .easy-quick-cta {
        width: 100%;
        max-width: 350px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: clamp(60px, 15vw, 100px) 20px;
        gap: clamp(20px, 4vw, 30px);
        width: 100%;
        max-width: 100%;
    }

        .testimonials-section .headline-subhead {
            width: 100%;
            max-width: 100%;
        }

        .testimonials-section .section-title {
            width: 100%;
            max-width: 100%;
        }

    .testimonials-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        margin-top: 20px;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        flex: 1 1 100%;
    }

    .testimonial-info {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }

    .client-info,
    .person-details {
        max-width: 100%;
    }

    .testimonial-text-content {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
    }

        .testimonial-text-content .testimonial-quote {
            order: 1;
            text-align: center;
            width: 100%;
            max-width: 100%;
        }

        .testimonial-text-content .star-rating {
            order: 2;
            width: 100%;
            max-width: 100%;
            justify-content: center;
        }

    .testimonial-quote,
    .star-rating {
        width: 100%;
        max-width: 100%;
    }

    /* FAQ Mobile */
    .faq-section {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 60px 20px 120px;
        gap: 60px;
        width: 375px;
        height: auto;
    }

    .faq-header {
        width: 335px;
        height: auto;
    }

    .headline-subhead {
        width: 335px;
    }

    .section-title {
        width: 335px;
    }

    .faq-content {
        width: 335px;
        height: auto;
    }

    .faq-item {
        width: 335px;
        min-height: 90px;
    }

    .faq-question-row {
        width: 100%;
    }

    .faq-question {
        width: auto;
        min-width: 0;
        height: auto;
    }

    .faq-question-text {
        width: auto;
        max-width: 100%;
        height: auto;
    }

    /* Footer - tablet/small desktop */
    .footer-inner {
        padding: 24px 40px;
    }
}

@media (max-width: 480px) {
    /* Footer - mobile: stack and center */

    .mobile-ring-2 {
        border: clamp(8px, 4vw, 31.55px) solid var(--accent-persimmon);
    }

    .highlighted-visuals {
        width: 100%;
        /* height: 0; */
        padding-bottom: 83.33%;
        margin-left: auto;
        margin-right: auto;
        min-height: 0;
        height: clamp(85vw, 40vw, 450px);
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 24px 20px;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .landing-page {
        max-width: 100%;
    }

    .navbar {
        padding: 20px;
        height: 65px;
    }

    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 38px;
    }

    .btn-primary {
        width: 100%;
        max-width: 335px;
    }

    .feature-card,
    .brand-card,
    .metric-item,
    .testimonial-card,
    .easy-quick-card,
    .faq-item {
        width: 100%;
    }
}

.img-dark {
    -webkit-filter: contrast(175%) brightness(3%);
    filter: contrast(175%) brightness(3%);
}

/* Scroll-triggered section animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .scroll-animate.in-view {
        opacity: 1;
        transform: translateY(0);
    }


.faq-answer-content p{
    margin-bottom:1rem;
}