/* ===================================================
   HEALTH HATCH  Modern Website 2026
   Brand Kit: Poppins + Lora | Green, Blue, Beige
   =================================================== */

:root {
    --health-green: #6BBE45;
    --health-green-rgb: 107, 190, 69;
    --leaf-mint: #A8E6A3;
    --leaf-mint-rgb: 168, 230, 163;
    --wellness-blue: #4A90E2;
    --wellness-blue-rgb: 74, 144, 226;
    --calm-beige: #F5F3E7;
    --charcoal: #333333;
    --charcoal-light: #555555;
    --gold-accent: #D4A853;
    --white: #FFFFFF;
    --off-white: #FAFAF7;
    --border-color: rgba(51, 51, 51, 0.08);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Lora', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-primary); font-size: 16px; line-height: 1.7; color: var(--charcoal); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }

.section-tag {
    display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--health-green); margin-bottom: 12px;
    padding: 6px 16px; background: rgba(var(--health-green-rgb), 0.08); border-radius: var(--radius-full);
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--charcoal-light); max-width: 560px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }

.text-gradient {
    background: linear-gradient(135deg, var(--health-green), var(--wellness-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* --- Shimmer Text (Animated Shiny Gradient) --- */
.shimmer-text {
    display: inline-block !important;
    background: linear-gradient(
        90deg,
        var(--health-green) 0%,
        var(--wellness-blue) 30%,
        var(--leaf-mint) 50%,
        var(--wellness-blue) 70%,
        var(--health-green) 100%
    ) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    animation: shimmer 2s linear infinite alternate !important;
}


@keyframes shimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

/* --- Scroll Animations --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* ===================================================
   BUTTONS  Slide Fill Animation
   =================================================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; font-family: var(--font-primary); font-size: 15px; font-weight: 600;
    border-radius: var(--radius-full); cursor: pointer; position: relative; overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-slide { border: 1.5px solid; }

.btn-slide-fill {
    position: absolute; bottom: 0; left: 0;
    width: 200%; height: 200%;
    border-radius: 50%;
    transform: translate(-100%, 80%) rotate(-40deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-slide:hover .btn-slide-fill {
    transform: translate(-15%, -10%) rotate(-40deg);
}

.btn-slide-text { position: relative; z-index: 1; transition: color 0.3s ease; }

/* Green variant */
.btn-slide-green {
    background: var(--white); border-color: var(--health-green); color: var(--health-green);
}
.btn-slide-green .btn-slide-fill { background: var(--health-green); }
.btn-slide-green:hover .btn-slide-text { color: var(--white); }

/* Dark variant */
.btn-slide-dark {
    background: var(--white); border-color: var(--charcoal); color: var(--charcoal);
}
.btn-slide-dark .btn-slide-fill { background: var(--charcoal); }
.btn-slide-dark:hover .btn-slide-text { color: var(--white); }

/* Kept for CTA & Footer */
.btn-primary {
    background: linear-gradient(145deg, var(--health-green), #5dab3a); color: var(--white);
    border: none; border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(var(--health-green-rgb), 0.25), inset 0 1px 1px rgba(255,255,255,0.3);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent); border-radius: var(--radius-full) var(--radius-full) 0 0;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--health-green-rgb), 0.35); }

.btn-white {
    background: rgba(255,255,255,0.85); color: var(--health-green); border: none;
    backdrop-filter: blur(12px); font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08), inset 0 1px 1px rgba(255,255,255,0.9);
}
.btn-white:hover { transform: translateY(-2px); background: rgba(255,255,255,0.95); }

.btn-outline-white {
    background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.15);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }


/* ===================================================
   NAVIGATION  Pill with Sliding Cursor
   =================================================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all var(--transition-smooth);
}
.navbar.scrolled {
    padding: 10px 0; background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color); box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; z-index: 1001; }
.logo-img { height: 52px; width: auto; }

/* Pill container */
.nav-pill {
    position: relative; display: flex; align-items: center;
    border: 2px solid rgba(var(--health-green-rgb), 0.25); border-radius: var(--radius-full);
    padding: 4px; background: rgba(255,255,255,0.9);
}
.nav-links { display: flex; align-items: center; gap: 0; position: relative; z-index: 2; }
.mobile-nav-cta-item { display: none; }
.nav-links li a {
    display: block; padding: 8px 20px; font-size: 14px; font-weight: 500;
    color: var(--charcoal); position: relative; z-index: 2;
    transition: color 0.3s ease; cursor: pointer;
}
.nav-links li a:hover { color: var(--white); }

/* Sliding cursor */
.nav-cursor {
    position: absolute; top: 4px; left: 0;
    height: calc(100% - 8px); border-radius: var(--radius-full);
    background: var(--health-green); z-index: 1;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
    opacity: 0; pointer-events: none;
}

.nav-cta {
    font-size: 14px; font-weight: 600; padding: 10px 24px;
    background: linear-gradient(145deg, var(--health-green), #5dab3a);
    color: var(--white); border-radius: var(--radius-full);
    box-shadow: 0 2px 10px rgba(var(--health-green-rgb), 0.25), inset 0 1px 1px rgba(255,255,255,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.nav-cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
}
.nav-cta:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 6px 20px rgba(var(--health-green-rgb), 0.35); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition-fast); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ===================================================
   HERO
   =================================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--white) 0%, var(--calm-beige) 50%, rgba(var(--leaf-mint-rgb), 0.15) 100%);
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 20s ease-in-out infinite; }
.shape-1 { width: 500px; height: 500px; background: rgba(var(--health-green-rgb), 0.15); top: -100px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: rgba(var(--wellness-blue-rgb), 0.1); bottom: -50px; left: -100px; animation-delay: -7s; }
.shape-3 { width: 300px; height: 300px; background: rgba(var(--leaf-mint-rgb), 0.2); top: 40%; right: 30%; animation-delay: -14s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(var(--health-green-rgb), 0.1); color: var(--health-green);
    font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
    border-radius: var(--radius-full); margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700;
    line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em;
}
.hero-subtitle {
    font-size: 1.15rem; color: var(--charcoal-light);
    max-width: 520px; margin-bottom: 36px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual  Interactive Card Stack */
.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    min-height: 460px; perspective: 1200px;
}

.card-stack {
    position: relative; width: 300px; height: 380px; cursor: pointer;
    perspective: 800px;
}

/* Counter badge */
.card-stack-counter {
    position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
    font-size: 13px; font-weight: 600; color: var(--charcoal-light);
    letter-spacing: 0.05em; z-index: 10; opacity: 0.6;
}

/* Individual card */
.stack-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 20px; transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                opacity 0.4s ease;
    will-change: transform;
}

.stack-card-inner {
    width: 100%; height: 100%; padding: 32px 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
    display: flex; flex-direction: column; justify-content: center;
}

/* Stacked state  cards behind peek out */
.stack-card[data-card="0"] {
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.stack-card[data-card="1"] {
    z-index: 2;
    transform: translateY(14px) translateX(10px) scale(0.96) rotate(2deg);
    opacity: 0.85;
}
.stack-card[data-card="2"] {
    z-index: 1;
    transform: translateY(28px) translateX(20px) scale(0.92) rotate(4deg);
    opacity: 0.7;
}

/* Fanned-out state on stack hover */
.card-stack.fanned .stack-card[data-card="0"] {
    transform: translateX(-120px) translateY(-20px) rotate(-6deg);
    z-index: 3; opacity: 1;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.card-stack.fanned .stack-card[data-card="1"] {
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
    z-index: 4; opacity: 1;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.card-stack.fanned .stack-card[data-card="2"] {
    transform: translateX(120px) translateY(-20px) rotate(6deg);
    z-index: 3; opacity: 1;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Individual card hover in fanned state  lift + 3D */
.card-stack.fanned .stack-card:hover {
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(var(--health-green-rgb), 0.15) !important;
}

/* Card content */
.stack-card-icon { margin-bottom: 18px; }
.stack-card-inner h3 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 8px;
    color: var(--charcoal); letter-spacing: -0.01em;
}
.stack-card-inner p {
    font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.6; margin-bottom: 20px;
}
.stack-card-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 600; color: var(--health-green);
    margin-top: auto; transition: gap 0.2s ease;
}
.stack-card-link:hover { gap: 10px; }
.stack-card-badge {
    display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--wellness-blue); background: rgba(var(--wellness-blue-rgb), 0.08);
    padding: 4px 10px; border-radius: var(--radius-full); margin-bottom: 8px;
}


/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar { padding: 60px 0; background: var(--charcoal); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 50px; background: rgba(255,255,255,0.15);
}
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--health-green); display: inline; }
.stat-plus { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--health-green); }
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }


/* ===================================================
   ABOUT
   =================================================== */
.about { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 1.05rem; color: var(--charcoal-light); margin-bottom: 20px; line-height: 1.8; }
.about-quote {
    font-family: var(--font-serif); font-style: italic; font-size: 1.1rem;
    color: var(--health-green); border-left: 3px solid var(--health-green);
    padding: 16px 0 16px 24px; margin: 24px 0; line-height: 1.7;
}
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.feature-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-visual { position: relative; }
.about-image-card {
    position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--calm-beige), rgba(var(--leaf-mint-rgb), 0.2));
}
.about-accent-shape {
    position: absolute; width: 120px; height: 120px;
    background: rgba(var(--health-green-rgb), 0.15); border-radius: 50%; top: -30px; right: -30px;
}
.about-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px; color: var(--charcoal-light);
}
.about-placeholder p { font-weight: 600; font-size: 18px; color: var(--charcoal); }
.about-placeholder span { font-size: 14px; opacity: 0.6; }


/* ===================================================
   SERVICES  RADIAL ORBITAL
   =================================================== */
.services { padding: 120px 0 80px; background: var(--white); overflow: hidden; }
.services .section-tag { background: rgba(var(--health-green-rgb), 0.1); }
.services .section-title { color: var(--charcoal); }
.services .section-subtitle { color: var(--charcoal-light); }

/* Two-Circle Service Layout */
.svc-circles-wrap {
    display: flex; align-items: flex-start; gap: 0; margin-top: 64px;
}
.svc-divider {
    width: 1px; background: rgba(0,0,0,0.08); align-self: stretch;
    flex-shrink: 0; margin: 0 8px;
}
.svc-circle-block {
    flex: 1; min-width: 0; display: flex; flex-direction: column;
    align-items: center; gap: 40px; padding: 0 24px;
}

/* Wheel Container */
.svc-wheel {
    position: relative; width: min(440px, 100%); aspect-ratio: 1; flex-shrink: 0;
}
.svc-wheel::before {
    content: ''; position: absolute; left: 50%; top: 50%;
    width: 72%; height: 72%; transform: translate(-50%, -50%);
    border-radius: 50%; border: 1px dashed rgba(0,0,0,0.07); pointer-events: none;
}

/* Central Hub */
.svc-hub {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 110px; height: 110px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; z-index: 10; text-align: center; cursor: default;
}
.svc-hub-corp {
    background: linear-gradient(135deg, #4A90E2, #3a7bd5); color: var(--white);
    box-shadow: 0 8px 32px rgba(74,144,226,0.3);
}
.svc-hub-indiv {
    background: linear-gradient(135deg, var(--health-green), #4db82a); color: var(--white);
    box-shadow: 0 8px 32px rgba(var(--health-green-rgb),0.3);
}
.svc-hub span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.35; }
.svc-hub::before, .svc-hub::after {
    content: ''; position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    animation: svcPing 2.5s cubic-bezier(0,0,0.2,1) infinite;
}
.svc-hub::before { width: 140px; height: 140px; }
.svc-hub::after  { width: 170px; height: 170px; animation-delay: 0.7s; }
@keyframes svcPing { 75%, 100% { transform: scale(1.18); opacity: 0; } }

/* Nodes */
.svc-node {
    position: absolute; display: flex; flex-direction: column; align-items: center;
    gap: 6px; background: none; border: none; cursor: pointer; padding: 0;
    transform: translate(-50%, -50%);
}
.svc-node-dot {
    width: 52px; height: 52px; border-radius: 50%; background: var(--white);
    border: 2px solid rgba(0,0,0,0.09);
    display: flex; align-items: center; justify-content: center;
    color: var(--charcoal-light); transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.svc-node:hover .svc-node-dot {
    border-color: var(--health-green); color: var(--health-green);
    box-shadow: 0 4px 20px rgba(var(--health-green-rgb),0.2); transform: scale(1.15);
}
.svc-node.active .svc-node-dot {
    background: var(--health-green); border-color: var(--health-green); color: var(--white);
    box-shadow: 0 6px 24px rgba(var(--health-green-rgb),0.35); transform: scale(1.2);
}
.svc-node-flagship .svc-node-dot { border-color: rgba(212,168,83,0.5); color: var(--gold); }
.svc-node-flagship:hover .svc-node-dot,
.svc-node-flagship.active .svc-node-dot {
    background: var(--gold); border-color: var(--gold); color: var(--white);
    box-shadow: 0 6px 24px rgba(212,168,83,0.35);
}
.svc-node-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--charcoal-light); text-align: center; line-height: 1.3;
    max-width: 80px; white-space: normal; transition: color 0.3s ease; pointer-events: none;
}
.svc-node:hover .svc-node-label, .svc-node.active .svc-node-label { color: var(--charcoal); }

/* Detail Panel */
.svc-detail {
    width: 100%; max-width: 440px; background: var(--white);
    border: 1px solid rgba(var(--health-green-rgb),0.12); border-radius: var(--radius-md);
    padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.05); min-height: 160px;
}
.svc-detail-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; min-height: 120px; text-align: center;
}
.svc-detail-placeholder p { font-size: 0.875rem; color: var(--charcoal-light); opacity: 0.55; margin: 0; }
.svc-detail-badge {
    display: inline-block; padding: 3px 12px; border-radius: var(--radius-full);
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--health-green); color: var(--white); margin-bottom: 14px;
}
.svc-detail h4 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 8px; font-weight: 700; }
.svc-detail-tagline {
    font-style: italic; color: var(--charcoal); font-size: 0.9rem;
    margin-bottom: 12px; line-height: 1.5; font-weight: 500;
}
.svc-detail p { color: var(--charcoal-light); font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; }
.svc-detail-list {
    list-style: none; padding: 0; margin: 0 0 16px;
    display: flex; flex-wrap: wrap; gap: 6px 10px;
}
.svc-detail-list li {
    font-size: 11px; color: var(--charcoal); font-weight: 600;
    background: rgba(var(--health-green-rgb),0.08);
    padding: 3px 10px; border-radius: var(--radius-full);
}
.svc-detail-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--health-green); color: var(--white); padding: 10px 20px;
    border-radius: var(--radius-full); font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease;
}
.svc-detail-cta:hover { background: #5aab38; gap: 10px; box-shadow: 0 4px 16px rgba(var(--health-green-rgb),0.3); }

/* Corporate (blue) theme overrides */
.svc-circle-block[data-theme="corp"] .svc-node:hover .svc-node-dot {
    border-color: #4A90E2; color: #4A90E2;
    box-shadow: 0 4px 20px rgba(74,144,226,0.2);
}
.svc-circle-block[data-theme="corp"] .svc-node.active .svc-node-dot {
    background: #4A90E2; border-color: #4A90E2;
    box-shadow: 0 6px 24px rgba(74,144,226,0.35);
}
.svc-circle-block[data-theme="corp"] .svc-node-flagship .svc-node-dot { border-color: rgba(212,168,83,0.5); color: var(--gold); background: var(--white); }
.svc-circle-block[data-theme="corp"] .svc-node-flagship:hover .svc-node-dot,
.svc-circle-block[data-theme="corp"] .svc-node-flagship.active .svc-node-dot {
    background: var(--gold); border-color: var(--gold); color: var(--white);
    box-shadow: 0 6px 24px rgba(212,168,83,0.35);
}
.svc-circle-block[data-theme="corp"] .svc-detail-badge { background: #4A90E2; }
.svc-circle-block[data-theme="corp"] .svc-detail-list li { background: rgba(74,144,226,0.08); }
.svc-circle-block[data-theme="corp"] .svc-detail-cta { background: #4A90E2; }
.svc-circle-block[data-theme="corp"] .svc-detail-cta:hover { background: #3a7bd5; box-shadow: 0 4px 16px rgba(74,144,226,0.3); }


/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-us { padding: 120px 0; background: var(--white); }
.why-us .section-tag { background: rgba(var(--health-green-rgb), 0.1); }
.why-us .section-title { color: var(--charcoal); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Spotlight / Glow Card */
.why-card {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    --spotlight-opacity: 0;
    --border-glow-opacity: 0;
    position: relative;
    padding: 40px 32px;
    border-radius: 14px;
    background: var(--off-white);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
}

/* Spotlight radial glow behind content */
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        600px circle at var(--spotlight-x) var(--spotlight-y),
        rgba(var(--health-green-rgb), 0.12),
        transparent 40%
    );
    opacity: var(--spotlight-opacity);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

/* Glowing border overlay */
.why-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(
        400px circle at var(--spotlight-x) var(--spotlight-y),
        rgba(var(--health-green-rgb), 0.55),
        transparent 40%
    );
    opacity: var(--border-glow-opacity);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    /* Mask: show only the border ring */
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 2px;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--health-green-rgb), 0.25);
    box-shadow: 0 8px 30px rgba(var(--health-green-rgb), 0.08);
}

/* Card content sits above the glow */
.why-card > * { position: relative; z-index: 1; }

.why-number {
    font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 16px;
    color: rgba(var(--health-green-rgb), 0.2);
    transition: color 0.4s ease;
}
.why-card:hover .why-number { color: rgba(var(--health-green-rgb), 0.5); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--charcoal); }
.why-card p { font-size: 0.95rem; color: var(--charcoal-light); line-height: 1.7; }


/* ===================================================
   TEAM
   =================================================== */
/* Team Showcase */
.team { padding: 120px 0; background: var(--off-white); }

.team-showcase {
    display: flex; align-items: flex-start; gap: 64px;
    max-width: 1100px; margin: 0 auto;
}

/* Photo Grid */
.team-photos {
    display: flex; gap: 12px; flex-shrink: 0;
}
.team-photo-col {
    display: flex; flex-direction: column; gap: 12px;
}
.team-photo-card {
    overflow: hidden; border-radius: 12px; cursor: pointer; flex-shrink: 0;
    transition: opacity 0.4s ease;
}
.team-photo-card img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1) brightness(0.77);
    transition: filter 0.5s ease;
}
.team-photo-card.active img {
    filter: grayscale(0) brightness(1);
}
.team-photo-card.dimmed {
    opacity: 0.5;
}

/* Placeholder card for Naman */
.team-photo-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--calm-beige), rgba(var(--leaf-mint-rgb), 0.2));
}

/* Member Name List */
.team-members {
    display: flex; flex-direction: column; gap: 20px;
    padding-top: 8px; flex: 1;
}
.team-member-row {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer; transition: opacity 0.3s ease;
}
.team-member-row.dimmed { opacity: 0.4; }

.member-indicator {
    width: 16px; height: 12px; border-radius: 5px; flex-shrink: 0;
    background: rgba(var(--health-green-rgb), 0.2);
    margin-top: 5px;
    transition: all 0.3s ease;
}
.team-member-row.active .member-indicator {
    background: var(--health-green); width: 20px;
}

.member-info { flex: 1; }
.member-name-row {
    display: flex; align-items: center; gap: 8px;
}
.member-name {
    font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
    color: rgba(var(--charcoal), 0.8);
    transition: color 0.3s ease;
}
.team-member-row.active .member-name {
    color: var(--charcoal);
}

.member-socials {
    display: flex; align-items: center; gap: 4px;
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.team-member-row.active .member-socials {
    opacity: 1; transform: translateX(0);
    pointer-events: auto;
}
.member-socials a {
    padding: 4px; border-radius: 4px;
    color: var(--charcoal-light);
    transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.member-socials a:hover {
    color: var(--charcoal); background: rgba(0,0,0,0.06); transform: scale(1.1);
}

.member-role {
    display: block; margin-top: 4px; padding-left: 0;
    font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--charcoal-light);
}


/* ===================================================
   PARTNERS / COMPANIES MARQUEE
   =================================================== */
.partners { padding: 100px 0 80px; background: var(--off-white); overflow: hidden; }
.partners .section-header { margin-bottom: 56px; }

.logo-marquee-wrapper {
    position: relative; width: 100%; overflow: hidden;
}
.logo-marquee-wrapper + .logo-marquee-wrapper { margin-top: 20px; }

.logo-marquee-fade {
    position: absolute; top: 0; width: 140px; height: 100%; z-index: 10; pointer-events: none;
}
.logo-marquee-fade-left  { left: 0;  background: linear-gradient(to right, var(--off-white), transparent); }
.logo-marquee-fade-right { right: 0; background: linear-gradient(to left,  var(--off-white), transparent); }

.logo-marquee-track {
    display: flex; gap: 24px; width: max-content;
    padding: 12px 0;
    animation: logoScroll 40s linear infinite;
}
.logo-marquee-track.reverse {
    animation-direction: reverse;
}
.logo-marquee-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-bubble {
    flex-shrink: 0;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.logo-bubble:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.06);
}
.logo-bubble img {
    width: 76%; height: 76%;
    object-fit: contain;
    display: block;
}

/* ===================================================
   TESTIMONIALS  MARQUEE
   =================================================== */
.testimonials { padding: 120px 0 80px; background: var(--white); overflow: hidden; }
.testimonials .section-header { margin-bottom: 48px; }

.marquee-wrapper {
    position: relative; width: 100%; overflow: hidden;
    margin-bottom: 20px;
}
.marquee-fade {
    position: absolute; top: 0; width: 120px; height: 100%; z-index: 10; pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.marquee-row { overflow: hidden; }

.marquee-track {
    display: flex; gap: 20px; width: max-content;
    animation: marqueeScroll 50s linear infinite;
}
.marquee-row[data-direction="reverse"] .marquee-track {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-card {
    flex-shrink: 0; width: 320px; padding: 20px; border-radius: var(--radius-md);
    background: var(--white); border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.marquee-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.marquee-track:hover { animation-play-state: paused; }

.marquee-card-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.marquee-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.marquee-card-header strong { display: block; font-size: 14px; }
.marquee-card-header span { font-size: 12px; color: var(--charcoal-light); }
.review-stars { color: #fbbc04; font-size: 13px; letter-spacing: 1px; }
.review-source { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--charcoal-light); margin-left: 4px; }
.review-source img { width: 12px; height: 12px; }
.verify-icon { flex-shrink: 0; margin-left: auto; }
.marquee-card > p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }


/* ===================================================
   BLOG  Editorial Card Style
   =================================================== */
.blog { padding: 120px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    overflow: hidden; background: rgba(255,255,255,0.5);
    border: 1px solid rgba(51,51,51,0.08);
    transition: box-shadow var(--transition-smooth); backdrop-filter: blur(8px);
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-image {
    position: relative; aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--calm-beige), rgba(var(--leaf-mint-rgb), 0.2)); overflow: hidden;
}
.blog-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.blog-category {
    position: absolute; top: 0; left: 0; padding: 4px 12px;
    background: var(--white); color: var(--charcoal); font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
}
.blog-content { padding: 20px 16px; }
.blog-content h3 { font-size: 1.15rem; font-weight: 400; margin-bottom: 10px; line-height: 1.4; }
.blog-content > p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.6; margin-bottom: 20px; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; }
.blog-link-icon {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(51,51,51,0.15); transition: all 0.3s ease; overflow: hidden;
}
.blog-card:hover .blog-link-icon { background: var(--charcoal); border-color: var(--charcoal); }
.blog-card:hover .blog-link-icon svg { stroke: var(--white); }
.blog-date { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--charcoal-light); }
.blog-date-line { width: 40px; height: 1px; background: rgba(51,51,51,0.2); }


/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section { padding: 120px 0; background: var(--white); }
.cta-card {
    background: linear-gradient(135deg, var(--health-green), #4aab30);
    border-radius: var(--radius-xl); padding: 80px 60px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; opacity: 0.15; }
.cta-shape-1 { width: 300px; height: 300px; background: var(--white); top: -100px; right: -50px; }
.cta-shape-2 { width: 200px; height: 200px; background: var(--white); bottom: -80px; left: -40px; }
.cta-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-card p { font-size: 1.1rem; color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }


/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 48px; margin-bottom: 12px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--health-green); margin-bottom: 12px; font-size: 0.95rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: all var(--transition-fast);
}
.social-link:hover { background: var(--health-green); color: var(--white); transform: translateY(-2px); }
.footer-links-group h4 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-group a { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-links-group a:hover { color: var(--health-green); }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--health-green); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0; font-size: 0.85rem; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }


/* ===================================================
   GLOBAL REACH  MAP OPTIONS
   =================================================== */
.global-reach { padding: 120px 0; background: var(--white); }

/* Option A: Cobe Globe */
.globe-a-wrapper {
    display: flex; flex-direction: column; align-items: center;
    max-width: 700px; margin: 0 auto;
}
.globe-a-canvas-box {
    position: relative; width: 100%;
}
#cobeGlobe {
    display: block; width: 100%; aspect-ratio: 1;
    opacity: 0; transition: opacity 1.2s ease;
    touch-action: none;
}
.globe-flags-layer {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.globe-flag {
    position: absolute;
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.15s ease;
    cursor: pointer;
    z-index: 10;
}
.globe-flag-emoji {
    font-size: 1.4rem; line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
    display: block;
    transition: transform 0.2s ease;
}
.globe-flag:hover .globe-flag-emoji {
    transform: scale(1.5);
}
.globe-flag--hq .globe-flag-emoji {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 6px rgba(74,144,226,0.5));
}
.globe-flag-tip {
    position: absolute; bottom: 110%; left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal); color: white;
    font-size: 11px; font-weight: 500;
    padding: 4px 10px; border-radius: 6px;
    white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.globe-flag-tip::after {
    content: ''; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent; border-top-color: var(--charcoal);
}
.globe-flag:hover .globe-flag-tip {
    opacity: 1;
}
.globe-a-stats {
    display: flex; gap: 48px; margin-top: 32px;
}
.globe-stat {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.globe-stat-num {
    font-size: 2rem; font-weight: 700; color: var(--health-green);
}
.globe-stat-label {
    font-size: 13px; font-weight: 500; color: var(--charcoal-light);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* Option B: Global Reach  Stats & Network */
.gr-network-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(var(--health-green-rgb), 0.03) 0%, rgba(var(--wellness-blue-rgb), 0.05) 100%);
    margin-bottom: 56px;
    padding: 48px 32px;
}
.gr-network-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

/* Stat Cards */
.gr-stats-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gr-stat-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(var(--health-green-rgb), 0.1);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.gr-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gr-stat-card--accent {
    background: linear-gradient(135deg, rgba(var(--wellness-blue-rgb), 0.08), rgba(var(--health-green-rgb), 0.06));
    border-color: rgba(var(--wellness-blue-rgb), 0.15);
}
.gr-stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--health-green-rgb), 0.08);
    margin-bottom: 4px;
}
.gr-stat-card--accent .gr-stat-icon {
    background: rgba(var(--wellness-blue-rgb), 0.08);
}
.gr-stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--health-green);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.gr-stat-card--accent .gr-stat-number {
    color: var(--wellness-blue);
}
.gr-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Region Breakdown */
.gr-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.gr-region {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.gr-region:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.gr-region-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.gr-region-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.gr-country-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.gr-pill {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    background: var(--off-white);
    color: var(--charcoal-light);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.gr-pill:hover {
    background: rgba(var(--health-green-rgb), 0.08);
    color: var(--health-green);
    border-color: rgba(var(--health-green-rgb), 0.2);
}
.gr-pill--hq {
    background: rgba(var(--health-green-rgb), 0.1);
    color: var(--health-green);
    font-weight: 600;
    border-color: rgba(var(--health-green-rgb), 0.25);
}

/* Country Marquee */
.gr-marquee-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 8px 0;
    position: relative;
}
.gr-marquee-wrap::before,
.gr-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}
.gr-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
}
.gr-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--off-white) 0%, transparent 100%);
}
.gr-marquee {
    overflow: hidden;
    margin-bottom: 8px;
}
.gr-marquee:last-child {
    margin-bottom: 0;
}
.gr-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: grMarqueeScroll 45s linear infinite;
}
.gr-marquee--reverse .gr-marquee-track {
    animation-direction: reverse;
    animation-duration: 50s;
}
.gr-marquee-item {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--white);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    white-space: nowrap;
    transition: all var(--transition-fast);
}
.gr-marquee-item:hover {
    background: rgba(var(--health-green-rgb), 0.06);
    border-color: rgba(var(--health-green-rgb), 0.2);
    transform: scale(1.05);
}

@keyframes grMarqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Counter animation pulse */
@keyframes grPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.gr-stat-number.counting {
    animation: grPulse 0.3s ease;
}

/* Option C: Flat Interactive Map */
.flat-map-wrapper {
    position: relative; width: 100%; max-width: 1000px; margin: 0 auto;
    aspect-ratio: 2 / 1; border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 50% 50%, rgba(var(--health-green-rgb), 0.03) 0%, transparent 70%),
        var(--off-white);
    border: 1px solid var(--border-color); overflow: hidden;
}
.world-map-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    opacity: 0; transition: opacity 0.6s ease;
}
.map-country-path {
    vector-effect: non-scaling-stroke;
}
.flat-map-hint {
    text-align: center; margin-top: 16px;
    font-size: 13px; color: var(--charcoal-light);
}

/* Map Markers */
.map-marker {
    position: absolute; width: 10px; height: 10px;
    background: var(--health-green);
    border: 2px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer; z-index: 2;
    box-shadow: 0 0 0 2px rgba(var(--health-green-rgb), 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-marker-hq {
    width: 16px; height: 16px;
    background: var(--wellness-blue);
    box-shadow: 0 0 0 3px rgba(var(--wellness-blue-rgb), 0.25),
                0 0 12px rgba(var(--wellness-blue-rgb), 0.15);
    z-index: 3;
    animation: marker-pulse 2s ease-in-out infinite;
}
@keyframes marker-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(var(--wellness-blue-rgb), 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(var(--wellness-blue-rgb), 0.1), 0 0 16px rgba(var(--wellness-blue-rgb), 0.15); }
}
.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 0 0 4px rgba(var(--health-green-rgb), 0.3);
    z-index: 10;
}

/* Tooltip */
.map-tooltip {
    position: absolute; bottom: calc(100% + 8px); left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal); color: var(--white);
    padding: 6px 12px; border-radius: 6px; white-space: nowrap;
    font-size: 13px; font-weight: 500;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-tooltip::after {
    content: ''; position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent; border-top-color: var(--charcoal);
}
.map-marker:hover .map-tooltip {
    opacity: 1; transform: translateX(-50%) translateY(-4px);
}
.map-flag { font-size: 16px; margin-right: 4px; vertical-align: middle; }


/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
    background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); z-index: 999;
    transition: all var(--transition-smooth);
    animation: wa-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}


/* ===================================================
   RESPONSIVE
   =================================================== */
/* ----- Tablet Landscape (≤1024px) ----- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 350px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { order: -1; }
    .about-image-card { aspect-ratio: auto; }
    .about-image-card img { height: auto; object-fit: contain; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .team-showcase { flex-direction: column; align-items: center; gap: 40px; }
    .team-photos { overflow-x: auto; padding-bottom: 4px; justify-content: center; }
    .team-members { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
    .team-members { padding-left: 24px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-circles-wrap { flex-direction: column; align-items: center; }
    .svc-divider { width: 80%; height: 1px; align-self: auto; margin: 8px 0; }
    .svc-circle-block { width: 100%; max-width: 520px; }
}

/* ----- Tablet Portrait / Small Laptops (≤768px) ----- */
@media (max-width: 768px) {
    /* -- Global spacing -- */
    .container { padding: 0 20px; }
    .section-header { margin-bottom: 40px; }
    .section-subtitle { font-size: 1rem; }

    /* -- Nav -- */
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .navbar { padding: 12px 0; }
    .navbar.scrolled { padding: 8px 0; }
    .logo-img { height: 42px; }

    /* Hide the pill styling but keep it in flow so the ul can break out */
    .nav-pill {
        position: static; border: none; padding: 0; background: none;
    }
    .nav-cursor { display: none; }

    /* Full-screen mobile nav overlay */
    .navbar.nav-open {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--white) !important;
        backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
        border-bottom: none !important; box-shadow: none !important;
        padding: 0 !important; overflow-y: auto;
    }
    .navbar.nav-open .nav-container {
        position: relative; height: 100%;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
    }
    /* Pin logo top-left, toggle top-right */
    .navbar.nav-open .nav-logo {
        position: absolute; top: 16px; left: 20px;
    }
    .navbar.nav-open .nav-toggle {
        position: absolute; top: 16px; right: 20px;
    }

    /* Nav links  hidden by default, centered in overlay when active */
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column;
        align-items: center; gap: 8px;
        width: 100%; padding: 0 16px;
    }
    .nav-links.active li { width: 100%; text-align: center; }
    .nav-links.active .mobile-nav-cta-item { display: block; }
    .nav-links.active li a {
        display: block; padding: 16px 20px;
        font-size: 1.2rem; font-weight: 600; color: var(--charcoal);
        border-radius: var(--radius-md);
        transition: background 0.2s ease, color 0.2s ease;
    }
    .nav-links.active li a:hover {
        background: rgba(var(--health-green-rgb), 0.08); color: var(--health-green);
    }

    /* Book consultation CTA in mobile nav */
    .mobile-nav-cta {
        display: block; margin-top: 16px; padding: 16px 36px;
        background: linear-gradient(145deg, var(--health-green), #5dab3a);
        color: var(--white) !important; font-weight: 600; font-size: 1rem !important;
        border-radius: var(--radius-full); text-align: center;
        box-shadow: 0 4px 12px rgba(var(--health-green-rgb), 0.25);
    }
    .mobile-nav-cta:hover {
        background: rgba(var(--health-green-rgb), 0.08) !important;
        color: var(--health-green) !important;
    }

    /* -- Hero -- */
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
    .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
    .hero-container { gap: 32px; }
    .card-stack { width: 270px; height: 400px; }
    .hero-visual { min-height: 420px; }
    .card-stack.fanned .stack-card[data-card="0"] { transform: translateX(-100px) translateY(-16px) rotate(-5deg); }
    .card-stack.fanned .stack-card[data-card="2"] { transform: translateX(100px) translateY(-16px) rotate(5deg); }
    .stack-card-inner { padding: 24px 20px; }
    .stack-card-inner h3 { font-size: 1.05rem; }
    .stack-card-inner p { font-size: 0.85rem; }

    /* -- Stats -- */
    .stats-bar { padding: 40px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .stat-item:not(:last-child)::after { display: none; }

    /* -- About -- */
    .about { padding: 80px 0; }
    .about-grid { gap: 40px; }
    .about-text { font-size: 1rem; }
    .about-quote { font-size: 1rem; padding: 12px 0 12px 20px; }

    /* -- Services -- */
    .services { padding: 80px 0 40px; }
    .svc-circles-wrap { flex-direction: column; align-items: center; margin-top: 40px; }
    .svc-divider { width: 80%; height: 1px; align-self: auto; margin: 8px 0; }
    .svc-circle-block { width: 100%; max-width: 400px; padding: 0 16px; gap: 24px; }
    .svc-node-dot { width: 44px; height: 44px; }
    .svc-node-label { font-size: 9px; max-width: 70px; }
    .svc-hub { width: 90px; height: 90px; }
    .svc-hub span { font-size: 9px; }
    .svc-detail { padding: 24px 20px; }

    /* -- Why Us -- */
    .why-us { padding: 80px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 32px 24px; }
    .why-number { font-size: 2.5rem; }

    /* -- Team -- */
    .team { padding: 80px 0; }
    .team-photo-card { width: 130px !important; height: 145px !important; }
    .team-photo-col { margin-top: 0 !important; }
    .team-photo-col:nth-child(2) { margin-top: 48px !important; }
    .team-photo-col:nth-child(3) { margin-top: 22px !important; }
    .team-members { grid-template-columns: 1fr; gap: 16px; }
    .member-name { font-size: 16px; }

    /* -- Testimonials -- */
    .testimonials { padding: 80px 0 60px; }
    .marquee-card { width: 280px; padding: 18px; }
    .marquee-card > p { font-size: 13px; }
    .marquee-fade { width: 60px; }

    /* -- Blog -- */
    .blog { padding: 80px 0; }
    .blog-grid { grid-template-columns: 1fr; }

    /* -- CTA -- */
    .cta-section { padding: 80px 0; }
    .cta-card { padding: 48px 28px; }
    .cta-card p { font-size: 1rem; }

    /* -- Footer -- */
    .footer { padding: 60px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-logo { height: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* -- Globe/Map -- */
    .global-reach { padding: 80px 0; }
    .globe-a-wrapper { max-width: 400px; }
    .globe-flag-emoji { font-size: 1.1rem; }
    .globe-flag--hq .globe-flag-emoji { font-size: 1.4rem; }
    .flat-map-wrapper { aspect-ratio: 5 / 3; }
    .map-marker { width: 8px; height: 8px; }
    .map-marker-hq { width: 12px; height: 12px; }

    /* -- Option B: Global Reach -- */
    .gr-stats-row { grid-template-columns: repeat(2, 1fr); }
    .gr-regions { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .gr-network-wrap { padding: 32px 20px; margin-bottom: 40px; }
    .gr-regions { margin-bottom: 40px; }

    /* -- WhatsApp FAB -- */
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* ----- Mobile (≤480px) ----- */
@media (max-width: 480px) {
    /* -- Global -- */
    .container { padding: 0 16px; }
    .btn { padding: 14px 28px; font-size: 14px; }

    /* -- Hero -- */
    .hero { padding: 90px 0 48px; }
    .hero-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.7; }
    .hero-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 18px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; width: 100%; }
    .card-stack { width: 240px; height: 360px; }
    .hero-visual { min-height: 380px; }
    .card-stack.fanned .stack-card[data-card="0"] { transform: translateX(-80px) translateY(-12px) rotate(-5deg); }
    .card-stack.fanned .stack-card[data-card="2"] { transform: translateX(80px) translateY(-12px) rotate(5deg); }
    .stack-card-inner { padding: 24px 18px; }
    .stack-card-inner h3 { font-size: 1rem; }
    .stack-card-inner p { font-size: 0.82rem; margin-bottom: 14px; }
    .stack-card-badge { font-size: 10px; }
    .stack-card-link { font-size: 12px; }

    /* -- Stats -- */
    .stats-bar { padding: 32px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-number { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .stat-plus { font-size: clamp(1.2rem, 6vw, 1.6rem); }
    .stat-label { font-size: 12px; }

    /* -- About -- */
    .about { padding: 60px 0; }
    .about-text { font-size: 0.95rem; }
    .about-quote { font-size: 0.95rem; margin: 16px 0; }
    .about-feature { font-size: 14px; }

    /* -- Services Orbital -- */
    .services { padding: 60px 0 32px; }
    .orbital-wrapper { height: 420px; display: flex; align-items: center; justify-content: center; }
    .orbital-container { width: 320px; height: 320px; margin: 0 auto; }
    .orbital-ring { width: 260px; height: 260px; }
    .orbital-center-core { width: 56px; height: 56px; }
    .orbital-logo { width: 32px; height: 32px; }
    .node-dot { width: 32px; height: 32px; }
    .node-dot svg { width: 14px; height: 14px; }
    .node-label { font-size: 8px; letter-spacing: 0.03em; }
    .orbital-card { width: 220px; padding: 16px; font-size: 12px; }
    .orbital-card h4 { font-size: 0.9rem; }
    .orbital-card p { font-size: 0.8rem; }

    /* -- Why Us -- */
    .why-us { padding: 60px 0; }
    .why-card { padding: 28px 20px; }
    .why-number { font-size: 2rem; margin-bottom: 12px; }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
    .why-card p { font-size: 0.9rem; }

    /* -- Team -- */
    .team { padding: 60px 0; }
    .team-showcase { gap: 28px; }
    .team-photo-card { width: 100px !important; height: 115px !important; }
    .team-photo-col:nth-child(2) { margin-top: 36px !important; }
    .team-photo-col:nth-child(3) { margin-top: 16px !important; }
    .team-photos { gap: 8px; }
    .team-photo-col { gap: 8px; }
    .member-name { font-size: 15px; }
    .member-role { font-size: 9px; letter-spacing: 0.15em; }
    .member-indicator { width: 12px; height: 10px; }

    /* -- Testimonials -- */
    .testimonials { padding: 60px 0 48px; }
    .marquee-card { width: 260px; padding: 16px; }
    .marquee-avatar { width: 36px; height: 36px; }
    .marquee-card-header strong { font-size: 13px; }
    .marquee-card > p { font-size: 12.5px; line-height: 1.55; }
    .marquee-fade { width: 40px; }
    .marquee-track { gap: 14px; }

    /* -- Blog -- */
    .blog { padding: 60px 0; }
    .blog-image { aspect-ratio: 4/3; }
    .blog-content h3 { font-size: 1.05rem; }

    /* -- CTA -- */
    .cta-section { padding: 60px 0; }
    .cta-card { padding: 40px 20px; border-radius: var(--radius-lg); }
    .cta-card h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .cta-card p { font-size: 0.95rem; margin-bottom: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; justify-content: center; }

    /* -- Footer -- */
    .footer { padding: 48px 0 0; }
    .footer-grid { gap: 28px; padding-bottom: 40px; }
    .footer-logo { height: 36px; }
    .footer-tagline { font-size: 0.9rem; }
    .footer-desc { font-size: 0.85rem; }
    .footer-links-group h4 { font-size: 0.9rem; margin-bottom: 14px; }
    .footer-links-group a { font-size: 0.85rem; }
    .footer-bottom { padding: 20px 0; font-size: 0.8rem; }
    .footer-legal { gap: 16px; }

    /* -- Globe/Map -- */
    .global-reach { padding: 60px 0; }
    .globe-a-wrapper { max-width: 300px; }
    .globe-a-stats { gap: 32px; margin-top: 24px; }
    .globe-stat-num { font-size: 1.6rem; }
    .globe-flag-emoji { font-size: 0.9rem; }
    .globe-flag--hq .globe-flag-emoji { font-size: 1.2rem; }
    .flat-map-wrapper { aspect-ratio: 3 / 2; }
    .map-marker { width: 7px; height: 7px; border-width: 1.5px; }
    .map-marker-hq { width: 10px; height: 10px; }
    .map-tooltip { font-size: 11px; padding: 4px 8px; }

    /* -- Option B: Global Reach -- */
    .gr-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gr-stat-card { padding: 24px 16px; }
    .gr-stat-number { font-size: 1.75rem; }
    .gr-stat-icon { width: 44px; height: 44px; }
    .gr-regions { grid-template-columns: 1fr; gap: 12px; }
    .gr-region { padding: 18px; }
    .gr-network-wrap { padding: 24px 16px; margin-bottom: 32px; }
    .gr-regions { margin-bottom: 32px; }
    .gr-marquee-item { padding: 6px 14px; font-size: 13px; }
    .gr-marquee-wrap::before,
    .gr-marquee-wrap::after { width: 40px; }

    /* -- WhatsApp FAB -- */
    .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ----- Very small screens (≤360px) ----- */
@media (max-width: 360px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .card-stack { width: 210px; height: 320px; }
    .hero-visual { min-height: 340px; }
    .card-stack.fanned .stack-card[data-card="0"] { transform: translateX(-65px) translateY(-10px) rotate(-4deg); }
    .card-stack.fanned .stack-card[data-card="2"] { transform: translateX(65px) translateY(-10px) rotate(4deg); }
    .stack-card-inner { padding: 18px 14px; }
    .stack-card-inner h3 { font-size: 0.9rem; }
    .stack-card-inner p { font-size: 0.78rem; }
    .team-photo-card { width: 85px !important; height: 98px !important; }
    .orbital-wrapper { height: 360px; }
    .orbital-container { width: 280px; height: 280px; margin: 0 auto; }
    .orbital-ring { width: 230px; height: 230px; }
    .marquee-card { width: 240px; }
}


/* =====================================================
   PAGE LOADER OVERLAY  snowball spinner
   ===================================================== */

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--calm-beige, #F5F3E7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.55s ease;
}
#page-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.page-loader-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
}

/* Snowball spinner  .pl ----------------------------- */
.pl {
    position: relative;
    display: inline-block;
    width: 14em;
    height: 14em;
    font-size: 9px;
    overflow: visible;
}
.pl__outer-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 13em; height: 13em;
    margin: -6.5em 0 0 -6.5em;
    border-radius: 50%;
    border: 0.5em solid rgba(107, 190, 69, 0.22);
    box-sizing: border-box;
}
.pl__inner-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 8em; height: 8em;
    margin: -4em 0 0 -4em;
    border-radius: 50%;
    border: 0.2em solid rgba(107, 190, 69, 0.1);
    box-sizing: border-box;
}
.pl__track-cover {
    position: absolute;
    top: 50%; left: 50%;
    width: 13em; height: 13em;
    margin: -6.5em 0 0 -6.5em;
    border-radius: 50%;
    border: 0.7em solid transparent;
    border-bottom-color: var(--calm-beige, #F5F3E7);
    border-left-color:   var(--calm-beige, #F5F3E7);
    box-sizing: border-box;
    animation: trackCover 1.5s linear infinite;
}
.pl__ball {
    position: absolute;
    top: 50%; left: 50%;
    width: 1.6em; height: 1.6em;
    margin: -0.8em 0 0 -0.8em;
    border-radius: 50%;
    animation: ball 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.pl__ball-texture,
.pl__ball-outer-shadow,
.pl__ball-inner-shadow,
.pl__ball-side-shadows {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}
.pl__ball-texture {
    background: linear-gradient(135deg, #edf7e0 0%, #fff 50%, #e0f3cc 100%);
    animation: ballTexture 0.75s linear infinite;
    overflow: hidden;
}
.pl__ball-outer-shadow {
    background: radial-gradient(circle at 68% 22%, transparent 38%, rgba(0,60,0,0.18) 100%);
    animation: ballOuterShadow 1.5s linear infinite;
}
.pl__ball-inner-shadow {
    background: radial-gradient(circle at 28% 72%, rgba(0,50,0,0.11) 0%, transparent 58%);
    animation: ballInnerShadow 1.5s linear infinite;
}
.pl__ball-side-shadows {
    background: radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95) 0%, transparent 52%);
    box-shadow: 0 0 0 0.15em rgba(107, 190, 69, 0.55),
                0 0.2em 0.8em rgba(107, 190, 69, 0.28);
}

/* Snowball keyframes */
@keyframes ball {
    from { transform: rotate(0)      translateY(-6.5em); }
    50%  { transform: rotate(180deg) translateY(-6em);   }
    to   { transform: rotate(360deg) translateY(-6.5em); }
}
@keyframes ballInnerShadow {
    from { transform: rotate(0);       }
    to   { transform: rotate(-360deg); }
}
@keyframes ballOuterShadow {
    from { transform: rotate(20deg);   }
    to   { transform: rotate(-340deg); }
}
@keyframes ballTexture {
    from { transform: translateX(0);   }
    to   { transform: translateX(50%); }
}
@keyframes trackCover {
    from { transform: rotate(0);       }
    to   { transform: rotate(360deg);  }
}

@media (prefers-reduced-motion: reduce) {
    .pl__ball, .pl__ball-texture, .pl__ball-outer-shadow,
    .pl__ball-inner-shadow, .pl__track-cover { animation: none; }
}

/* ===== T&C LINK (pricing cards) ===== */
.tc-link { margin-top: 10px; text-align: center; font-size: 12px; }
.tc-link a { color: #6BBE45; text-decoration: underline; opacity: 0.8; }
.tc-link a:hover { opacity: 1; }

/* ===== NEW TAG BADGE ===== */
.new-tag { display: none; }
