    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }
    
     :root {
        --green: #3D8B4F;
        --green-dark: #2D6E3C;
        --green-deeper: #1A4D2E;
        --green-muted: #5A9E6A;
        --green-soft: rgba(61, 139, 79, .08);
        --green-softer: rgba(61, 139, 79, .04);
        --green-glow: rgba(61, 139, 79, .12);
        --warm: #F5EDE3;
        --warm-dark: #EDE0D0;
        --warm-light: #FAF7F2;
        --warm-lighter: #FDFBF8;
        --beige: #C4A87A;
        --beige-light: #E8D9BF;
        --beige-soft: rgba(196, 168, 122, .1);
        --orange: #D4872E;
        --orange-dark: #B8721F;
        --orange-soft: rgba(212, 135, 46, .08);
        --orange-glow: rgba(212, 135, 46, .12);
        --white: #fff;
        --off-white: #FCFCFB;
        --cream: #FAFAF7;
        --g50: #F8F9FA;
        --g100: #F1F3F5;
        --g200: #E9ECEF;
        --g300: #DEE2E6;
        --g400: #ADB5BD;
        --g500: #868E96;
        --g600: #495057;
        --g700: #343A40;
        --g800: #212529;
        --g900: #0F1114;
        --r-sm: 10px;
        --r: 16px;
        --r-lg: 24px;
        --r-xl: 32px;
        --s-xs: 0 1px 3px rgba(0, 0, 0, .03);
        --s-sm: 0 2px 8px rgba(0, 0, 0, .04);
        --s-md: 0 4px 20px rgba(0, 0, 0, .06);
        --s-lg: 0 8px 32px rgba(0, 0, 0, .08);
        --s-xl: 0 20px 50px rgba(0, 0, 0, .1);
        --s-green: 0 8px 30px rgba(61, 139, 79, .2);
        --ease: cubic-bezier(.22, .61, .36, 1);
        --t: all .4s cubic-bezier(.22, .61, .36, 1);
    }
    
    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased
    }
    
    body {
        font-family: 'DM Sans', sans-serif;
        color: var(--g600);
        background: var(--off-white);
        overflow-x: hidden;
        line-height: 1.7
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--g800);
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -.02em
    }
    
    a {
        text-decoration: none;
        color: inherit
    }
    
    img {
        max-width: 100%;
        display: block
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px
    }
    /* ===== NAV ===== */
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(252, 252, 251, .85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid transparent;
        transition: var(--t)
    }
    
    .navbar.scrolled {
        border-bottom-color: rgba(0, 0, 0, .06);
        box-shadow: 0 1px 12px rgba(0, 0, 0, .04)
    }
    
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px
    }
    
    .nav-logo img {
        height: 82px;
    }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none
    }
    
    .nav-links a {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .85rem;
        font-weight: 500;
        color: var(--g500);
        transition: color .3s;
        letter-spacing: -.01em
    }
    
    .nav-links a:hover {
        color: var(--green)
    }
    
    .nav-cta {
        background: var(--green) !important;
        color: white !important;
        padding: 11px 26px !important;
        border-radius: var(--r-sm) !important;
        font-weight: 600 !important;
        box-shadow: var(--s-green) !important;
        transition: var(--t) !important
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .logo-img {
        width: 100px;
        margin-top: 12px;
        height: 65px;
        object-fit: contain;
    }
    
    .logo-text h4 {
        font-size: 1.6rem;
        color: #1e3a5f;
        letter-spacing: 1px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 2px;
    }
    
    .logo-text small {
        display: block;
        color: #4c9451;
        font-size: 0.80rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }
    
    @media (max-width:768px) {
        .logo-img {
            width: 50px;
            height: 50px;
        }
        .logo-text h4 {
            font-size: 1rem;
        }
        .logo-text small {
            font-size: 0.65rem;
        }
    }
    
    .btn-events {
        position: relative;
        padding: 16px 38px;
        border-radius: 60px;
        border: none;
        cursor: pointer;
        background: linear-gradient(151deg, #59d66f 0%, #7fe089 30%, #ff9b4a 60%);
        color: #fff;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: .5px;
        box-shadow: 0 10px 25px rgba(89, 214, 111, .35), 0 15px 40px rgba(255, 155, 74, .25);
        transition: all .4s ease;
        overflow: hidden;
    }
    
    .btn-events {
        animation: pulseGlow 2s infinite;
    }
    
    @keyframes pulseGlow {
        0%,
        100% {
            box-shadow: 0 0 15px rgba(89, 214, 111, .3), 0 0 25px rgba(255, 155, 74, .2);
        }
        50% {
            box-shadow: 0 0 30px rgba(89, 214, 111, .6), 0 0 60px rgba(255, 155, 74, .5);
        }
    }
    
    .btn-events:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 25px rgba(89, 214, 111, .6), 0 0 50px rgba(255, 155, 74, .45), 0 15px 45px rgba(0, 0, 0, .15);
    }
    
    #whatsapp_icon {
        position: fixed;
        right: 20px;
        bottom: 5%;
        cursor: pointer;
        opacity: 1;
        z-index: 9999;
        animation: bounce 2s infinite;
        -webkit-animation: bounce 2s infinite;
        -moz-animation: bounce 2s infinite;
        -o-animation: bounce 2s infinite;
    }
    
    .nav-cta:hover {
        background: var(--green-dark) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 32px rgba(61, 139, 79, .28) !important
    }
    
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 8px
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--g700);
        border-radius: 2px;
        transition: var(--t)
    }
    /* ===== BTN ===== */
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        font-size: .9rem;
        border-radius: var(--r-sm);
        transition: var(--t);
        cursor: pointer;
        border: none;
        letter-spacing: -.01em;
        position: relative;
        overflow: hidden
    }
    
    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent);
        opacity: 0;
        transition: opacity .3s
    }
    
    .btn:hover::before {
        opacity: 1
    }
    
    .btn-primary {
        background: var(--green);
        color: white;
        padding: 14px 32px;
        box-shadow: var(--s-green)
    }
    
    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(61, 139, 79, .3)
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--green-dark);
        padding: 14px 32px;
        border: 1.5px solid var(--green)
    }
    
    .btn-secondary:hover {
        background: var(--green-soft);
        transform: translateY(-1px)
    }
    
    .btn-orange {
        background: var(--orange);
        color: white;
        padding: 14px 32px;
        box-shadow: 0 8px 24px rgba(212, 135, 46, .2)
    }
    
    .btn-orange:hover {
        background: var(--orange-dark);
        transform: translateY(-2px)
    }
    
    .btn-white {
        background: white;
        color: var(--green-dark);
        padding: 14px 32px;
        box-shadow: var(--s-md)
    }
    
    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: var(--s-lg)
    }
    
    .btn-sm {
        padding: 11px 24px;
        font-size: .84rem
    }
    /* ===== SECTIONS ===== */
    
    section {
        padding: 120px 0
    }
    
    .s-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 16px
    }
    
    .s-label.green {
        color: var(--green)
    }
    
    .s-label.orange {
        color: var(--orange)
    }
    
    .s-label .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%
    }
    
    .s-label.green .dot {
        background: var(--green)
    }
    
    .s-label.orange .dot {
        background: var(--orange)
    }
    
    .s-title {
        font-size: clamp(1.9rem, 3.5vw, 2.75rem);
        margin-bottom: 18px;
        letter-spacing: -.03em
    }
    
    .s-desc {
        font-size: 1.05rem;
        color: var(--g500);
        max-width: 560px;
        line-height: 1.85
    }
    
    .tc {
        text-align: center
    }
    
    .mx {
        margin-left: auto;
        margin-right: auto
    }
    /* ===== HERO ===== */
    
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 134px;
        position: relative;
        overflow: hidden;
        background: var(--off-white)
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 52%;
        height: 100%;
        background: var(--warm-lighter);
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%)
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 12%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, var(--green-glow), transparent 70%);
        border-radius: 50%;
        transform: translateY(-50%);
        animation: breathe 8s ease-in-out infinite
    }
    
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1
    }
    
    .hero-content {
        animation: fadeUp 1s var(--ease) both
    }
    
    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--green-soft);
        border: 1px solid rgba(61, 139, 79, .1);
        padding: 8px 20px;
        border-radius: 100px;
        margin-bottom: 30px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .78rem;
        font-weight: 600;
        color: var(--green-dark)
    }
    
    .hero-eyebrow .pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse 2.5s infinite
    }
    
    .hero h1 {
        font-size: clamp(2.4rem, 4.5vw, 3.4rem);
        font-weight: 800;
        margin-bottom: 22px;
        letter-spacing: -.04em;
        line-height: 1.1
    }
    
    .hero h1 em {
        font-style: normal;
        color: var(--green)
    }
    
    .hero h1 .orange {
        color: var(--orange)
    }
    
    .hero-text {
        font-size: 1rem;
        color: var(--g500);
        margin-bottom: 14px;
        max-width: 460px;
        line-height: 1.85
    }
    
    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 32px;
        margin-bottom: 44px
    }
    
    .hero-trust {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-top: 28px;
        border-top: 1px solid var(--g200)
    }
    
    .trust-faces {
        display: flex
    }
    
    .trust-faces span {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2.5px solid white;
        margin-left: -9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        box-shadow: var(--s-xs)
    }
    
    .trust-faces span:first-child {
        margin-left: 0
    }
    
    .trust-faces span:nth-child(1) {
        background: var(--green)
    }
    
    .trust-faces span:nth-child(2) {
        background: var(--orange)
    }
    
    .trust-faces span:nth-child(3) {
        background: var(--green-dark)
    }
    
    .trust-faces span:nth-child(4) {
        background: var(--beige)
    }
    
    .trust-text {
        font-size: .84rem;
        color: var(--g500);
        line-height: 1.5
    }
    
    .trust-text strong {
        color: var(--g700)
    }
    
    .hero-visual {
        position: relative;
        animation: fadeRight 1.1s var(--ease) .15s both
    }
    
    .hero-card {
        background: white;
        border-radius: var(--r-xl);
        padding: 44px;
        box-shadow: var(--s-xl);
        border: 1px solid rgba(0, 0, 0, .03);
        position: relative
    }
    
    .hero-card .logo-area {
        text-align: center;
        margin-bottom: 16px
    }
    
    .hero-card .logo-area img {
        height: 68px;
        margin: 0 auto
    }
    
    .hero-card .tagline {
        text-align: center;
        font-size: .82rem;
        color: var(--g400);
        margin-bottom: 28px;
        font-weight: 500;
        letter-spacing: .5px
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }
    
    .h-stat {
        text-align: center;
        padding: 20px 14px;
        border-radius: var(--r);
        background: var(--cream);
        border: 1px solid var(--g100);
        transition: var(--t)
    }
    
    .h-stat:hover {
        border-color: var(--green);
        transform: translateY(-3px);
        box-shadow: var(--s-md);
        background: white
    }
    
    .h-stat .val {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--green);
        line-height: 1
    }
    
    .h-stat:nth-child(2) .val,
    .h-stat:nth-child(4) .val {
        color: var(--orange)
    }
    
    .h-stat .lbl {
        font-size: .72rem;
        color: var(--g400);
        margin-top: 6px;
        font-weight: 500;
        letter-spacing: .3px
    }
    
    .hero-badge {
        position: absolute;
        background: white;
        border-radius: var(--r);
        padding: 14px 18px;
        box-shadow: var(--s-lg);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 3;
        border: 1px solid rgba(0, 0, 0, .03)
    }
    
    .hero-badge.top {
        top: -16px;
        right: -16px;
        animation: float 6s ease-in-out infinite
    }
    
    .hero-badge.bottom {
        bottom: -10px;
        left: -24px;
        animation: float 6s ease-in-out 3s infinite
    }
    
    .hb-icon {
        width: 40px;
        height: 40px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px
    }
    
    .hero-badge.top .hb-icon {
        background: var(--green-soft)
    }
    
    .hero-badge.bottom .hb-icon {
        background: var(--orange-soft)
    }
    
    .hb-text {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .76rem;
        font-weight: 600;
        color: var(--g700);
        line-height: 1.3
    }
    
    .hb-text small {
        display: block;
        font-weight: 400;
        color: var(--g400);
        font-size: .68rem
    }
    /* ===== ABOUT ===== */
    
    .about {
        background: var(--cream);
        position: relative
    }
    
    .about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--g200), transparent)
    }
    
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
        align-items: center
    }
    
    .about-img {
        position: relative
    }
    
    .about-img-main {
        width: 100%;
        max-width: 460px;
        aspect-ratio: 4/3.2;
        border-radius: var(--r-xl);
        background: linear-gradient(145deg, var(--green-soft), var(--warm));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 100px;
        box-shadow: var(--s-lg);
        position: relative
    }
    
    .about-accent {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 200px;
        height: 200px;
        border-radius: var(--r-xl);
        background: var(--warm);
        z-index: -1
    }
    
    .about-img-badge {
        position: absolute;
        bottom: 24px;
        left: 24px;
        background: white;
        padding: 16px 22px;
        border-radius: var(--r);
        box-shadow: var(--s-lg);
        display: flex;
        align-items: center;
        gap: 14px
    }
    
    .about-img-badge .num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--green);
        line-height: 1
    }
    
    .about-img-badge .txt {
        font-size: .73rem;
        color: var(--g500);
        font-weight: 500;
        line-height: 1.3
    }
    
    .about-content .s-desc {
        margin-bottom: 16px
    }
    
    .about-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 24px 0 28px
    }
    
    .about-hi {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .88rem;
        font-weight: 500;
        color: var(--g700)
    }
    
    .about-hi .ck {
        width: 24px;
        height: 24px;
        min-width: 24px;
        border-radius: 6px;
        background: var(--green-soft);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800
    }
    /* ===== APPROACH ===== */
    
    .approach-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 56px
    }
    
    .approach-card {
        background: white;
        border-radius: var(--r-lg);
        padding: 0;
        border: 1px solid var(--g100);
        transition: var(--t);
        position: relative;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        height: 100%
    }

    .approach-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #f6f8f3
    }

    .approach-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform .6s var(--ease)
    }

    .approach-card:nth-child(1) .approach-image img {
        object-position: center 68%;
    }

    .approach-card:nth-child(2) .approach-image img {
        object-position: 58% center;
    }

    .approach-card:nth-child(3) .approach-image img {
        object-position: center 62%;
    }

    .approach-card:nth-child(4) .approach-image img {
        object-position: center 62%;
    }

    .approach-card:hover .approach-image img {
        transform: scale(1.06)
    }

    .approach-content {
        padding: 26px 24px 30px;
        display: flex;
        flex: 1;
        flex-direction: column
    }
    
    .approach-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--orange));
        transform: scaleX(0);
        transition: transform .5s var(--ease);
        transform-origin: left
    }
    
    .approach-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--s-xl);
        border-color: transparent
    }
    
    .approach-card:hover::after {
        transform: scaleX(1)
    }
    
    .approach-icon {
        width: 68px;
        height: 68px;
        border-radius: var(--r);
        margin: 0 auto 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        transition: transform .4s
    }
    
    .approach-card:hover .approach-icon {
        transform: scale(1.1) rotate(3deg)
    }
    
    .approach-card:nth-child(1) .approach-icon {
        background: var(--green-soft)
    }
    
    .approach-card:nth-child(2) .approach-icon {
        background: var(--orange-soft)
    }
    
    .approach-card:nth-child(3) .approach-icon {
        background: var(--beige-soft)
    }
    
    .approach-card:nth-child(4) .approach-icon {
        background: var(--green-softer)
    }
    
    .approach-card h3 {
        font-size: 1.05rem;
        margin-bottom: 10px
    }
    
    .approach-card p {
        font-size: .87rem;
        color: var(--g500);
        line-height: 1.7
    }
    /* ===== WHY ===== */
    
    .why {
        background: var(--warm-lighter);
        position: relative
    }
    
    .why::before,
    .why::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        opacity: .5
    }
    
    .why::before {
        top: -100px;
        left: -100px;
        background: radial-gradient(circle, var(--green-glow), transparent 70%)
    }
    
    .why::after {
        bottom: -100px;
        right: -100px;
        background: radial-gradient(circle, var(--orange-glow), transparent 70%)
    }
    
    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 56px
    }
    
    .why-card {
        background: white;
        border-radius: var(--r);
        padding: 30px 24px;
        text-align: center;
        border: 1px solid var(--g100);
        transition: var(--t);
        position: relative
    }
    
    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--s-lg);
        border-color: rgba(61, 139, 79, .15)
    }
    
    .why-icon {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: transform .3s
    }
    
    .why-card:hover .why-icon {
        transform: scale(1.1)
    }
    
    .why-card:nth-child(odd) .why-icon {
        background: var(--green-soft)
    }
    
    .why-card:nth-child(even) .why-icon {
        background: var(--orange-soft)
    }
    
    .why-card h4 {
        font-size: .92rem;
        margin-bottom: 6px
    }
    
    .why-card p {
        font-size: .82rem;
        color: var(--g500)
    }
    /* ===== FOUNDER ===== */
    
    .founder-grid {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 80px;
        align-items: center
    }
    
    .founder-photo {
        position: relative
    }
    
    .founder-photo-main {
        width: 100%;
        max-width: 380px;
        aspect-ratio: 3/4;
        border-radius: var(--r-xl);
        background: linear-gradient(145deg, var(--green-soft), var(--warm));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 120px;
        box-shadow: var(--s-lg);
        overflow: hidden;
        position: relative
    }
    
    .founder-photo-main::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(26, 77, 46, .05))
    }
    
    .founder-accent {
        position: absolute;
        top: -16px;
        right: -16px;
        width: 180px;
        height: 180px;
        border-radius: var(--r-xl);
        background: var(--warm);
        z-index: -1;
        opacity: .6
    }
    
    .founder-exp {
        position: absolute;
        bottom: -12px;
        right: -12px;
        background: white;
        padding: 18px 26px;
        border-radius: var(--r);
        box-shadow: var(--s-lg)
    }
    
    .founder-exp .num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--green), var(--orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1
    }
    
    .founder-exp .txt {
        font-size: .73rem;
        color: var(--g400);
        font-weight: 500
    }
    
    .founder-info h2 {
        margin-bottom: 6px
    }
    
    .founder-creds {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 6px
    }
    
    .founder-creds span {
        background: var(--green-soft);
        color: var(--green-dark);
        padding: 4px 14px;
        border-radius: 6px;
        font-size: .76rem;
        font-weight: 600;
        font-family: 'Plus Jakarta Sans', sans-serif
    }
    
    .founder-role {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--orange);
        font-weight: 600;
        font-size: .88rem;
        margin-bottom: 8px
    }
    
    .founder-badges {
        display: flex;
        gap: 6px;
        margin-bottom: 20px
    }
    
    .founder-badges span {
        background: var(--orange-soft);
        color: var(--orange-dark);
        padding: 4px 12px;
        border-radius: 6px;
        font-size: .73rem;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans', sans-serif
    }
    
    .founder-info p {
        margin-bottom: 14px;
        font-size: .95rem;
        line-height: 1.8
    }
    
    .founder-list {
        list-style: none;
        margin: 18px 0 28px
    }
    
    .founder-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 7px 0;
        font-size: .9rem;
        color: var(--g600)
    }
    
    .founder-list li::before {
        content: '✓';
        width: 24px;
        height: 24px;
        min-width: 24px;
        border-radius: 50%;
        background: var(--green-soft);
        color: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800
    }
    /* ===== TEAM ===== */
    
    .team {
        background: var(--cream)
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
        margin-top: 56px
    }
    
    .t-card {
        background: white;
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid var(--g100);
        transition: var(--t);
        text-align: center
    }
    
    .t-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--s-xl);
        border-color: transparent
    }
    
    .t-photo {
        width: 100%;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        position: relative;
        overflow: hidden
    }
    
    .t-card:nth-child(1) .t-photo {
        background: linear-gradient(145deg, var(--green-soft), var(--warm-light))
    }
    
    .t-card:nth-child(2) .t-photo {
        background: linear-gradient(145deg, var(--orange-soft), var(--warm))
    }
    
    .t-card:nth-child(3) .t-photo {
        background: linear-gradient(145deg, var(--beige-soft), var(--green-softer))
    }
    
    .t-card:nth-child(4) .t-photo {
        background: linear-gradient(145deg, var(--warm), var(--orange-soft))
    }
    
    .t-card:nth-child(5) .t-photo {
        background: linear-gradient(145deg, var(--green-soft), var(--beige-soft))
    }
    
    .t-photo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(transparent, rgba(0, 0, 0, .02))
    }
    
    .t-info {
        padding: 22px 16px 24px
    }
    
    .t-info h4 {
        font-size: .92rem;
        margin-bottom: 4px
    }
    
    .t-info .role {
        font-size: .78rem;
        color: var(--green);
        font-weight: 600;
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-bottom: 8px
    }
    
    .t-info p {
        font-size: .78rem;
        color: var(--g400);
        line-height: 1.5
    }
    
    .t-verified {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: .65rem;
        color: var(--green);
        font-weight: 700;
        font-family: 'Plus Jakarta Sans', sans-serif;
        letter-spacing: .5px;
        margin-top: 6px;
        text-transform: uppercase
    }
    
    .team-cta {
        margin-top: 40px
    }
    /* ===== CONSULTATION ===== */
    
    .consult-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start
    }
    
    .consult-features {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 28px
    }
    
    .cf {
        display: flex;
        align-items: start;
        gap: 14px;
        padding: 18px 20px;
        background: var(--cream);
        border-radius: var(--r);
        transition: var(--t);
        border: 1px solid transparent
    }
    
    .cf:hover {
        background: white;
        border-color: rgba(61, 139, 79, .12);
        box-shadow: var(--s-sm);
        transform: translateX(4px)
    }
    
    .cf-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        background: var(--green-soft)
    }
    
    .cf:nth-child(even) .cf-icon {
        background: var(--orange-soft)
    }
    
    .cf-text {
        font-size: .9rem;
        font-weight: 500;
        color: var(--g700)
    }
    
    .cf-text small {
        display: block;
        font-weight: 400;
        color: var(--g400);
        font-size: .8rem;
        margin-top: 3px
    }
    
    .process-timeline {
        position: relative;
        margin-top: 28px
    }
    
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 28px;
        top: 40px;
        bottom: 40px;
        width: 2px;
        background: linear-gradient(180deg, var(--green), var(--orange))
    }
    
    .p-step {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 18px;
        background: white;
        border-radius: var(--r);
        border: 1px solid var(--g100);
        margin-bottom: 14px;
        position: relative;
        transition: var(--t)
    }
    
    .p-step:hover {
        border-color: rgba(61, 139, 79, .15);
        box-shadow: var(--s-md);
        transform: translateX(4px)
    }
    
    .p-num {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 50%;
        background: var(--green);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        z-index: 1
    }
    
    .p-step:nth-child(even) .p-num {
        background: var(--orange)
    }
    
    .p-step h4 {
        font-size: .9rem;
        margin-bottom: 2px
    }
    
    .p-step p {
        font-size: .8rem;
        color: var(--g400)
    }
    
    .consult-note {
        margin-top: 24px;
        padding: 18px 20px;
        background: var(--orange-soft);
        border-radius: var(--r-sm);
        font-size: .82rem;
        color: var(--orange-dark);
        border-left: 3px solid var(--orange);
        line-height: 1.6
    }
    /* ===== TESTIMONIALS ===== */
    
    .testimonials {
        background: linear-gradient(145deg, var(--green-dark), var(--green-deeper));
        color: white;
        position: relative;
        overflow: hidden
    }
    
    .testimonials::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 70%)
    }
    
    .testimonials .s-label {
        color: rgba(255, 255, 255, .6)
    }
    
    .testimonials .s-label .dot {
        background: rgba(255, 255, 255, .4)
    }
    
    .testimonials .s-title {
        color: white
    }
    
    .testimonials .s-desc {
        color: rgba(255, 255, 255, .55)
    }
    
    .test-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 56px
    }
    
    .test-card {
        background: rgba(255, 255, 255, .06);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: var(--r-lg);
        padding: 36px;
        transition: var(--t)
    }
    
    .test-card:hover {
        background: rgba(255, 255, 255, .1);
        transform: translateY(-4px)
    }
    
    .test-stars {
        color: var(--orange);
        margin-bottom: 16px;
        font-size: .9rem;
        letter-spacing: 2px
    }
    
    .test-card blockquote {
        color: rgba(255, 255, 255, .85);
        font-size: .92rem;
        line-height: 1.8;
        font-style: italic;
        margin-bottom: 22px;
        border: none;
        padding: 0
    }
    
    .test-author {
        display: flex;
        align-items: center;
        gap: 12px
    }
    
    .test-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, .1)
    }
    
    .test-name {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        font-size: .86rem
    }
    /* ===== BLOG ===== */

    .coming-soon-section {
        min-height: 72vh;
        padding: 120px 0 90px;
        display: grid;
        place-items: center;
        background:
            radial-gradient(circle at 15% 20%, rgba(61, 139, 79, .12), transparent 30%),
            radial-gradient(circle at 85% 75%, rgba(212, 135, 46, .12), transparent 32%),
            var(--off-white);
    }

    .coming-soon-card {
        max-width: 820px;
        margin: auto;
        padding: clamp(42px, 7vw, 82px);
        text-align: center;
        border: 1px solid rgba(61, 139, 79, .15);
        border-radius: 32px;
        background: rgba(255, 255, 255, .88);
        box-shadow: 0 24px 70px rgba(34, 72, 43, .10);
        position: relative;
        overflow: hidden;
    }

    .coming-soon-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        right: -70px;
        top: -80px;
        background: rgba(61, 139, 79, .08);
    }

    .coming-soon-icon {
        width: 76px;
        height: 76px;
        margin: 0 auto 24px;
        border-radius: 24px;
        display: grid;
        place-items: center;
        color: white;
        background: linear-gradient(135deg, var(--green), #72ad78);
        font-size: 34px;
        box-shadow: 0 12px 28px rgba(61, 139, 79, .22);
    }

    .events-coming-soon .coming-soon-icon {
        background: linear-gradient(135deg, var(--orange), #e5ad62);
        box-shadow: 0 12px 28px rgba(212, 135, 46, .22);
    }

    .coming-soon-card h1 {
        max-width: 650px;
        margin: 18px auto;
        font-size: clamp(2rem, 5vw, 3.6rem);
        line-height: 1.12;
    }

    .coming-soon-card p {
        max-width: 620px;
        margin: 0 auto 30px;
        color: var(--g500);
        font-size: 1.02rem;
        line-height: 1.8;
    }

    .category-coming-page {
        min-height: 72vh;
        padding-top: 120px;
        background: radial-gradient(circle at 50% 35%, rgba(61,139,79,.07), transparent 36%), var(--off-white);
    }

    .category-coming-card {
        max-width: 760px;
        margin: 36px auto 0;
        padding: clamp(38px, 6vw, 64px);
        border: 1px solid rgba(61,139,79,.15);
        border-radius: 26px;
        background: white;
        box-shadow: 0 20px 55px rgba(34,72,43,.09);
    }

    .category-coming-card > span { display:block; font-size: 2.8rem; margin-bottom: 16px; }
    .category-coming-card h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 10px; }
    .category-coming-card p { color: var(--g500); margin: 0; }

    #blog .blog-tab-content .blog-grid { display: none; }
    #blog .blog-tab-content::after {
        display: block;
        max-width: 720px;
        margin: 36px auto 0;
        padding: 48px 24px;
        border: 1px solid rgba(61,139,79,.15);
        border-radius: 24px;
        background: white;
        box-shadow: 0 18px 48px rgba(34,72,43,.08);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: clamp(1.35rem, 3vw, 2rem);
        font-weight: 700;
        color: var(--g700);
    }
    #blog #tab-homoe::after { content: "🏥  Homoeopathy Blogs Coming Soon"; }
    #blog #tab-physio::after { content: "🏃  Physiotherapy Blogs Coming Soon"; }
    #blog #tab-nutri::after { content: "🥗  Nutrition Blogs Coming Soon"; }
    #blog #tab-dental::after { content: "🦷  Dental Blogs Coming Soon"; }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 56px
    }
    
    .blog-card {
        background: white;
        border-radius: var(--r-lg);
        overflow: hidden;
        border: 1px solid var(--g100);
        transition: var(--t)
    }
    
    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--s-xl);
        border-color: transparent
    }
    
    .blog-thumb {
        height: 210px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        position: relative;
        overflow: hidden
    }
    
    .blog-card:nth-child(1) .blog-thumb {
        background: linear-gradient(145deg, var(--green-soft), var(--warm-light))
    }
    
    .blog-card:nth-child(2) .blog-thumb {
        background: linear-gradient(145deg, var(--orange-soft), var(--warm))
    }
    
    .blog-card:nth-child(3) .blog-thumb {
        background: linear-gradient(145deg, var(--beige-soft), var(--green-softer))
    }
    
    .blog-date {
        position: absolute;
        top: 16px;
        left: 16px;
        background: white;
        padding: 6px 14px;
        border-radius: 8px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .7rem;
        font-weight: 600;
        color: var(--g500);
        box-shadow: var(--s-sm)
    }
    
    .blog-body {
        padding: 28px
    }
    
    .blog-tag {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 6px;
        font-size: .7rem;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans', sans-serif;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: .5px
    }
    
    .blog-card:nth-child(1) .blog-tag {
        background: var(--green-soft);
        color: var(--green-dark)
    }
    
    .blog-card:nth-child(2) .blog-tag {
        background: var(--orange-soft);
        color: var(--orange-dark)
    }
    
    .blog-card:nth-child(3) .blog-tag {
        background: var(--beige-soft);
        color: var(--beige)
    }
    
    .blog-body h3 {
        font-size: 1.02rem;
        margin-bottom: 10px;
        line-height: 1.4
    }
    
    .blog-body p {
        font-size: .85rem;
        color: var(--g500);
        line-height: 1.65;
        margin-bottom: 16px
    }
    
    .blog-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--green);
        font-weight: 600;
        font-size: .84rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        transition: gap .3s
    }
    
    .blog-link:hover {
        gap: 10px
    }

    .blog-thumb {
        position: relative;
        overflow: hidden;
        padding: 0;
    }

    .blog-thumb img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .55s ease;
    }

    .blog-card:hover .blog-thumb img {
        transform: scale(1.06);
    }

    .founder-focus {
        overflow: hidden;
        background: linear-gradient(180deg, #fbfdfb 0%, #f2f8f3 100%);
    }

    .founder-focus-heading {
        max-width: 820px;
        margin: 0 auto 48px;
    }

    .founder-team-card {
        display: grid;
        grid-template-columns: minmax(300px, .75fr) 1.25fr;
        max-width: 1040px;
        margin: 0 auto;
        overflow: hidden;
        border: 1px solid rgba(29, 91, 55, .12);
        border-radius: 26px;
        background: #fff;
        box-shadow: 0 24px 70px rgba(23, 69, 43, .12);
    }

    .founder-focus-photo {
        position: relative;
        min-height: 470px;
        overflow: hidden;
        background: var(--green-softer);
    }

    .founder-focus-photo::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 32%;
        background: linear-gradient(transparent, rgba(15, 60, 38, .18));
    }

    .founder-focus-photo img {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        object-fit: cover;
        object-position: center top;
    }

    .founder-focus-copy {
        padding: clamp(34px, 5vw, 62px);
        align-self: center;
        text-align: left;
    }

    .founder-card-topline {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        color: var(--orange);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .verified-expert {
        padding: 7px 11px;
        border-radius: 999px;
        color: var(--green);
        background: var(--green-softer);
        letter-spacing: 0;
        text-transform: none;
    }

    .verified-expert::before { content: "✓ "; }

    .founder-focus-copy h3 {
        margin-bottom: 10px;
        color: var(--g900);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: clamp(1.75rem, 3vw, 2.45rem);
    }

    .founder-card-creds {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 9px;
        margin-bottom: 22px;
        color: var(--g600);
        font-size: .83rem;
        font-weight: 600;
    }

    .founder-card-creds i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--orange);
    }

    .founder-focus-copy > p { color: var(--g600); line-height: 1.75; }

    .founder-focus-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 18px;
        margin: 26px 0 30px;
    }

    .founder-focus-points span {
        display: flex;
        align-items: center;
        gap: 9px;
        color: var(--g800);
        font-size: .85rem;
        font-weight: 600;
    }

    .founder-focus-points span::before {
        content: "✓";
        width: 23px;
        height: 23px;
        border-radius: 50%;
        display: inline-grid;
        place-items: center;
        color: #fff;
        background: var(--green);
        flex: 0 0 auto;
        font-size: .72rem;
    }

    @media (max-width: 760px) {
        .founder-team-card { grid-template-columns: 1fr; }
        .founder-focus-photo { min-height: 400px; }
        .founder-focus-points { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
        .founder-focus-heading { margin-bottom: 32px; }
        .founder-focus-photo { min-height: 350px; }
        .founder-focus-copy { padding: 28px 22px 32px; }
        .founder-card-topline { align-items: flex-start; flex-direction: column; }
    }
    /* ===== EVENTS ===== */
    
    .events-strip {
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
        padding: 0;
        overflow: hidden;
        position: relative
    }
    
    .events-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    }
    
    .events-marquee {
        overflow: hidden;
        white-space: nowrap;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }
    
    .events-marquee-inner {
        display: inline-flex;
        animation: marquee 25s linear infinite;
        gap: 80px
    }
    
    .events-marquee-inner span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: white;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .88rem;
        font-weight: 500
    }
    
    .events-marquee-inner span em {
        font-style: normal;
        opacity: .7
    }
    
    .events-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 28px 32px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1
    }
    
    .events-main .ev-icon {
        font-size: 32px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .1))
    }
    
    .events-main .ev-text {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: white;
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.4
    }
    
    .events-main .ev-text span {
        font-weight: 400;
        opacity: .9
    }
    
    .ev-btn {
        background: white;
        color: var(--orange-dark);
        padding: 12px 28px;
        border-radius: var(--r-sm);
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        font-size: .85rem;
        transition: var(--t);
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
    }
    
    .ev-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
    }
    /* ===== CONTACT ===== */
    
    .contact {
        background: var(--cream);
        position: relative
    }
    
    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--g200), transparent)
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px
    }
    
    .ci-card {
        background: white;
        border-radius: var(--r);
        padding: 22px 24px;
        border: 1px solid var(--g100);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: var(--t)
    }
    
    .ci-card:hover {
        border-color: rgba(61, 139, 79, .12);
        box-shadow: var(--s-sm);
        transform: translateX(4px)
    }
    
    .ci-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        background: var(--green-soft)
    }
    
    .ci-card:nth-child(even) .ci-icon {
        background: var(--orange-soft)
    }
    
    .ci-label {
        font-size: .73rem;
        color: var(--g400);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Plus Jakarta Sans', sans-serif
    }
    
    .ci-value {
        font-size: .92rem;
        color: var(--g700);
        font-weight: 600;
        margin-top: 2px
    }
    
    .wa-cta {
        display: flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        padding: 18px 24px;
        border-radius: var(--r);
        margin-top: 8px;
        transition: var(--t);
        cursor: pointer
    }
    
    .wa-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(37, 211, 102, .3)
    }
    
    .wa-cta .wa-icon {
        font-size: 28px
    }
    
    .wa-cta .wa-text {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        font-size: .92rem
    }
    
    .wa-cta .wa-text small {
        display: block;
        font-weight: 400;
        opacity: .85;
        font-size: .78rem
    }
    
    .contact-form-wrap {
        background: white;
        border-radius: var(--r-lg);
        padding: 40px;
        border: 1px solid var(--g100);
        box-shadow: var(--s-md)
    }
    
    .contact-form-wrap h3 {
        font-size: 1.2rem;
        margin-bottom: 24px
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px
    }
    
    .form-group.full {
        grid-column: 1/-1
    }
    
    .form-group label {
        font-size: .78rem;
        font-weight: 600;
        color: var(--g600);
        font-family: 'Plus Jakarta Sans', sans-serif
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 16px;
        border: 1.5px solid var(--g200);
        border-radius: var(--r-sm);
        font-family: 'DM Sans', sans-serif;
        font-size: .9rem;
        color: var(--g700);
        outline: none;
        transition: border-color .3s, box-shadow .3s;
        background: var(--off-white)
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px var(--green-soft);
        background: white
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 100px
    }
    
    .form-submit {
        width: 100%;
        margin-top: 8px
    }
    /* ===== NEWSLETTER ===== */
    
    .newsletter {
        background: var(--warm-lighter);
        text-align: center
    }
    
    .nl-form {
        display: flex;
        gap: 12px;
        max-width: 480px;
        margin: 32px auto 0
    }
    
    .nl-form input {
        flex: 1;
        padding: 14px 20px;
        border-radius: var(--r-sm);
        border: 1.5px solid var(--g200);
        font-family: 'DM Sans', sans-serif;
        font-size: .92rem;
        outline: none;
        transition: border-color .3s, box-shadow .3s;
        background: white
    }
    
    .nl-form input:focus {
        border-color: var(--green);
        box-shadow: 0 0 0 3px var(--green-soft)
    }
    /* ===== FINAL CTA ===== */
    
    .final-cta {
        text-align: center;
        background: var(--off-white);
        position: relative;
        overflow: hidden
    }
    
    .final-cta::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 600px;
        height: 600px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, var(--green-softer), transparent 70%);
        border-radius: 50%
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 32px
    }
    /* ===== FOOTER ===== */
    
    .footer {
        background: var(--g900);
        color: rgba(255, 255, 255, .55);
        padding: 72px 0 0
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }
    
    .footer-brand img {
        height: 48px;
        filter: brightness(10)
    }
    
    .footer-brand p {
        font-size: .86rem;
        margin-top: 16px;
        line-height: 1.75
    }
    
    .footer h4 {
        color: white;
        font-size: .88rem;
        margin-bottom: 20px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        letter-spacing: -.01em
    }
    
    .footer ul {
        list-style: none
    }
    
    .footer ul li {
        margin-bottom: 10px
    }
    
    .footer ul a {
        color: rgba(255, 255, 255, .45);
        font-size: .84rem;
        transition: color .3s
    }
    
    .footer ul a:hover {
        color: var(--green)
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0;
        font-size: .78rem
    }
    
    .footer-bottom a {
        color: var(--green);
        font-weight: 500
    }
    /* ===== ANIMATIONS ===== */
    
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px)
        }
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
    
    @keyframes fadeRight {
        from {
            opacity: 0;
            transform: translateX(40px)
        }
        to {
            opacity: 1;
            transform: translateX(0)
        }
    }
    
    @keyframes float {
        0%,
        100% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(-14px)
        }
    }
    
    @keyframes pulse {
        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }
        50% {
            opacity: .4;
            transform: scale(1.5)
        }
    }
    
    @keyframes breathe {
        0%,
        100% {
            transform: translateY(-50%) scale(1);
            opacity: .12
        }
        50% {
            transform: translateY(-50%) scale(1.15);
            opacity: .18
        }
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }
    
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity .8s var(--ease), transform .8s var(--ease)
    }
    
    .reveal.active {
        opacity: 1;
        transform: translateY(0)
    }
    
    .rd1 {
        transition-delay: .1s
    }
    
    .rd2 {
        transition-delay: .2s
    }
    
    .rd3 {
        transition-delay: .3s
    }
    
    .rd4 {
        transition-delay: .4s
    }
    
    .rd5 {
        transition-delay: .5s
    }
    /* ===== RESPONSIVE ===== */
    
    @media(max-width:1024px) {
        .approach-grid,
        .why-grid {
            grid-template-columns: repeat(2, 1fr)
        }
        .team-grid {
            grid-template-columns: repeat(3, 1fr)
        }
        .test-grid,
        .blog-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }
    
    @media(max-width:768px) {
        section {
            padding: 80px 0
        }
        .container {
            padding: 0 20px
        }
        .hamburger {
            display: flex
        }
        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            flex-direction: column;
            padding: 32px 24px;
            gap: 20px;
            transform: translateX(100%);
            transition: transform .4s var(--ease);
            z-index: 999
        }
        .nav-links.open {
            transform: translateX(0)
        }
        .hero-grid,
        .about-grid,
        .founder-grid,
        .consult-grid,
        .contact-grid {
            grid-template-columns: 1fr
        }
        .hero-visual {
            margin-top: 32px
        }
        .hero::before {
            width: 100%;
            clip-path: none;
            height: 50%;
            bottom: 0;
            top: auto
        }
        .approach-grid,
        .why-grid {
            grid-template-columns: 1fr
        }
        .team-grid {
            grid-template-columns: repeat(2, 1fr)
        }
        .test-grid,
        .blog-grid {
            grid-template-columns: 1fr
        }
        .about-highlights,
        .form-row {
            grid-template-columns: 1fr
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr
        }
        .footer-bottom {
            flex-direction: column;
            gap: 8px;
            text-align: center
        }
        .nl-form {
            flex-direction: column
        }
        .events-main {
            flex-direction: column;
            gap: 16px;
            text-align: center
        }
        .hero-btns {
            justify-content: center
        }
        .hero-content {
            text-align: center
        }
        .hero-text {
            margin-left: auto;
            margin-right: auto
        }
        .hero-trust {
            justify-content: center
        }
    }
    /* ===================================================
   DESIGN IMPROVEMENTS — Health Potential
   1. Global background softening (no pure white)
   2. Blog section with pill-style category tabs
   3. Footer social media icons
   4. Visual depth: shadows, borders, glassmorphism
   5. Section separation improvements
   6. Full responsive coverage
   =================================================== */
    /* --- 1. GLOBAL: Soft healthcare-themed background --- */
    /* Replace pure white with soft off-white/light green tint */
    
    body {
        background: #f4f8f5;
        /* very subtle green-tinted off-white */
    }
    /* Hero gets a gentle gradient instead of flat off-white */
    
    .hero {
        background: linear-gradient(145deg, #f0f7f2 0%, #faf8f4 60%, #f4f8f5 100%);
    }
    /* About and Team sections get a slightly warmer tone */
    
    .about,
    .team {
        background: linear-gradient(160deg, #f7fbf8 0%, #fdf9f4 100%);
    }
    /* Why section gets a gentle green-tinted warm background */
    
    .why {
        background: linear-gradient(145deg, #f0f7f3 0%, #faf7f0 100%);
    }
    /* Contact section */
    
    .contact {
        background: linear-gradient(160deg, #f7faf8 0%, #fdf8f3 100%);
    }
    /* Newsletter section — soft green tint */
    
    .newsletter {
        background: linear-gradient(135deg, #eef6f0 0%, #faf5ee 100%);
        border-top: 1px solid rgba(61, 139, 79, .08);
        border-bottom: 1px solid rgba(61, 139, 79, .08);
    }
    /* Approach section separator */
    
    .approach-sec {
        background: #ffffff;
        position: relative;
    }
    
    .approach-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(61, 139, 79, .15), rgba(212, 135, 46, .1), transparent);
    }
    
    .approach-sec::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(61, 139, 79, .1), transparent);
    }
    /* Founder section */
    
    .founder-sec {
        background: linear-gradient(160deg, #f8fbf9 0%, #fdf9f4 100%);
        position: relative;
    }
    
    .founder-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(61, 139, 79, .12), transparent);
    }
    /* Consultation section */
    
    .consultation-sec {
        background: #ffffff;
        position: relative;
    }
    
    .consultation-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 135, 46, .15), transparent);
    }
    /* --- Cards: Add soft depth and premium feel --- */
    /* Approach cards */
    
    .approach-card {
        background: #ffffff;
        box-shadow: 0 2px 12px rgba(61, 139, 79, .06), 0 1px 3px rgba(0, 0, 0, .04);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .approach-card:hover {
        box-shadow: 0 16px 48px rgba(61, 139, 79, .12), 0 4px 16px rgba(0, 0, 0, .06);
        border-color: rgba(61, 139, 79, .15);
    }

    .events-listing-grid .event-card.event-filter-hidden {
        display: none
    }
    /* Why cards */
    
    .why-card {
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 2px 12px rgba(0, 0, 0, .05), 0 1px 3px rgba(61, 139, 79, .06);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .why-card:hover {
        background: #ffffff;
        box-shadow: 0 12px 36px rgba(61, 139, 79, .12), 0 4px 12px rgba(0, 0, 0, .06);
        border-color: rgba(61, 139, 79, .18);
    }
    /* Team cards */
    
    .t-card {
        box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .t-card:hover {
        box-shadow: 0 16px 48px rgba(61, 139, 79, .14), 0 4px 16px rgba(0, 0, 0, .07);
    }
    /* Blog cards */
    
    .blog-card {
        box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .blog-card:hover {
        box-shadow: 0 16px 48px rgba(61, 139, 79, .12), 0 4px 16px rgba(0, 0, 0, .06);
    }
    /* Contact info cards */
    
    .ci-card {
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .ci-card:hover {
        box-shadow: 0 8px 24px rgba(61, 139, 79, .1);
        border-color: rgba(61, 139, 79, .15);
    }
    /* Contact form */
    
    .contact-form-wrap {
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 8px 36px rgba(61, 139, 79, .08), 0 2px 8px rgba(0, 0, 0, .04);
        border: 1px solid rgba(61, 139, 79, .1);
    }
    /* Hero card glassmorphism upgrade */
    
    .hero-card {
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 24px 64px rgba(61, 139, 79, .1), 0 8px 24px rgba(0, 0, 0, .07);
        border: 1px solid rgba(61, 139, 79, .1);
    }
    /* Process steps */
    
    .p-step {
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .p-step:hover {
        box-shadow: 0 8px 24px rgba(61, 139, 79, .1);
        border-color: rgba(61, 139, 79, .18);
    }
    /* CF feature items */
    
    .cf {
        background: linear-gradient(135deg, rgba(61, 139, 79, .04), rgba(245, 237, 227, .6));
        border: 1px solid rgba(61, 139, 79, .08);
    }
    
    .cf:hover {
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 6px 20px rgba(61, 139, 79, .08);
    }
    /* --- 2. BLOG SECTION: Pill-style category tabs --- */
    /* Tab container */
    
    .blog-tabs {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        margin: 36px auto 0;
        padding: 6px;
        background: rgba(255, 255, 255, .85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(61, 139, 79, .12);
        border-radius: 60px;
        box-shadow: 0 4px 20px rgba(61, 139, 79, .08), 0 1px 4px rgba(0, 0, 0, .04);
        max-width: 600px;
    }
    /* Individual tab button */
    
    .blog-tab {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .82rem;
        font-weight: 600;
        letter-spacing: .3px;
        padding: 10px 22px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        background: transparent;
        color: var(--g500);
        transition: all .35s cubic-bezier(.22, .61, .36, 1);
        position: relative;
        white-space: nowrap;
    }
    
    .blog-tab:hover:not(.active) {
        color: var(--green-dark);
        background: rgba(61, 139, 79, .07);
    }
    /* Active tab — pill highlight */
    
    .blog-tab.active {
        background: linear-gradient(135deg, var(--green) 0%, #52b868 100%);
        color: #ffffff;
        box-shadow: 0 4px 16px rgba(61, 139, 79, .35), 0 2px 6px rgba(0, 0, 0, .1);
        transform: none;
    }
    /* Tab content panels — hidden by default, visible when active */
    
    .blog-tab-content {
        display: none;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity .4s cubic-bezier(.22, .61, .36, 1), transform .4s cubic-bezier(.22, .61, .36, 1);
    }
    
    .blog-tab-content.active {
        display: block;
        animation: tabFadeIn .45s cubic-bezier(.22, .61, .36, 1) forwards;
    }
    
    @keyframes tabFadeIn {
        from {
            opacity: 0;
            transform: translateY(16px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Blog thumb variants per category */
    
    .physio-thumb {
        background: linear-gradient(145deg, rgba(61, 139, 79, .08), rgba(245, 237, 227, .7)) !important;
    }
    
    .homoe-thumb {
        background: linear-gradient(145deg, rgba(61, 139, 79, .06), rgba(232, 217, 191, .5)) !important;
    }
    
    .nutri-thumb {
        background: linear-gradient(145deg, rgba(212, 135, 46, .07), rgba(245, 237, 227, .8)) !important;
    }
    
    .dental-thumb {
        background: linear-gradient(145deg, rgba(100, 160, 220, .08), rgba(232, 240, 250, .7)) !important;
    }
    /* Blog tag variants per category */
    
    .tag-physio {
        background: rgba(61, 139, 79, .1);
        color: var(--green-dark);
    }
    
    .tag-homoe {
        background: rgba(61, 139, 79, .08);
        color: #2a6e3a;
    }
    
    .tag-nutri {
        background: rgba(212, 135, 46, .1);
        color: var(--orange-dark);
    }
    
    .tag-dental {
        background: rgba(100, 160, 220, .12);
        color: #2a5fa0;
    }
    /* --- 3. FOOTER: Social media icons --- */
    
    .footer-social {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 22px;
        flex-wrap: wrap;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .6);
        transition: all .35s cubic-bezier(.22, .61, .36, 1);
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }
    
    .social-icon svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }
    
    .social-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        opacity: 0;
        transition: opacity .35s;
    }
    /* Facebook hover — blue */
    
    .social-icon[aria-label="Facebook"]:hover {
        background: #1877F2;
        border-color: #1877F2;
        color: white;
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 24px rgba(24, 119, 242, .4);
    }
    /* Instagram hover — gradient */
    
    .social-icon[aria-label="Instagram"]:hover {
        background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border-color: #dc2743;
        color: white;
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 24px rgba(220, 39, 67, .4);
    }
    /* LinkedIn hover — blue */
    
    .social-icon[aria-label="LinkedIn"]:hover {
        background: #0A66C2;
        border-color: #0A66C2;
        color: white;
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 24px rgba(10, 102, 194, .4);
    }
    /* YouTube hover — red */
    
    .social-icon[aria-label="YouTube"]:hover {
        background: #FF0000;
        border-color: #FF0000;
        color: white;
        transform: translateY(-4px) scale(1.08);
        box-shadow: 0 8px 24px rgba(255, 0, 0, .4);
    }
    /* Footer overall premium upgrade */
    
    .footer {
        background: linear-gradient(165deg, #0a0f0c 0%, #0d1410 50%, #111812 100%);
    }
    
    .footer-grid {
        border-bottom-color: rgba(255, 255, 255, .08);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .06);
    }
    /* --- 4. SECTION SEPARATOR LINES for visual flow --- */
    /* Soft gradient separators between major sections */
    
    .why::before {
        background: radial-gradient(ellipse at top left, rgba(61, 139, 79, .12), transparent 60%);
    }
    
    .why::after {
        background: radial-gradient(ellipse at bottom right, rgba(212, 135, 46, .1), transparent 60%);
    }
    /* Navbar scroll state: add green-tinted bottom line */
    
    .navbar.scrolled {
        border-bottom-color: rgba(61, 139, 79, .1);
        box-shadow: 0 1px 20px rgba(61, 139, 79, .07), 0 1px 4px rgba(0, 0, 0, .04);
        background: rgba(244, 248, 245, .95);
    }
    /* --- 5. RESPONSIVE: Blog tabs on mobile --- */
    
    @media (max-width: 768px) {
        /* Tabs wrap or scroll on mobile */
        .blog-tabs {
            max-width: 100%;
            border-radius: 20px;
            padding: 8px;
            gap: 6px;
            justify-content: flex-start;
            overflow-x: auto;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .blog-tabs::-webkit-scrollbar {
            display: none;
        }
        .blog-tab {
            font-size: .78rem;
            padding: 9px 16px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        /* Social icons spacing on mobile */
        .footer-social {
            gap: 10px;
        }
        .social-icon {
            width: 38px;
            height: 38px;
        }
    }
    
    @media (max-width: 480px) {
        .blog-tab {
            font-size: .74rem;
            padding: 8px 14px;
        }
        .footer-social {
            justify-content: flex-start;
        }
    }
    /* --- 6. TABLET responsive (1024px) --- */
    
    @media (max-width: 1024px) {
        .blog-tabs {
            max-width: 420px;
        }
    }
