/* ==========================================================
   Home V2 — Redesign Mockup
   Scoped to body.page-template-page-home-v2.
   Because the template skips get_header()/get_footer(),
   this file controls the full chrome (header + footer) too.
   ========================================================== */

body.page-template-page-home-v2 {
    --hv2-ink:         #1b2230;          /* dark slate — heading text */
    --hv2-ink-soft:    #2c3446;
    --hv2-navy:        #0f3b52;
    --hv2-teal:        #25a0c9;          /* cyan blue — primary brand (from live home) */
    --hv2-teal-dark:   #1e8aaf;
    --hv2-teal-pale:   #f5fdff;          /* pale cyan section bg from live home */
    --hv2-accent:      #f5ba45;          /* yellow accent (from live home) */
    --hv2-accent-dark: #e5a82a;
    --hv2-cream:       #f5efe2;
    --hv2-paper:       #f5fdff;          /* pale cyan section bg (from live home) */
    --hv2-paper-alt:   #eef7fa;
    --hv2-line:        rgba(26, 20, 80, 0.12);
    --hv2-line-soft:   rgba(26, 20, 80, 0.06);
    --hv2-muted:       #5a5a75;
    --hv2-rose:        #f4d9d1;
    --hv2-mint:        #d1e7d6;
    --hv2-amber:       #f0e2c4;
    --hv2-violet:      #dad3e4;
    --hv2-peach:       #f3d8c3;
    --hv2-azure:       #cee0e7;

    --hv2-display:     "Cormorant Garamond", "Fraunces", Georgia, serif;
    --hv2-sans:        "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
    font-family: var(--hv2-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.page-template-page-home-v2 * {
    box-sizing: border-box;
}

body.page-template-page-home-v2 .hv2-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

body.page-template-page-home-v2 a { color: inherit; }
body.page-template-page-home-v2 img { max-width: 100%; height: auto; display: block; }
body.page-template-page-home-v2 h1, body.page-template-page-home-v2 h2, body.page-template-page-home-v2 h3, body.page-template-page-home-v2 h4 { margin: 0; }
body.page-template-page-home-v2 p { margin: 0; }
body.page-template-page-home-v2 ul { margin: 0; padding: 0; list-style: none; }

/* --- Reusable --- */
body.page-template-page-home-v2 .hv2-eyebrow {
    font-family: var(--hv2-sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hv2-teal);
    font-weight: 600;
    margin: 0 0 14px;
}
body.page-template-page-home-v2 .hv2-section {
    padding: 96px 0;
    position: relative;
}
body.page-template-page-home-v2 .hv2-section__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}
body.page-template-page-home-v2 .hv2-section__title {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    color: var(--hv2-ink);
    letter-spacing: -0.01em;
}
body.page-template-page-home-v2 .hv2-section__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--hv2-teal);
}
body.page-template-page-home-v2 .hv2-section__lede {
    color: var(--hv2-muted);
    font-size: 16px;
    line-height: 1.65;
    margin-top: 18px;
}

/* --- Buttons --- */
body.page-template-page-home-v2 .hv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: 999px;
    font-family: var(--hv2-sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
}
body.page-template-page-home-v2 .hv2-btn--primary {
    background: var(--hv2-teal);
    color: #fff;
    border-color: var(--hv2-teal);
    box-shadow: 0 10px 28px -12px rgba(37,160,201,0.55);
}
body.page-template-page-home-v2 .hv2-btn--primary:hover {
    background: var(--hv2-teal-dark);
    border-color: var(--hv2-teal-dark);
    color: #fff;
    transform: translateY(-1px);
}
body.page-template-page-home-v2 .hv2-btn--accent {
    background: var(--hv2-accent);
    color: #1b2230;
    border-color: var(--hv2-accent);
}
body.page-template-page-home-v2 .hv2-btn--accent:hover {
    background: var(--hv2-accent-dark);
    border-color: var(--hv2-accent-dark);
    color: #1b2230;
    transform: translateY(-1px);
}
body.page-template-page-home-v2 .hv2-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
body.page-template-page-home-v2 .hv2-btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
body.page-template-page-home-v2 .hv2-btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
body.page-template-page-home-v2 .hv2-btn--ghost-light:hover { background: rgba(255,255,255,0.1); }
body.page-template-page-home-v2 .hv2-btn__arrow {
    display: inline-block;
    transition: transform 220ms ease;
}
body.page-template-page-home-v2 .hv2-btn:hover .hv2-btn__arrow { transform: translateX(3px); }

/* --- Icon primitives (monoline, CSS-drawn) --- */
body.page-template-page-home-v2 .hv2-icon-phone,
body.page-template-page-home-v2 .hv2-icon-mail,
body.page-template-page-home-v2 .hv2-icon-clock,
body.page-template-page-home-v2 .hv2-icon-pin {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
    flex: none;
}
body.page-template-page-home-v2 .hv2-icon-phone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.7.6 2.5a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.5.6a2 2 0 0 1 1.7 2z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.7.6 2.5a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.5.6a2 2 0 0 1 1.7 2z'/></svg>") center/contain no-repeat;
}
body.page-template-page-home-v2 .hv2-icon-mail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><path d='m22 7-10 6L2 7'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='4' width='20' height='16' rx='2'/><path d='m22 7-10 6L2 7'/></svg>") center/contain no-repeat;
}
body.page-template-page-home-v2 .hv2-icon-clock::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") center/contain no-repeat;
}
body.page-template-page-home-v2 .hv2-icon-pin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 7-8 12-8 12s-8-5-8-12a8 8 0 1 1 16 0z'/><circle cx='12' cy='10' r='3'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 10c0 7-8 12-8 12s-8-5-8-12a8 8 0 1 1 16 0z'/><circle cx='12' cy='10' r='3'/></svg>") center/contain no-repeat;
}

/* --- Dev pills --- */
body.page-template-page-home-v2 .hv2-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 3px;
    border-radius: 999px;
    font-family: var(--hv2-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hv2-ink);
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--hv2-line);
}
body.page-template-page-home-v2 .hv2-pill::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--hv2-teal);
}
body.page-template-page-home-v2 .hv2-pill--cro::before  { background: #e3867c; }
body.page-template-page-home-v2 .hv2-pill--seo::before  { background: #d5a83a; }
body.page-template-page-home-v2 .hv2-pill--eeat::before { background: #8da4c7; }
body.page-template-page-home-v2 .hv2-pill--corner {
    position: absolute;
    top: 28px;
    right: 32px;
    z-index: 4;
}

/* =========================
   HEADER (scoped)
   ========================= */
body.page-template-page-home-v2 .hv2-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--hv2-line-soft);
    box-shadow: 0 1px 0 rgba(15,59,82,0.04), 0 12px 28px -24px rgba(15,59,82,0.18);
    transition: box-shadow 220ms ease;
}
body.admin-bar.page-template-page-home-v2 .hv2-header { top: 32px; }
@media (max-width: 782px) {
    body.admin-bar.page-template-page-home-v2 .hv2-header { top: 46px; }
}

/* Utility bar (row 1) */
body.page-template-page-home-v2 .hv2-header__utility {
    background: linear-gradient(90deg, var(--hv2-teal-dark) 0%, var(--hv2-teal) 100%);
    color: #fff;
    font-size: 12.5px;
    letter-spacing: 0.02em;
}
body.page-template-page-home-v2 .hv2-header__utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 9px 0;
    flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-util-left,
body.page-template-page-home-v2 .hv2-util-right {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-util-phone {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 200ms ease;
}
body.page-template-page-home-v2 .hv2-util-phone strong { font-weight: 700; letter-spacing: 0.01em; }
body.page-template-page-home-v2 .hv2-util-phone:hover { opacity: 0.85; }
body.page-template-page-home-v2 .hv2-util-phone .hv2-icon-phone { color: var(--hv2-accent); }

body.page-template-page-home-v2 .hv2-util-links {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding-right: 4px;
    border-right: 1px solid rgba(255,255,255,0.25);
    margin-right: 4px;
}
body.page-template-page-home-v2 .hv2-util-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    opacity: 0.92;
    transition: opacity 200ms ease, color 200ms ease;
}
body.page-template-page-home-v2 .hv2-util-links a span {
    color: var(--hv2-accent);
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 200ms ease;
}
body.page-template-page-home-v2 .hv2-util-links a:hover { opacity: 1; }
body.page-template-page-home-v2 .hv2-util-links a:hover span { transform: translate(3px, -1px); }

body.page-template-page-home-v2 .hv2-util-social {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
body.page-template-page-home-v2 .hv2-util-social a {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: transform 200ms ease, background 200ms ease;
}
body.page-template-page-home-v2 .hv2-util-social a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}
body.page-template-page-home-v2 .hv2-util-social img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

body.page-template-page-home-v2 .hv2-header__bar {
    padding: 16px 0;
    background: #fff;
}
body.page-template-page-home-v2 .hv2-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: nowrap;
}
body.page-template-page-home-v2 .hv2-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    flex: none;
}
body.page-template-page-home-v2 .hv2-logo__city {
    font-family: var(--hv2-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--hv2-ink);
    letter-spacing: -0.01em;
}
body.page-template-page-home-v2 .hv2-logo__tagline {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--hv2-ink);
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}
body.page-template-page-home-v2 .hv2-logo--img img {
    height: 46px;
    width: auto;
    display: block;
}
body.page-template-page-home-v2 .hv2-nav {
    display: flex;
    flex: 0 1 auto;
    justify-content: center;
    align-items: center;
}
body.page-template-page-home-v2 .hv2-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
}
body.page-template-page-home-v2 .hv2-nav__list > li {
    position: relative;
    display: inline-flex;
    align-items: center;
}
body.page-template-page-home-v2 .hv2-nav__list a {
    text-decoration: none;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--hv2-ink);
    transition: color 180ms;
    padding: 6px 0;
    white-space: nowrap;
}
body.page-template-page-home-v2 .hv2-nav__list a:hover { color: var(--hv2-teal); }
body.page-template-page-home-v2 .hv2-nav__list .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.7;
}
body.page-template-page-home-v2 .hv2-nav__list .sub-menu {
    position: absolute;
    top: 100%;
    left: -14px;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #fff;
    box-shadow: 0 14px 40px rgba(15, 59, 82, 0.12);
    border-top: 2px solid var(--hv2-teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 180ms, transform 180ms, visibility 180ms;
    z-index: 50;
}
body.page-template-page-home-v2 .hv2-nav__list > li:hover > .sub-menu,
body.page-template-page-home-v2 .hv2-nav__list > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
body.page-template-page-home-v2 .hv2-nav__list .sub-menu li { display: block; }
body.page-template-page-home-v2 .hv2-nav__list .sub-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 11.5px;
    letter-spacing: 0.05em;
    white-space: normal;
}
body.page-template-page-home-v2 .hv2-nav__list .sub-menu a:hover { background: rgba(15, 59, 82, 0.04); }
body.page-template-page-home-v2 .hv2-header__contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: none;
    white-space: nowrap;
}
body.page-template-page-home-v2 .hv2-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hv2-ink);
    text-decoration: none;
    white-space: nowrap;
}
body.page-template-page-home-v2 .hv2-header__phone .hv2-icon-phone { color: var(--hv2-teal); }
body.page-template-page-home-v2 .hv2-header__cta {
    padding: 13px 22px;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

/* =========================
   HERO
   ========================= */
body.page-template-page-home-v2 .hv2-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
body.page-template-page-home-v2 .hv2-hero__bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, #0f3b52 0%, #155f80 35%, #1e8aaf 70%, #25a0c9 100%);
    background-size: cover;
    background-position: center;
}
body.page-template-page-home-v2 .hv2-hero__bg[style*="--hv2-hero-img"] {
    background:
        var(--hv2-hero-img) center/cover no-repeat,
        linear-gradient(135deg, #0f3b52, #25a0c9);
}
body.page-template-page-home-v2 .hv2-hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(45% 55% at 85% 25%, rgba(245,186,69,0.28), transparent 70%),
        radial-gradient(60% 65% at 10% 10%, rgba(15,59,82,0.70), transparent 70%);
}
body.page-template-page-home-v2 .hv2-hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(15,59,82,0.85) 0%, rgba(30,138,175,0.55) 45%, rgba(37,160,201,0.22) 80%, transparent 100%);
}
body.page-template-page-home-v2 .hv2-hero__inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    padding: 84px 0 120px;
    width: 100%;
}
body.page-template-page-home-v2 .hv2-hero .hv2-pill {
    position: absolute;
    left: 32px;
    bottom: 110px;
    z-index: 3;
    background: rgba(255,255,255,0.92);
}
body.page-template-page-home-v2 .hv2-hero__copy { max-width: 620px; color: #fff; }
body.page-template-page-home-v2 .hv2-hero__title {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: clamp(40px, 5.4vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 22px;
}
body.page-template-page-home-v2 .hv2-hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--hv2-accent);
}
body.page-template-page-home-v2 .hv2-hero__lede {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 30px;
}
body.page-template-page-home-v2 .hv2-hero__disclaimer {
    color: rgba(255,255,255,0.62);
    font-size: 11px;
    line-height: 1.5;
    max-width: 520px;
    margin: -18px 0 26px;
}
body.page-template-page-home-v2 .hv2-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================
   WHY CHOOSE US
   ========================= */
body.page-template-page-home-v2 .hv2-why { background: var(--hv2-paper); }
body.page-template-page-home-v2 .hv2-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}
body.page-template-page-home-v2 .hv2-feature {
    background: #fff;
    padding: 38px 32px 34px;
    border-radius: 12px;
    border: 1px solid var(--hv2-line-soft);
}
body.page-template-page-home-v2 .hv2-feature__icon {
    width: 54px; height: 54px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hv2-teal);
    background: #e6f5fa;
    margin-bottom: 22px;
    position: relative;
    transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}
body.page-template-page-home-v2 .hv2-feature__icon svg {
    width: 28px;
    height: 28px;
    display: block;
}
body.page-template-page-home-v2 .hv2-feature:hover .hv2-feature__icon {
    background: var(--hv2-teal);
    color: #fff;
    transform: translateY(-2px);
}
body.page-template-page-home-v2 .hv2-feature:nth-child(2) .hv2-feature__icon { background: #fdf1dc; color: var(--hv2-accent-dark); }
body.page-template-page-home-v2 .hv2-feature:nth-child(2):hover .hv2-feature__icon { background: var(--hv2-accent); color: #1b2230; }
body.page-template-page-home-v2 .hv2-feature:nth-child(3) .hv2-feature__icon { background: #eaf5e8; color: #3f7a3a; }
body.page-template-page-home-v2 .hv2-feature:nth-child(3):hover .hv2-feature__icon { background: #4f8a48; color: #fff; }
body.page-template-page-home-v2 .hv2-feature h3 {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--hv2-ink);
    margin: 0 0 10px;
    letter-spacing: -0.005em;
}
body.page-template-page-home-v2 .hv2-feature p {
    color: var(--hv2-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* why — proof band: satisfaction stat strip + award recognition */
body.page-template-page-home-v2 .hv2-why__proof {
    max-width: 1080px;
    margin: 56px auto 0;
}
body.page-template-page-home-v2 .hv2-why__stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 64px;
    padding: 36px 0;
    border-top: 1px solid var(--hv2-line);
    text-align: center;
}
body.page-template-page-home-v2 .hv2-why__stat {
    flex: 0 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
body.page-template-page-home-v2 .hv2-why__stat-num {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--hv2-teal);
}
body.page-template-page-home-v2 .hv2-why__stat-label {
    font-size: 13px;
    line-height: 1.4;
    color: var(--hv2-muted);
    letter-spacing: 0.01em;
}
@media (max-width: 720px) {
    body.page-template-page-home-v2 .hv2-why__stats { gap: 28px 40px; }
    body.page-template-page-home-v2 .hv2-why__stat { flex-basis: 150px; }
    body.page-template-page-home-v2 .hv2-why__stat-num { font-size: 38px; }
}

/* =========================
   TREATMENTS — Signature protocols
   ========================= */
/* =========================
   CUSTOMISED SERVICES
   ========================= */
body.page-template-page-home-v2 .hv2-concerns {
    background:
        radial-gradient(60% 80% at 15% 10%, rgba(37, 160, 201, 0.06), transparent 60%),
        linear-gradient(180deg, var(--hv2-paper) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-concerns::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 160, 201, 0.18);
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-concerns::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 160px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(245, 186, 69, 0.2);
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-concerns__head {
    display: grid;
    grid-template-columns: 1.2fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 56px;
    max-width: none;
    text-align: left;
    position: relative;
    z-index: 1;
}
body.page-template-page-home-v2 .hv2-concerns__tabs {
    display: inline-flex;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(15, 59, 82, 0.1);
    border-radius: 999px;
    box-shadow: 0 12px 32px -18px rgba(15, 59, 82, 0.24);
    gap: 4px;
    flex: none;
}
body.page-template-page-home-v2 .hv2-concerns__tab {
    appearance: none;
    border: none;
    background: transparent;
    padding: 12px 22px;
    font-family: var(--hv2-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hv2-muted);
    cursor: pointer;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 200ms, color 200ms, box-shadow 200ms;
    white-space: nowrap;
}
body.page-template-page-home-v2 .hv2-concerns__tab:hover { color: var(--hv2-ink); }
body.page-template-page-home-v2 .hv2-concerns__tab.is-active {
    background: var(--hv2-navy);
    color: #fff;
    box-shadow: 0 10px 22px -12px rgba(15, 59, 82, 0.5);
}
body.page-template-page-home-v2 .hv2-concerns__tab-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
}
body.page-template-page-home-v2 .hv2-concerns__tab-icon svg { width: 100%; height: 100%; }

body.page-template-page-home-v2 .hv2-concerns__stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1.4fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}
body.page-template-page-home-v2 .hv2-concerns__portrait {
    position: sticky;
    top: 120px;
    isolation: isolate;
}
body.page-template-page-home-v2 .hv2-concerns__portrait-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 180px 180px 24px 24px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(37, 160, 201, 0.12) 0%, rgba(245, 186, 69, 0.06) 100%);
    box-shadow: 0 30px 60px -30px rgba(15, 59, 82, 0.35);
}
body.page-template-page-home-v2 .hv2-concerns__portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 360ms ease, transform 600ms ease;
}
body.page-template-page-home-v2 .hv2-concerns__portrait-img.is-active {
    opacity: 1;
    transform: scale(1);
}
body.page-template-page-home-v2 .hv2-concerns__portrait-tag {
    position: absolute;
    right: 20px;
    top: 32px;
    padding: 10px 18px;
    background: #ffffff;
    color: var(--hv2-navy);
    font-family: var(--hv2-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 10px 24px -10px rgba(15, 59, 82, 0.28);
    border: 1px solid rgba(15, 59, 82, 0.06);
    white-space: nowrap;
}

body.page-template-page-home-v2 .hv2-concerns__panel {
    display: none;
}
body.page-template-page-home-v2 .hv2-concerns__panel.is-active {
    display: block;
    animation: hv2ConcernsFade 360ms ease;
}
@keyframes hv2ConcernsFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
body.page-template-page-home-v2 .hv2-concerns__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    counter-reset: none;
}
body.page-template-page-home-v2 .hv2-concern { margin: 0; padding: 0; }
body.page-template-page-home-v2 .hv2-concern__link {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 2px;
    padding: 22px 22px 22px 18px;
    background: #fff;
    border: 1px solid rgba(15, 59, 82, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 220ms, box-shadow 220ms, transform 220ms;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}
body.page-template-page-home-v2 .hv2-concern__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--hv2-teal);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 260ms ease;
}
body.page-template-page-home-v2 .hv2-concern__link:hover {
    border-color: rgba(37, 160, 201, 0.4);
    box-shadow: 0 18px 40px -22px rgba(15, 59, 82, 0.22);
    transform: translateY(-2px);
}
body.page-template-page-home-v2 .hv2-concern__link:hover::before { transform: scaleY(1); }
body.page-template-page-home-v2 .hv2-concern__num {
    grid-row: 1;
    grid-column: 1;
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--hv2-teal);
    line-height: 1;
    padding-top: 4px;
    letter-spacing: 0.05em;
}
body.page-template-page-home-v2 .hv2-concern__thumb {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--hv2-paper);
    padding: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: none;
}
body.page-template-page-home-v2 .hv2-concern__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
body.page-template-page-home-v2 .hv2-concern__body {
    grid-row: 1 / span 2;
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
body.page-template-page-home-v2 .hv2-concern__title {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--hv2-ink);
    letter-spacing: -0.005em;
}
body.page-template-page-home-v2 .hv2-concern__blurb {
    font-family: var(--hv2-sans);
    font-size: 14px;
    line-height: 1.6;
    color: var(--hv2-muted);
}
body.page-template-page-home-v2 .hv2-concern__cta {
    margin-top: 6px;
    font-family: var(--hv2-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hv2-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 220ms;
}
body.page-template-page-home-v2 .hv2-concern__link:hover .hv2-concern__cta { gap: 12px; }

@media (max-width: 1100px) {
    body.page-template-page-home-v2 .hv2-concerns__stage {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    body.page-template-page-home-v2 .hv2-concerns__portrait { position: static; max-width: 440px; margin: 0 auto; }
    body.page-template-page-home-v2 .hv2-concerns__portrait-frame { aspect-ratio: 4 / 3; border-radius: 24px; }
    body.page-template-page-home-v2 .hv2-concerns__portrait-img { object-position: center 20%; }
    body.page-template-page-home-v2 .hv2-concerns__head {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    body.page-template-page-home-v2 .hv2-concerns__tabs { justify-self: start; }
}
@media (max-width: 680px) {
    body.page-template-page-home-v2 .hv2-concerns__grid { grid-template-columns: 1fr; }
    body.page-template-page-home-v2 .hv2-concerns__tabs { align-self: stretch; justify-self: stretch; width: 100%; }
    body.page-template-page-home-v2 .hv2-concerns__tab { flex: 1; justify-content: center; padding: 12px 12px; }
}

body.page-template-page-home-v2 .hv2-treatments {
    background:
        radial-gradient(70% 90% at 85% 5%, rgba(37,160,201,0.07), transparent 60%),
        radial-gradient(60% 80% at 5% 95%, rgba(245,186,69,0.08), transparent 60%),
        #fff;
}
body.page-template-page-home-v2 .hv2-sig__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
body.page-template-page-home-v2 .hv2-sig {
    position: relative;
    background: #fff;
    border: 1px solid var(--hv2-line-soft);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform 340ms cubic-bezier(.2,.7,.3,1), box-shadow 340ms ease, border-color 220ms ease;
}
body.page-template-page-home-v2 .hv2-sig:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 60px -34px rgba(15,59,82,0.35);
    border-color: rgba(37,160,201,0.35);
}
body.page-template-page-home-v2 .hv2-sig__media {
    position: relative;
    aspect-ratio: 5 / 3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-sig__media::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(12,42,57,0.65) 100%),
        linear-gradient(115deg, rgba(12,42,57,0.35) 0%, transparent 55%);
    transition: opacity 320ms ease;
}
body.page-template-page-home-v2 .hv2-sig__num {
    position: absolute;
    top: 22px; left: 24px;
    z-index: 2;
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0.92;
    transition: transform 360ms cubic-bezier(.2,.7,.3,1), color 320ms ease;
    text-shadow: 0 2px 18px rgba(12,42,57,0.45);
}
body.page-template-page-home-v2 .hv2-sig__num::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 10px;
    background: var(--hv2-accent);
    transition: width 360ms cubic-bezier(.2,.7,.3,1);
}
body.page-template-page-home-v2 .hv2-sig:hover .hv2-sig__num { transform: translate(2px, -3px); color: var(--hv2-accent); }
body.page-template-page-home-v2 .hv2-sig:hover .hv2-sig__num::after { width: 72px; background: #fff; }

body.page-template-page-home-v2 .hv2-sig__key {
    position: absolute;
    right: 20px; bottom: 20px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    text-align: right;
    color: #fff;
    padding: 10px 14px;
    background: rgba(12,42,57,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    max-width: 60%;
}
body.page-template-page-home-v2 .hv2-sig__key-label {
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hv2-accent);
    font-weight: 700;
    margin-bottom: 2px;
}
body.page-template-page-home-v2 .hv2-sig__key-value {
    font-family: var(--hv2-display);
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.005em;
    line-height: 1.15;
}

body.page-template-page-home-v2 .hv2-sig__body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body.page-template-page-home-v2 .hv2-sig__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}
body.page-template-page-home-v2 .hv2-sig__cat {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--hv2-ink);
}
body.page-template-page-home-v2 .hv2-sig__index {
    font-family: var(--hv2-display);
    font-style: italic;
    font-size: 13px;
    color: var(--hv2-muted);
    letter-spacing: 0.03em;
}
body.page-template-page-home-v2 .hv2-sig__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hv2-teal);
    line-height: 1.4;
    margin: 0 0 8px;
}
body.page-template-page-home-v2 .hv2-sig__desc {
    color: var(--hv2-muted);
    font-size: 16px;
    line-height: 1.7;
}
body.page-template-page-home-v2 .hv2-sig__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 2px 0 4px;
    padding: 0;
    list-style: none;
}
body.page-template-page-home-v2 .hv2-sig__benefits li {
    font-size: 11.5px;
    letter-spacing: 0.02em;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--hv2-paper);
    color: var(--hv2-teal-dark);
    border: 1px solid rgba(37,160,201,0.18);
    font-weight: 500;
}
body.page-template-page-home-v2 .hv2-sig__foot {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(37,160,201,0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-sig__inline-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}
body.page-template-page-home-v2 .hv2-sig__inline-label {
    font-family: var(--hv2-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hv2-muted);
}
body.page-template-page-home-v2 .hv2-sig__inline-amount {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--hv2-navy);
    letter-spacing: -0.005em;
    line-height: 1;
}
body.page-template-page-home-v2 .hv2-sig__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hv2-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #fff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--hv2-teal);
    transition: background 200ms ease, gap 200ms ease;
}
body.page-template-page-home-v2 .hv2-sig__link:hover {
    background: #1c8aab;
    color: #fff;
    gap: 12px;
}
body.page-template-page-home-v2 .hv2-sig__fineprint {
    margin: 32px auto 0;
    max-width: 760px;
    text-align: center;
    font-family: var(--hv2-sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--hv2-muted);
    letter-spacing: 0.01em;
}
body.page-template-page-home-v2 .hv2-sig__fineprint span {
    color: var(--hv2-accent);
    margin-right: 6px;
}

/* Alternating layout accent: even-index cards flip media position subtly */
body.page-template-page-home-v2 .hv2-sig:nth-child(even) .hv2-sig__key { right: auto; left: 20px; text-align: left; }

/* =========================
   REMARKABLE RESULTS (slider)
   ========================= */
body.page-template-page-home-v2 .hv2-results {
    background:
        radial-gradient(1200px 520px at 85% 10%, rgba(37, 160, 201, 0.08), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, var(--hv2-paper) 100%);
    position: relative;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-results::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(37, 160, 201, 0.06);
    filter: blur(40px);
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-results__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    text-align: left;
    max-width: none;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
body.page-template-page-home-v2 .hv2-results__controls {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: none;
}
body.page-template-page-home-v2 .hv2-results__nav {
    appearance: none;
    background: #ffffff;
    border: 1px solid rgba(15, 59, 82, 0.14);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hv2-navy);
    transition: background 180ms, color 180ms, border-color 180ms, transform 180ms;
    box-shadow: 0 4px 14px rgba(15, 59, 82, 0.06);
}
body.page-template-page-home-v2 .hv2-results__nav svg { width: 20px; height: 20px; }
body.page-template-page-home-v2 .hv2-results__nav:hover {
    background: var(--hv2-teal);
    border-color: var(--hv2-teal);
    color: #fff;
    transform: translateY(-1px);
}
body.page-template-page-home-v2 .hv2-results__counter {
    font-family: var(--hv2-display);
    font-size: 22px;
    color: var(--hv2-ink);
    min-width: 78px;
    text-align: center;
    letter-spacing: 0.02em;
}
body.page-template-page-home-v2 .hv2-results__counter strong { font-weight: 600; color: var(--hv2-teal); }
body.page-template-page-home-v2 .hv2-results__counter span[aria-hidden] { margin: 0 6px; opacity: 0.4; }

body.page-template-page-home-v2 .hv2-results__slider {
    position: relative;
    z-index: 1;
    margin: 0 -32px;
}
body.page-template-page-home-v2 .hv2-results__track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 32px 40px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
body.page-template-page-home-v2 .hv2-results__track::-webkit-scrollbar { display: none; }

body.page-template-page-home-v2 .hv2-result {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px -24px rgba(15, 59, 82, 0.22), 0 2px 8px rgba(15, 59, 82, 0.04);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    position: relative;
}
body.page-template-page-home-v2 .hv2-result::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(15, 59, 82, 0.06);
    border-radius: inherit;
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-result__photo {
    margin: 0;
    position: relative;
    background: #eaf6fb;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-result__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.page-template-page-home-v2 .hv2-result__tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(15, 59, 82, 0.92);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--hv2-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
body.page-template-page-home-v2 .hv2-result__copy {
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
}
body.page-template-page-home-v2 .hv2-result__copy::before {
    content: "“";
    position: absolute;
    top: 18px;
    right: 36px;
    font-family: var(--hv2-display);
    font-size: 140px;
    line-height: 1;
    color: var(--hv2-teal);
    opacity: 0.08;
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-result__concern {
    font-family: var(--hv2-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hv2-teal);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(37, 160, 201, 0.22);
    align-self: flex-start;
}
body.page-template-page-home-v2 .hv2-result__quote {
    margin: 0;
    font-family: var(--hv2-display);
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.4;
    color: var(--hv2-ink);
    letter-spacing: -0.005em;
}
body.page-template-page-home-v2 .hv2-result__person {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 59, 82, 0.08);
}
body.page-template-page-home-v2 .hv2-result__person strong {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--hv2-navy);
    letter-spacing: 0.01em;
}
body.page-template-page-home-v2 .hv2-result__person span {
    font-family: var(--hv2-sans);
    font-size: 13px;
    color: var(--hv2-muted);
    letter-spacing: 0.02em;
}

body.page-template-page-home-v2 .hv2-results__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-results__dot {
    appearance: none;
    border: none;
    background: rgba(15, 59, 82, 0.18);
    width: 28px;
    height: 3px;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    transition: background 200ms, width 200ms;
}
body.page-template-page-home-v2 .hv2-results__dot.is-active {
    background: var(--hv2-teal);
    width: 48px;
}
body.page-template-page-home-v2 .hv2-results__dot:hover:not(.is-active) { background: rgba(15, 59, 82, 0.32); }

@media (max-width: 900px) {
    body.page-template-page-home-v2 .hv2-results__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        text-align: center;
    }
    body.page-template-page-home-v2 .hv2-results__head > div:first-child { width: 100%; text-align: center; }
    body.page-template-page-home-v2 .hv2-results__controls { align-self: center; }
    body.page-template-page-home-v2 .hv2-result {
        grid-template-columns: 1fr;
    }
    body.page-template-page-home-v2 .hv2-result__photo { aspect-ratio: 16 / 11; }
    body.page-template-page-home-v2 .hv2-result__copy { padding: 32px 28px; }
    body.page-template-page-home-v2 .hv2-result__copy::before { font-size: 92px; top: 8px; right: 20px; }
}

/* =========================
   EXPERTS
   ========================= */
body.page-template-page-home-v2 .hv2-experts { background: var(--hv2-paper-alt); }
body.page-template-page-home-v2 .hv2-experts__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
}
body.page-template-page-home-v2 .hv2-experts__photo {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 28px 60px -30px rgba(15, 59, 82, 0.32), 0 2px 8px rgba(15, 59, 82, 0.05);
    aspect-ratio: 5 / 3.4;
}
body.page-template-page-home-v2 .hv2-experts__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.page-template-page-home-v2 .hv2-experts__photo-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 16px;
    background: rgba(15, 59, 82, 0.92);
    color: #fff;
    font-family: var(--hv2-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

body.page-template-page-home-v2 .hv2-experts__reviews {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.page-template-page-home-v2 .hv2-experts__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--hv2-muted);
}
body.page-template-page-home-v2 .hv2-stars { color: #f0b020; letter-spacing: 2px; font-size: 14px; }

body.page-template-page-home-v2 .hv2-experts__copy .hv2-section__title { text-align: left; font-size: clamp(30px, 3.4vw, 44px); }
body.page-template-page-home-v2 .hv2-doctor {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 26px 0 20px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--hv2-line-soft);
    border-radius: 10px;
    max-width: 480px;
}
body.page-template-page-home-v2 .hv2-doctor__avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hv2-teal), var(--hv2-ink));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hv2-display);
    font-size: 18px;
    font-weight: 700;
    flex: none;
}
body.page-template-page-home-v2 .hv2-doctor__name {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--hv2-ink);
}
body.page-template-page-home-v2 .hv2-doctor__role { font-size: 12px; color: var(--hv2-teal); font-weight: 600; letter-spacing: 0.02em; }
body.page-template-page-home-v2 .hv2-doctor__cred { font-size: 11.5px; color: var(--hv2-muted); margin-top: 2px; }

body.page-template-page-home-v2 .hv2-quote {
    font-family: var(--hv2-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: var(--hv2-ink-soft);
    margin: 22px 0;
    padding-left: 16px;
    border-left: 3px solid var(--hv2-accent);
}

body.page-template-page-home-v2 .hv2-disclaimer {
    font-size: 11px;
    line-height: 1.5;
    color: var(--hv2-ink-mute, #8a8f98);
    margin: -8px 0 22px;
}

body.page-template-page-home-v2 .hv2-credentials { display: grid; gap: 10px; margin: 0 0 24px; }
body.page-template-page-home-v2 .hv2-credentials li {
    display: flex;
    gap: 10px;
    font-size: 16px;
    color: var(--hv2-ink-soft);
    line-height: 1.6;
}
body.page-template-page-home-v2 .hv2-credentials li::before {
    content: "✓";
    color: var(--hv2-accent-dark);
    font-weight: 700;
    flex: none;
}

body.page-template-page-home-v2 .hv2-textlink {
    color: var(--hv2-teal);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1.5px solid var(--hv2-teal);
    padding-bottom: 3px;
    transition: color 200ms, border-color 200ms;
}
body.page-template-page-home-v2 .hv2-textlink:hover { color: var(--hv2-teal-dark); border-color: var(--hv2-accent); }

/* =========================
   FAQ
   ========================= */
body.page-template-page-home-v2 .hv2-faq { background: var(--hv2-paper); }
body.page-template-page-home-v2 .hv2-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
body.page-template-page-home-v2 .hv2-faq__item {
    background: #fff;
    border: 1px solid var(--hv2-line-soft);
    border-radius: 8px;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.35;
    color: var(--hv2-ink);
}
body.page-template-page-home-v2 .hv2-faq__item summary::-webkit-details-marker { display: none; }
body.page-template-page-home-v2 .hv2-faq__item summary:hover { color: var(--hv2-teal); }
body.page-template-page-home-v2 .hv2-faq__icon {
    font-size: 22px;
    color: var(--hv2-accent-dark);
    transition: transform 320ms cubic-bezier(.2,.7,.3,1), color 220ms;
}
body.page-template-page-home-v2 .hv2-faq__item[open] .hv2-faq__icon { transform: rotate(90deg); color: var(--hv2-teal); }

/* Accordion reveal — uses modern ::details-content. Falls back to instant open in older browsers. */
@supports (interpolate-size: allow-keywords) {
    body.page-template-page-home-v2 .hv2-faq__item { interpolate-size: allow-keywords; }
}
body.page-template-page-home-v2 .hv2-faq__item::details-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        height 320ms cubic-bezier(.2,.7,.3,1),
        opacity 260ms ease,
        transform 320ms cubic-bezier(.2,.7,.3,1),
        content-visibility 320ms;
    transition-behavior: allow-discrete;
}
body.page-template-page-home-v2 .hv2-faq__item[open]::details-content {
    height: auto;
    opacity: 1;
    transform: translateY(0);
}

body.page-template-page-home-v2 .hv2-faq__answer {
    padding: 0 24px 20px;
    color: var(--hv2-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================
   REVIEWS
   ========================= */
body.page-template-page-home-v2 .hv2-reviews {
    position: relative;
    background:
        radial-gradient(60% 70% at 90% 10%, rgba(37,160,201,0.10), transparent 60%),
        radial-gradient(50% 60% at 5% 95%, rgba(245,186,69,0.10), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f5fdff 100%);
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-reviews__deco {
    position: absolute;
    font-family: var(--hv2-display);
    font-weight: 500;
    font-style: italic;
    font-size: 380px;
    line-height: 0.8;
    color: rgba(37,160,201,0.04);
    top: 20px;
    right: -20px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
body.page-template-page-home-v2 .hv2-reviews__deco::before { content: "\201C"; }
body.page-template-page-home-v2 .hv2-reviews .hv2-wrap { position: relative; z-index: 1; }

body.page-template-page-home-v2 .hv2-reviews__head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
body.page-template-page-home-v2 .hv2-reviews__head .hv2-section__title { text-align: center; }

/* Elfsight widget frame — provides breathing room & a soft chrome without overriding the widget's own styling. */
body.page-template-page-home-v2 .hv2-reviews__embed {
    position: relative;
    padding: 28px 28px 44px;
    border-radius: 0 0 18px 18px;
    background: #fff;
    border: 1px solid rgba(37,160,201,0.12);
    box-shadow:
        0 1px 0 rgba(12,42,57,0.04),
        0 28px 48px -34px rgba(15,59,82,0.28);
}
body.page-template-page-home-v2 .hv2-reviews__embed::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hv2-teal) 0%, var(--hv2-teal-dark) 55%, var(--hv2-accent) 100%);
}
body.page-template-page-home-v2 .hv2-reviews__embed .elfsight-app-8d6a0012-e774-474e-a9e6-97748bdfdecf { min-height: 180px; }

body.page-template-page-home-v2 .hv2-reviews__wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
body.page-template-page-home-v2 .hv2-review {
    position: relative;
    background: #fff;
    border: 1px solid rgba(37,160,201,0.14);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 320ms cubic-bezier(.2,.7,.3,1), box-shadow 320ms ease, border-color 260ms ease;
}
body.page-template-page-home-v2 .hv2-review:hover {
    transform: translateY(-4px);
    border-color: rgba(37,160,201,0.4);
    box-shadow: 0 34px 60px -34px rgba(15,59,82,0.35);
}
body.page-template-page-home-v2 .hv2-review--hero {
    grid-row: span 2;
    transform: translateY(-30px);
}
body.page-template-page-home-v2 .hv2-review--hero:hover {
    transform: translateY(-36px);
}

body.page-template-page-home-v2 .hv2-review__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #eef7fa;
}
body.page-template-page-home-v2 .hv2-review--hero .hv2-review__media {
    aspect-ratio: 4 / 3;
}
body.page-template-page-home-v2 .hv2-review__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,42,57,0.05) 0%, transparent 40%, rgba(12,42,57,0.35) 100%);
}
body.page-template-page-home-v2 .hv2-review__badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 1;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 4px;
    background: rgba(12,42,57,0.7);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

body.page-template-page-home-v2 .hv2-review__body {
    padding: 24px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
body.page-template-page-home-v2 .hv2-review--hero .hv2-review__body {
    padding: 30px 34px 30px;
    gap: 16px;
}

body.page-template-page-home-v2 .hv2-review__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
body.page-template-page-home-v2 .hv2-review__stars {
    color: var(--hv2-accent);
    letter-spacing: 3px;
    font-size: 16px;
    line-height: 1;
}
body.page-template-page-home-v2 .hv2-review__platform {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hv2-muted);
    font-weight: 600;
}

body.page-template-page-home-v2 .hv2-review__headline {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--hv2-ink);
    margin: 0;
}
body.page-template-page-home-v2 .hv2-review--hero .hv2-review__headline {
    font-size: 30px;
    line-height: 1.15;
}

body.page-template-page-home-v2 .hv2-review__quote {
    position: relative;
    font-family: var(--hv2-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hv2-ink-soft);
    padding-left: 32px;
    margin: 0;
    flex: 1;
}
body.page-template-page-home-v2 .hv2-review--hero .hv2-review__quote { font-size: 15.5px; line-height: 1.75; }
body.page-template-page-home-v2 .hv2-review__mark {
    position: absolute;
    left: 0;
    top: -12px;
    font-family: var(--hv2-display);
    font-size: 64px;
    line-height: 1;
    color: var(--hv2-teal);
    font-style: italic;
    font-weight: 600;
}

body.page-template-page-home-v2 .hv2-review__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px dashed rgba(37,160,201,0.22);
}
body.page-template-page-home-v2 .hv2-review__avatar {
    flex: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--hv2-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
}
body.page-template-page-home-v2 .hv2-review__who { display: flex; flex-direction: column; flex: 1; line-height: 1.3; }
body.page-template-page-home-v2 .hv2-review__name {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--hv2-ink);
    letter-spacing: -0.005em;
}
body.page-template-page-home-v2 .hv2-review__meta {
    font-size: 11.5px;
    color: var(--hv2-muted);
    margin-top: 2px;
}
body.page-template-page-home-v2 .hv2-review__verified {
    flex: none;
    color: var(--hv2-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
body.page-template-page-home-v2 .hv2-review__verified svg { width: 22px; height: 22px; }

/* Stat bar */
body.page-template-page-home-v2 .hv2-callout {
    width: 100%;
    margin-top: 56px;
    padding: 28px 44px;
    border-radius: 16px;
    background: linear-gradient(95deg, #0f3b52 0%, #155f80 60%, #1e8aaf 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-callout::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(50% 100% at 92% 50%, rgba(245,186,69,0.22), transparent 65%);
    pointer-events: none;
}
body.page-template-page-home-v2 .hv2-callout__num {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}
body.page-template-page-home-v2 .hv2-callout__unit {
    color: var(--hv2-accent);
    font-style: italic;
    font-size: 40px;
    margin-left: 2px;
}
body.page-template-page-home-v2 .hv2-callout__label {
    font-family: var(--hv2-sans);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    border-left: 1px solid rgba(255,255,255,0.22);
    padding-left: 28px;
    line-height: 1.3;
}

/* =========================
   OUTLETS
   ========================= */
body.page-template-page-home-v2 .hv2-outlets { background: var(--hv2-paper-alt); }
body.page-template-page-home-v2 .hv2-outlets__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* update */
    gap: 14px;
}
body.page-template-page-home-v2 .hv2-outlet {
    position: relative;
    background: #fff;
    border: 1px solid rgba(37,160,201,0.18);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--hv2-ink);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.005em;
    box-shadow: 0 1px 0 rgba(12,42,57,0.03);
    transition: transform 220ms ease, box-shadow 260ms ease, border-color 220ms ease, background 220ms ease;
    overflow: hidden;
	
	gap: 0 12px;
	cursor: pointer;
	height: max-content;
	flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-outlet::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--hv2-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 280ms cubic-bezier(.2,.7,.3,1);
}
body.page-template-page-home-v2 .hv2-outlet:hover {
    transform: translateY(-2px);
    border-color: var(--hv2-teal);
    box-shadow: 0 18px 30px -22px rgba(15,59,82,0.35);
}
body.page-template-page-home-v2 .hv2-outlet:hover::before { transform: scaleY(1); transform-origin: top; }
body.page-template-page-home-v2 .hv2-outlet__pin {
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e6f5fa;
    color: var(--hv2-teal);
    font-size: 13px;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}
body.page-template-page-home-v2 .hv2-outlet:hover .hv2-outlet__pin {
    background: var(--hv2-teal);
    color: #fff;
    transform: scale(1.08);
}

body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__title {
	width: calc(100% - 50px);
	max-width: max-content;
}

body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__toggle {
	position: absolute;
	top: 18px;
	right: 8px;
	display: flex;
	flex-direction: column;
	transition: all ease 0.3s;
}


body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__toggle::before {
	content: url("data:image/svg+xml;base64,PHN2ZwogICAgICAgICAgICAgICAgICB3aWR0aD0iMjRweCIKICAgICAgICAgICAgICAgICAgaGVpZ2h0PSIyNHB4IgogICAgICAgICAgICAgICAgICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgICAgICAgICAgICAgICAgIGZpbGw9Im5vbmUiCiAgICAgICAgICAgICAgICAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICAgICAgICAgICAgICAgc3Ryb2tlPSIjMjVhMGM5IgogICAgICAgICAgICAgICAgPgogICAgICAgICAgICAgICAgICA8ZyBpZD0iU1ZHUmVwb19iZ0NhcnJpZXIiIHN0cm9rZS13aWR0aD0iMCI+PC9nPgogICAgICAgICAgICAgICAgICA8ZwogICAgICAgICAgICAgICAgICAgIGlkPSJTVkdSZXBvX3RyYWNlckNhcnJpZXIiCiAgICAgICAgICAgICAgICAgICAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogICAgICAgICAgICAgICAgICAgIHN0cm9rZS1saW5lam9pbj0icm91bmQiCiAgICAgICAgICAgICAgICAgID48L2c+CiAgICAgICAgICAgICAgICAgIDxnIGlkPSJTVkdSZXBvX2ljb25DYXJyaWVyIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aAogICAgICAgICAgICAgICAgICAgICAgZD0iTTUuNzA3MTEgOS43MTA2OUM1LjMxNjU4IDEwLjEwMTIgNS4zMTY1OCAxMC43MzQ0IDUuNzA3MTEgMTEuMTI0OUwxMC41OTkzIDE2LjAxMjNDMTEuMzgwNSAxNi43OTI3IDEyLjY0NjMgMTYuNzkyNCAxMy40MjcxIDE2LjAxMTdMMTguMzE3NCAxMS4xMjEzQzE4LjcwOCAxMC43MzA4IDE4LjcwOCAxMC4wOTc2IDE4LjMxNzQgOS43MDcwOEMxNy45MjY5IDkuMzE2NTUgMTcuMjkzNyA5LjMxNjU1IDE2LjkwMzIgOS43MDcwOEwxMi43MTc2IDEzLjg5MjdDMTIuMzI3MSAxNC4yODMzIDExLjY5MzkgMTQuMjgzMiAxMS4zMDM0IDEzLjg5MjdMNy4xMjEzMiA5LjcxMDY5QzYuNzMwOCA5LjMyMDE2IDYuMDk3NjMgOS4zMjAxNiA1LjcwNzExIDkuNzEwNjlaIgogICAgICAgICAgICAgICAgICAgICAgZmlsbD0iIzI1YTBjOSIKICAgICAgICAgICAgICAgICAgICA+PC9wYXRoPgogICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICA8L3N2Zz4=");
	width: 24px;
	height: 24px;
}

body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__toggle.toggle-active {
	transform: rotate(180deg);
}

/* =========================
   dropdown outlet
   ========================= */

body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__acc {
	position: relative;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	max-height: 0rem;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all ease 0.3s;
}
body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__acc.acc-opened {
	visibility: visible;
	height: 100%;
	max-height: 100rem;
	opacity: 1;
	transition: all ease 0.3s;
}

body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__acc .hv2-outlet__acc-address {
	margin: 15px 0;
	padding-top: 10px;
	border-top: 1px solid #e5e5e5;
}
body.page-template-page-home-v2 .hv2-outlet .hv2-outlet__acc .hv2-outlet__phone {
	margin-bottom: 10px;
}


/* =========================
   CTA
   ========================= */
body.page-template-page-home-v2 .hv2-cta {
    position: relative;
    color: #fff;
    overflow: hidden;
    padding: 110px 0;
}
body.page-template-page-home-v2 .hv2-cta__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0f3b52 0%, #155f80 50%, #25a0c9 100%);
}
body.page-template-page-home-v2 .hv2-cta__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 60% at 15% 50%, rgba(15,59,82,0.55), transparent 70%),
        radial-gradient(45% 55% at 88% 25%, rgba(245,186,69,0.22), transparent 70%);
}
body.page-template-page-home-v2 .hv2-cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
body.page-template-page-home-v2 .hv2-cta__title {
    font-family: var(--hv2-display);
    font-weight: 500;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.08;
    color: #fff;
    margin: 0 auto 20px;
    max-width: 820px;
    letter-spacing: -0.01em;
}
body.page-template-page-home-v2 .hv2-cta__title em { font-style: italic; color: var(--hv2-accent); font-weight: 500; }
body.page-template-page-home-v2 .hv2-cta__lede {
    max-width: 680px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.7;
}
body.page-template-page-home-v2 .hv2-cta__ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
body.page-template-page-home-v2 .hv2-cta__fine { margin-top: 22px; font-size: 12px; color: rgba(255,255,255,0.65); }

/* =========================
   FOOTER (scoped)
   ========================= */
body.page-template-page-home-v2 .hv2-footer {
    background:
        radial-gradient(60% 80% at 85% 15%, rgba(37,160,201,0.18), transparent 65%),
        radial-gradient(50% 70% at 10% 90%, rgba(245,186,69,0.09), transparent 65%),
        linear-gradient(180deg, #0c2a39 0%, #081c26 100%);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.65;
    position: relative;
}
body.page-template-page-home-v2 .hv2-footer::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hv2-teal) 0%, var(--hv2-teal-dark) 45%, var(--hv2-accent) 100%);
    opacity: 0.9;
}
body.page-template-page-home-v2 .hv2-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 72px 32px 48px;
}
body.page-template-page-home-v2 .hv2-footer .hv2-logo--light .hv2-logo__city,
body.page-template-page-home-v2 .hv2-footer .hv2-logo--light .hv2-logo__tagline { color: #fff; opacity: 1; }
body.page-template-page-home-v2 .hv2-footer__about {
    margin: 20px 0 22px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}
body.page-template-page-home-v2 .hv2-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
body.page-template-page-home-v2 .hv2-footer__badge-mark { color: #f0b020; font-size: 15px; }

body.page-template-page-home-v2 .hv2-footer__heading {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    margin: 0 0 18px;
}
body.page-template-page-home-v2 .hv2-footer__col ul { display: grid; gap: 10px; }
body.page-template-page-home-v2 .hv2-footer__col ul a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 180ms;
}
body.page-template-page-home-v2 .hv2-footer__col ul a:hover { color: var(--hv2-teal); }
body.page-template-page-home-v2 .hv2-footer__more { color: #fff !important; font-weight: 500; }

body.page-template-page-home-v2 .hv2-footer__contact { display: grid; gap: 16px; }
body.page-template-page-home-v2 .hv2-footer__contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.78);
}
body.page-template-page-home-v2 .hv2-footer__contact li .hv2-icon-phone,
body.page-template-page-home-v2 .hv2-footer__contact li .hv2-icon-mail,
body.page-template-page-home-v2 .hv2-footer__contact li .hv2-icon-clock,
body.page-template-page-home-v2 .hv2-footer__contact li .hv2-icon-pin { color: var(--hv2-teal); margin-top: 2px; }
body.page-template-page-home-v2 .hv2-footer__contact li div { display: flex; flex-direction: column; }
body.page-template-page-home-v2 .hv2-footer__contact li strong { color: #fff; font-weight: 500; font-size: 13.5px; }
body.page-template-page-home-v2 .hv2-footer__contact li span { font-size: 12px; color: rgba(255,255,255,0.55); }

body.page-template-page-home-v2 .hv2-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}
body.page-template-page-home-v2 .hv2-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
body.page-template-page-home-v2 .hv2-footer__bottom nav {
    display: flex;
    gap: 22px;
}
body.page-template-page-home-v2 .hv2-footer__bottom a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 180ms;
}
body.page-template-page-home-v2 .hv2-footer__bottom a:hover { color: var(--hv2-teal); }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1080px) {
    body.page-template-page-home-v2 .hv2-wrap { padding: 0 24px; }
    body.page-template-page-home-v2 .hv2-section { padding: 72px 0; }
    body.page-template-page-home-v2 .hv2-nav { display: none; }
    body.page-template-page-home-v2 .hv2-header__inner { justify-content: space-between; }
    body.page-template-page-home-v2 .hv2-why__grid { gap: 20px; }
    body.page-template-page-home-v2 .hv2-sig__grid { grid-template-columns: 1fr; gap: 24px; }
    body.page-template-page-home-v2 .hv2-experts__grid { grid-template-columns: 1fr; gap: 40px; }
    body.page-template-page-home-v2 .hv2-outlets__grid { grid-template-columns: repeat(3, 1fr); }
    body.page-template-page-home-v2 .hv2-reviews__wall { grid-template-columns: 1fr 1fr; }
    body.page-template-page-home-v2 .hv2-review--hero { grid-column: span 2; grid-row: auto; transform: none; }
    body.page-template-page-home-v2 .hv2-review--hero:hover { transform: translateY(-4px); }
    body.page-template-page-home-v2 .hv2-callout { padding: 24px 28px; gap: 22px; }
    body.page-template-page-home-v2 .hv2-callout__num { font-size: 44px; }
    body.page-template-page-home-v2 .hv2-callout__unit { font-size: 32px; }
    body.page-template-page-home-v2 .hv2-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 24px 36px; }
}
@media (max-width: 640px) {
    body.page-template-page-home-v2 .hv2-wrap { padding: 0 20px; }
    body.page-template-page-home-v2 .hv2-header__utility-inner { flex-direction: column; gap: 6px; padding: 8px 0; font-size: 11.5px; }
    body.page-template-page-home-v2 .hv2-header__utility { font-size: 11.5px; }
    body.page-template-page-home-v2 .hv2-util-links { border-right: none; padding-right: 0; margin-right: 0; gap: 14px; }
    body.page-template-page-home-v2 .hv2-header__cta { padding: 11px 18px; font-size: 11px; }
    body.page-template-page-home-v2 .hv2-hero__inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px 24px;
    }
    body.page-template-page-home-v2 .hv2-why__grid { grid-template-columns: 1fr; }
    body.page-template-page-home-v2 .hv2-reviews__wall { grid-template-columns: 1fr; }
    body.page-template-page-home-v2 .hv2-review--hero { grid-column: auto; }
    body.page-template-page-home-v2 .hv2-callout { flex-direction: column; gap: 12px; padding: 22px 22px; text-align: center; }
    body.page-template-page-home-v2 .hv2-callout__label { border-left: none; padding-left: 0; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.22); }
    body.page-template-page-home-v2 .hv2-reviews__deco { font-size: 320px; top: 20px; right: -30px; }
    body.page-template-page-home-v2 .hv2-sig__num { font-size: 42px; }
    body.page-template-page-home-v2 .hv2-sig__cat { font-size: 22px; }
    body.page-template-page-home-v2 .hv2-sig__body { padding: 24px 22px 24px; }
    body.page-template-page-home-v2 .hv2-outlets__grid { grid-template-columns: repeat(1, 1fr); }
    body.page-template-page-home-v2 .hv2-footer__grid { grid-template-columns: 1fr; gap: 32px; }
    body.page-template-page-home-v2 .hv2-footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   MEDIA & BLOGGERS — Press / Editorial rail
   ========================================================= */
body.page-template-page-home-v2 .hv2-media {
    position: relative;
    background:
        radial-gradient(50% 70% at 12% 0%, rgba(37,160,201,0.07), transparent 65%),
        radial-gradient(40% 60% at 95% 90%, rgba(245,186,69,0.06), transparent 65%),
        #ffffff;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-media__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--hv2-line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--hv2-line-soft) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: -1px -1px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
body.page-template-page-home-v2 .hv2-media .hv2-wrap { position: relative; z-index: 1; }

body.page-template-page-home-v2 .hv2-media__head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
    gap: 40px;
    margin-bottom: 56px;
}
body.page-template-page-home-v2 .hv2-media__head-copy .hv2-section__title {
    text-align: left;
}
body.page-template-page-home-v2 .hv2-media__head-copy .hv2-section__lede {
    text-align: left;
    max-width: 460px;
    font-size: 15.5px;
}
body.page-template-page-home-v2 .hv2-media__count {
    align-self: end;
    text-align: right;
    font-family: var(--hv2-sans);
    font-size: 11.5px;
    color: var(--hv2-muted);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    line-height: 1.6;
    border-top: 1px solid var(--hv2-line);
    padding-top: 18px;
}
body.page-template-page-home-v2 .hv2-media__count strong {
    display: block;
    font-family: var(--hv2-display);
    font-style: italic;
    font-weight: 500;
    font-size: 64px;
    color: var(--hv2-teal);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 6px;
}

body.page-template-page-home-v2 .hv2-media__rail {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -32px;
    padding: 14px 32px 36px;
}
body.page-template-page-home-v2 .hv2-media__rail::-webkit-scrollbar { display: none; }
body.page-template-page-home-v2 .hv2-media__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 360px;
    gap: 24px;
}

body.page-template-page-home-v2 .hv2-media__card {
    position: relative;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    padding: 32px 30px 28px;
    box-shadow:
        0 32px 60px -38px rgba(15, 59, 82, 0.32),
        0 1px 0 rgba(15, 59, 82, 0.04);
    border: 1px solid var(--hv2-line-soft);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 320ms cubic-bezier(.2,.7,.3,1), box-shadow 320ms ease, border-color 320ms ease;
    overflow: hidden;
    min-height: 360px;
}
body.page-template-page-home-v2 .hv2-media__card::before {
    content: "\201C";
    position: absolute;
    top: -28px;
    right: 18px;
    font-family: var(--hv2-display);
    font-style: italic;
    font-weight: 500;
    font-size: 220px;
    line-height: 1;
    color: rgba(37,160,201,0.10);
    pointer-events: none;
    transition: color 320ms ease, transform 320ms ease;
}
body.page-template-page-home-v2 .hv2-media__card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 44px 70px -32px rgba(15, 59, 82, 0.34),
        0 1px 0 rgba(15, 59, 82, 0.04);
    border-color: rgba(37,160,201,0.20);
}
body.page-template-page-home-v2 .hv2-media__card:hover::before {
    color: rgba(245,186,69,0.22);
    transform: translateY(2px);
}

body.page-template-page-home-v2 .hv2-media__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
body.page-template-page-home-v2 .hv2-media__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hv2-paper-alt);
    border: 2px solid #fff;
    box-shadow: 0 6px 18px -6px rgba(15, 59, 82, 0.24);
    flex: none;
    display: block;
}
body.page-template-page-home-v2 .hv2-media__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
body.page-template-page-home-v2 .hv2-media__index {
    font-family: var(--hv2-sans);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hv2-muted);
    opacity: 0.7;
}

body.page-template-page-home-v2 .hv2-media__quote {
    font-family: var(--hv2-display);
    font-style: italic;
    font-weight: 500;
    font-size: 17.5px;
    line-height: 1.55;
    color: var(--hv2-ink-soft);
    margin: 0;
    flex: 1;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-media__quote::before {
    content: "";
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--hv2-accent);
    margin-bottom: 14px;
    opacity: 0.85;
}

body.page-template-page-home-v2 .hv2-media__byline {
    margin-top: auto;
    border-top: 1px dashed var(--hv2-line);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
body.page-template-page-home-v2 .hv2-media__byline strong {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 17px;
    color: var(--hv2-ink);
    letter-spacing: -0.005em;
}
body.page-template-page-home-v2 .hv2-media__byline span {
    font-family: var(--hv2-sans);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--hv2-teal);
    font-weight: 600;
}
body.page-template-page-home-v2 .hv2-media__link {
    align-self: flex-start;
    font-family: var(--hv2-sans);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--hv2-ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--hv2-accent);
    padding-bottom: 2px;
    transition: color 200ms ease, border-color 200ms ease;
}
body.page-template-page-home-v2 .hv2-media__link:hover {
    color: var(--hv2-teal);
    border-color: var(--hv2-teal);
}
body.page-template-page-home-v2 .hv2-media__link span {
    display: inline-block;
    transition: transform 200ms ease;
    margin-left: 2px;
}
body.page-template-page-home-v2 .hv2-media__link:hover span {
    transform: translateX(4px);
}

body.page-template-page-home-v2 .hv2-media__nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
    justify-content: flex-end;
}
body.page-template-page-home-v2 .hv2-media__progress {
    flex: 1;
    max-width: 260px;
    height: 2px;
    background: var(--hv2-line-soft);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
body.page-template-page-home-v2 .hv2-media__progress span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hv2-teal), var(--hv2-accent));
    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(.2,.7,.3,1);
}
body.page-template-page-home-v2 .hv2-media__btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--hv2-line);
    background: #fff;
    color: var(--hv2-ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
body.page-template-page-home-v2 .hv2-media__btn:hover {
    background: var(--hv2-teal);
    color: #fff;
    border-color: var(--hv2-teal);
    transform: translateY(-1px);
}
body.page-template-page-home-v2 .hv2-media__btn svg { width: 18px; height: 18px; }

@media (max-width: 860px) {
    body.page-template-page-home-v2 .hv2-media__head {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    body.page-template-page-home-v2 .hv2-media__head-copy .hv2-section__title { text-align: center; }
    body.page-template-page-home-v2 .hv2-media__head-copy .hv2-section__lede { text-align: center; margin-left: auto; margin-right: auto; }
    body.page-template-page-home-v2 .hv2-media__count { text-align: center; border-top: none; padding-top: 0; }
    body.page-template-page-home-v2 .hv2-media__count strong { font-size: 48px; }
    body.page-template-page-home-v2 .hv2-media__track { grid-auto-columns: minmax(280px, 84vw); }
    body.page-template-page-home-v2 .hv2-media__card { min-height: 320px; padding: 28px 24px 24px; }
    body.page-template-page-home-v2 .hv2-media__nav { justify-content: center; }
    body.page-template-page-home-v2 .hv2-media__progress { max-width: none; }
}

/* =========================================================
   AWARDS / RECOGNITION
   ========================================================= */
body.page-template-page-home-v2 .hv2-awards {
    position: relative;
    background:
        linear-gradient(180deg, var(--hv2-paper-alt) 0%, #ffffff 100%);
    overflow: hidden;
}
body.page-template-page-home-v2 .hv2-awards__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
    position: relative;
}
body.page-template-page-home-v2 .hv2-awards__head .hv2-section__title { text-align: center; }
body.page-template-page-home-v2 .hv2-awards__head .hv2-section__lede { text-align: center; }
body.page-template-page-home-v2 .hv2-awards__years {
    display: inline-block;
    margin-top: 18px;
    padding: 7px 20px;
    border: 1px solid rgba(245,186,69,0.55);
    background: rgba(255,255,255,0.65);
    color: var(--hv2-accent-dark);
    font-family: var(--hv2-sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
}

body.page-template-page-home-v2 .hv2-awards__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
}
body.page-template-page-home-v2 .hv2-awards__item {
    position: relative;
    padding: 22px 16px 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(245,186,69,0.18);
    box-shadow: 0 22px 40px -28px rgba(15, 59, 82, 0.30);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    transition: transform 320ms cubic-bezier(.2,.7,.3,1), box-shadow 320ms ease, border-color 320ms ease;
    text-align: center;
}
body.page-template-page-home-v2 .hv2-awards__item::before {
    content: "";
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px dashed rgba(245,186,69,0.20);
    border-radius: 10px;
    pointer-events: none;
    transition: border-color 320ms ease;
}
body.page-template-page-home-v2 .hv2-awards__item:hover {
    transform: translateY(-6px);
    border-color: rgba(245,186,69,0.55);
    box-shadow: 0 36px 56px -22px rgba(229,168,42,0.32);
}
body.page-template-page-home-v2 .hv2-awards__item:hover::before {
    border-color: rgba(245,186,69,0.45);
}
body.page-template-page-home-v2 .hv2-awards__img {
    width: auto;
    max-width: 80%;
    height: 100px;
    object-fit: contain;
    margin: 6px 0 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.06));
    transition: transform 320ms ease;
    flex: none;
}
body.page-template-page-home-v2 .hv2-awards__item:hover .hv2-awards__img {
    transform: scale(1.04);
}
body.page-template-page-home-v2 .hv2-awards__label {
    font-family: var(--hv2-display);
    font-weight: 600;
    font-size: 13.5px;
    line-height: 1.25;
    color: var(--hv2-ink);
    letter-spacing: -0.005em;
    margin-top: auto;
    padding: 0 4px;
}
body.page-template-page-home-v2 .hv2-awards__sub {
    font-family: var(--hv2-sans);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hv2-teal);
    font-weight: 600;
}

body.page-template-page-home-v2 .hv2-awards__caption {
    text-align: center;
    max-width: 760px;
    margin: 48px auto 0;
    color: var(--hv2-muted);
    font-size: 14px;
    line-height: 1.75;
    font-family: var(--hv2-sans);
}
body.page-template-page-home-v2 .hv2-awards__caption em {
    font-family: var(--hv2-display);
    font-style: italic;
    font-weight: 500;
    color: var(--hv2-ink);
    font-size: 17px;
    margin-right: 4px;
}
body.page-template-page-home-v2 .hv2-awards__caption strong {
    color: var(--hv2-ink);
    font-weight: 600;
}

@media (max-width: 1024px) {
    body.page-template-page-home-v2 .hv2-awards__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 540px) {
    body.page-template-page-home-v2 .hv2-awards__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    body.page-template-page-home-v2 .hv2-awards__item { padding: 16px 12px 14px; border-radius: 12px; }
    body.page-template-page-home-v2 .hv2-awards__item::before { top: 8px; left: 8px; right: 8px; bottom: 8px; }
    body.page-template-page-home-v2 .hv2-awards__label { font-size: 12px; }
}
