/* ==========================================================================
   NyxGen Medical — Main Stylesheet
   Design: Physique26-inspired premium medical aesthetic
   Colors: Navy #0A1A2F / Blue #1E90FF / Silver #C0C7CF
   ========================================================================== */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */
:root {
    --nexgen-primary: #0A1A2F;
    --nexgen-primary-hover: #061220;
    --nexgen-primary-light: #e8ecf1;
    --nexgen-primary-rgb: 10, 26, 47;
    --nexgen-secondary: #142336;
    --nexgen-accent: #1E90FF;
    --nexgen-accent-hover: #1a7de0;
    --nexgen-accent-rgb: 30, 144, 255;
    --nexgen-silver: #C0C7CF;
    --nexgen-silver-light: #e8eaed;
    --nexgen-success: #10b981;
    --nexgen-warning: #f59e0b;
    --nexgen-danger: #ef4444;
    --nexgen-bg: #ffffff;
    --nexgen-bg-alt: #f4f5f7;
    --nexgen-bg-dark: #0A1A2F;
    --nexgen-bg-gradient: linear-gradient(135deg, #e8ecf1 0%, #ffffff 100%);
    --nexgen-text: #0A1A2F;
    --nexgen-text-light: #6b7a8d;
    --nexgen-text-white: #ffffff;
    --nexgen-text-muted: rgba(255, 255, 255, 0.7);
    --nexgen-border: #d8dde3;
    --nexgen-card-bg: #ffffff;
    --nexgen-radius: 16px;
    --nexgen-radius-sm: 10px;
    --nexgen-radius-lg: 20px;
    --nexgen-radius-pill: 100px;
    --nexgen-shadow: 0 2.8px 2.2px rgba(0,0,0,0.02),
                     0 6.7px 5.3px rgba(0,0,0,0.028),
                     0 12.5px 10px rgba(0,0,0,0.035),
                     0 22.3px 17.9px rgba(0,0,0,0.042),
                     0 41.8px 33.4px rgba(0,0,0,0.05),
                     0 100px 80px rgba(0,0,0,0.07);
    --nexgen-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --nexgen-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --nexgen-shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --nexgen-shadow-glow: 0 0 30px rgba(30, 144, 255, 0.2);
    --nexgen-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nexgen-font-display: 'essonnes-display', 'DM Serif Display', Georgia, 'Times New Roman', serif;
    --nexgen-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --nexgen-transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. Font & Global Reset
   ========================================================================== */
[class*="nexgen-"],
[class*="nexgen-"] *,
[class*="nxg-"],
[class*="nxg-"] * {
    font-family: var(--nexgen-font) !important;
    box-sizing: border-box;
}

[class*="nexgen-"] img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   3. Theme Isolation — Kill Hello Elementor / Elementor overrides
   ========================================================================== */
.elementor-widget [class*="nexgen-"],
.elementor-widget [class*="nxg-"] {
    --e-global-color-primary: #0A1A2F !important;
    --e-global-color-secondary: #142336 !important;
    --e-global-color-accent: #1E90FF !important;
    --e-global-color-text: #0A1A2F !important;
}

/* Kill Elementor pink/accent on ALL nexgen interactive elements */
[class*="nexgen-"] button,
[class*="nexgen-"] button:hover,
[class*="nexgen-"] button:focus,
[class*="nexgen-"] button:active,
.elementor-widget [class*="nexgen-"] button {
    background-color: inherit;
    color: inherit;
}

/* Light-section text color — only for sections with light backgrounds */
.nexgen-services,
.nexgen-meds,
.nexgen-pricing,
.nexgen-plans,
.nexgen-hiw,
.nexgen-about,
.nexgen-conditions,
.nexgen-contact,
.nexgen-faq,
.nexgen-fasttrack,
.nexgen-testimonials,
.nexgen-team {
    color: var(--nexgen-text);
}

/* Dark-section text color — hero, CTA, stats, footer */
.nexgen-hero,
.nexgen-cta,
.nexgen-stats,
.nexgen-footer {
    color: var(--nexgen-text-white);
}

[class*="nexgen-"] a {
    color: inherit;
    text-decoration: none;
    outline: none !important;
    box-shadow: none !important;
}

[class*="nexgen-"] a:hover {
    color: var(--nexgen-primary);
}

/* Keep hover colors appropriate in dark sections */
.nexgen-hero a:hover,
.nexgen-cta a:hover,
.nexgen-stats a:hover,
.nexgen-footer a:hover {
    color: var(--nexgen-accent);
}

body [class*="nexgen-"] button {
    font-family: var(--nexgen-font) !important;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   4. Base Buttons
   ========================================================================== */
.nexgen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--nexgen-radius-pill);
    font-family: var(--nexgen-font) !important;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none !important;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--nexgen-transition);
    white-space: nowrap;
}

.nexgen-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nexgen-btn--primary {
    background: var(--nexgen-primary) !important;
    color: var(--nexgen-text-white) !important;
    border-color: var(--nexgen-primary) !important;
}

.nexgen-btn--primary:hover {
    background: var(--nexgen-primary-hover) !important;
    border-color: var(--nexgen-primary-hover) !important;
    color: var(--nexgen-text-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--nexgen-shadow-md) !important;
}

.nexgen-btn--accent {
    background: var(--nexgen-accent) !important;
    color: var(--nexgen-bg-dark) !important;
    border-color: var(--nexgen-accent) !important;
}

.nexgen-btn--accent:hover {
    background: var(--nexgen-accent-hover) !important;
    border-color: var(--nexgen-accent-hover) !important;
    color: var(--nexgen-bg-dark) !important;
    transform: translateY(-2px);
}

.nexgen-btn--outline {
    background: transparent !important;
    color: var(--nexgen-primary) !important;
    border-color: var(--nexgen-primary) !important;
}

.nexgen-btn--outline:hover {
    background: var(--nexgen-primary) !important;
    color: var(--nexgen-text-white) !important;
    transform: translateY(-2px);
}

.nexgen-btn--outline-light {
    background: transparent !important;
    color: var(--nexgen-text-white) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.nexgen-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    color: var(--nexgen-text-white) !important;
    transform: translateY(-2px);
}

.nexgen-btn--sm {
    padding: 10px 24px;
    font-size: 14px;
}

.nexgen-btn--lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ==========================================================================
   5. Scroll Animations
   ========================================================================== */
.nexgen-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-animate.nexgen-visible {
    opacity: 1;
    transform: translateY(0);
}

.nexgen-animate-delay-1 { transition-delay: 0.1s; }
.nexgen-animate-delay-2 { transition-delay: 0.25s; }
.nexgen-animate-delay-3 { transition-delay: 0.4s; }
.nexgen-animate-delay-4 { transition-delay: 0.55s; }

/* ==========================================================================
   6. Section Label (Overline)
   ========================================================================== */
.nexgen-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nexgen-accent) !important;
    margin-bottom: 16px;
}

.nexgen-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.nexgen-section-header h2 {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--nexgen-text) !important;
    line-height: 1.2;
    margin: 0 0 16px;
}

.nexgen-section-header p {
    font-size: 17px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0;
}

/* Dark section variants */
.nexgen-section--dark .nexgen-section-header h2 {
    color: var(--nexgen-text-white) !important;
}

.nexgen-section--dark .nexgen-section-header p {
    color: var(--nexgen-text-muted) !important;
}

/* ==========================================================================
   7. Header Widget — Physique26 Two-Row Layout
   ========================================================================== */
.nexgen-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--nexgen-transition);
}

.nexgen-header.nexgen-header--scrolled {
    box-shadow: var(--nexgen-shadow-md);
}

/* --- Top Bar --- */
.nexgen-header__topbar {
    background: var(--nexgen-primary);
    color: var(--nexgen-silver);
    padding: 0 40px;
}

.nexgen-header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    height: 72px;
}

.nexgen-header__topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nexgen-header__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 6px;
}

.nexgen-header__social a {
    color: var(--nexgen-silver) !important;
    transition: var(--nexgen-transition);
    display: flex;
}

.nexgen-header__social a:hover {
    color: var(--nexgen-accent) !important;
}

.nexgen-header__location {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--nexgen-silver) !important;
}

.nexgen-header__divider {
    color: rgba(192, 199, 207, 0.4) !important;
    font-weight: 300;
}

.nexgen-header__phone {
    color: var(--nexgen-silver) !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--nexgen-transition);
}

.nexgen-header__phone:hover {
    color: var(--nexgen-text-white) !important;
}

/* Logo — Center of top bar */
.nexgen-header__topbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nexgen-header__logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none !important;
}

.nexgen-header__logo-img {
    width: auto;
}

.nexgen-header__logo-text {
    font-family: var(--nexgen-font-display) !important;
    font-weight: 700;
    color: var(--nexgen-text-white) !important;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nexgen-header__logo-sub {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--nexgen-silver) !important;
}

/* CTAs — Right side */
.nexgen-header__topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.nexgen-header__cta-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--nexgen-text-white) !important;
    transition: var(--nexgen-transition);
}

.nexgen-header__cta-link:hover {
    color: var(--nexgen-accent) !important;
}

/* Hamburger — hidden on desktop */
.nexgen-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.nexgen-header__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--nexgen-text-white);
    transition: var(--nexgen-transition);
    border-radius: 2px;
}

/* --- Navigation Bar (second row) --- */
.nexgen-header__navbar {
    background: var(--nexgen-silver);
    padding: 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nexgen-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-header__link {
    display: block;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    letter-spacing: 0.3px;
    transition: var(--nexgen-transition);
    position: relative;
    white-space: nowrap;
}

.nexgen-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--nexgen-accent);
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
}

.nexgen-header__link:hover {
    color: var(--nexgen-accent) !important;
}

.nexgen-header__link:hover::after,
.nexgen-header__link--active::after {
    width: 60%;
}

/* ==========================================================================
   7b. Mobile Off-Canvas — Modern Slide-Over
   ========================================================================== */
.nexgen-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    height: 100dvh;
    background: var(--nexgen-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.nexgen-offcanvas.active {
    right: 0;
}

.nexgen-offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nexgen-offcanvas__logo {
    color: var(--nexgen-text-white) !important;
}

.nexgen-offcanvas__logo span {
    font-family: var(--nexgen-font-display) !important;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nexgen-offcanvas__logo img {
    height: 32px;
    width: auto;
}

.nexgen-offcanvas__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 10px;
    color: var(--nexgen-text-white);
    cursor: pointer;
    transition: var(--nexgen-transition);
}

.nexgen-offcanvas__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nexgen-offcanvas__nav {
    padding: 20px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nexgen-offcanvas__link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: var(--nexgen-radius-sm);
    transition: var(--nexgen-transition);
    letter-spacing: 0.2px;
}

.nexgen-offcanvas__link:hover {
    background: rgba(30, 144, 255, 0.1);
    color: var(--nexgen-accent) !important;
}

.nexgen-offcanvas__ctas {
    padding: 0 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nexgen-offcanvas__ctas .nexgen-btn {
    justify-content: center;
    width: 100%;
}

.nexgen-offcanvas__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    font-weight: 500;
    color: var(--nexgen-silver) !important;
    transition: var(--nexgen-transition);
}

.nexgen-offcanvas__phone:hover {
    color: var(--nexgen-text-white) !important;
}

.nexgen-offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--nexgen-transition);
}

.nexgen-offcanvas__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   8. Hero Widget — Physique26 Style (Ken Burns + Centered)
   ========================================================================== */
.nexgen-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--nexgen-bg-dark);
}

/* --- Background Slideshow with Ken Burns Zoom --- */
.nexgen-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.nexgen-hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease;
}

/* When active: fade in + start Ken Burns zoom */
.nexgen-hero__bg-slide.active {
    opacity: 1;
    animation: nexgen-kenburns 8s ease forwards;
}

@keyframes nexgen-kenburns {
    0%   { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* --- Overlay (lighter like Physique26 — let image show through) --- */
.nexgen-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 26, 47, 0.4);
    z-index: 2;
}

/* --- Inner Container --- */
.nexgen-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}

/* --- Centered Layout (default — Physique26 style) --- */
.nexgen-hero--center .nexgen-hero__content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0;
}

.nexgen-hero--center .nexgen-hero__actions {
    justify-content: center;
}

.nexgen-hero--center .nexgen-hero__trust {
    justify-content: center;
}

.nexgen-hero--center .nexgen-hero__desc {
    margin-left: auto;
    margin-right: auto;
}

/* --- Left Layout --- */
.nexgen-hero--left .nexgen-hero__content {
    max-width: 720px;
}

/* --- Label Badge --- */
.nexgen-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--nexgen-accent) !important;
    margin-bottom: 20px;
    padding: 7px 18px;
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: var(--nexgen-radius-pill);
}

/* --- Title (large display like Physique26 — fits viewport) --- */
.nexgen-hero__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(32px, 5.5vw, 72px);
    font-weight: 400;
    color: var(--nexgen-text-white) !important;
    line-height: 1.08;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.nexgen-hero__highlight {
    color: var(--nexgen-accent) !important;
}

/* --- Tagline (uppercase subtitle like "PHYSIQUE26 | SHIPS TO MOST STATES") --- */
.nexgen-hero__tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--nexgen-silver) !important;
    margin: 0 0 24px;
}

/* --- Description (optional paragraph) --- */
.nexgen-hero__desc {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--nexgen-text-muted) !important;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 600px;
}

/* --- Buttons --- */
.nexgen-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* --- Trust Bar --- */
.nexgen-hero__trust-wrap {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nexgen-hero--center .nexgen-hero__trust-wrap {
    text-align: center;
}

.nexgen-hero__trust-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nexgen-accent) !important;
    margin: 0 0 20px;
}

.nexgen-hero__trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px 28px;
    flex-wrap: wrap;
}

.nexgen-hero--center .nexgen-hero__trust {
    justify-content: center;
}

.nexgen-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nexgen-text-muted) !important;
}

.nexgen-hero__trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--nexgen-accent);
    flex-shrink: 0;
}

/* --- Scroll Indicator --- */
.nexgen-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: nexgen-bounce 2s infinite;
}

.nexgen-hero__scroll svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes nexgen-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ==========================================================================
   9. Services Grid Widget
   ========================================================================== */
.nexgen-services {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-services__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.nexgen-services__card {
    position: relative;
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    overflow: hidden;
    border: 1px solid var(--nexgen-border);
}

.nexgen-services__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
    border-color: rgba(0, 212, 170, 0.2);
}

.nexgen-services__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-primary-light);
    border-radius: 14px;
    margin-bottom: 24px;
    transition: var(--nexgen-transition);
}

.nexgen-services__card:hover .nexgen-services__card-icon {
    background: var(--nexgen-primary);
}

.nexgen-services__card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--nexgen-primary);
    transition: var(--nexgen-transition);
}

.nexgen-services__card:hover .nexgen-services__card-icon svg {
    color: var(--nexgen-text-white);
}

.nexgen-services__card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--nexgen-radius-pill);
    background: var(--nexgen-accent);
    color: var(--nexgen-bg-dark) !important;
}

.nexgen-services__card-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 12px;
    line-height: 1.3;
}

.nexgen-services__card-desc {
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0 0 24px;
}

.nexgen-services__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--nexgen-primary) !important;
    transition: var(--nexgen-transition);
}

.nexgen-services__card-link:hover {
    gap: 10px;
    color: var(--nexgen-accent) !important;
}

.nexgen-services__card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--nexgen-transition);
}

/* ==========================================================================
   10. Medication Cards Widget — Modern Dark Style
   ========================================================================== */
.nexgen-meds {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-meds__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-meds__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nexgen-meds__card {
    position: relative;
    background: var(--nexgen-primary) !important;
    border-radius: var(--nexgen-radius-lg);
    overflow: hidden;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    border: none;
    display: flex;
    flex-direction: column;
}

.nexgen-meds__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nexgen-accent);
    border-radius: var(--nexgen-radius-lg) var(--nexgen-radius-lg) 0 0;
    z-index: 1;
}

.nexgen-meds__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 26, 47, 0.3);
}

.nexgen-meds__card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: var(--nexgen-radius-pill);
    background: rgba(30, 144, 255, 0.15);
    color: var(--nexgen-accent) !important;
    border: 1px solid rgba(30, 144, 255, 0.3);
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Larger badge variant for "Coming Soon" */
.nexgen-meds__card-badge--lg {
    font-size: 13px;
    letter-spacing: 2px;
    padding: 8px 20px;
    background: var(--nexgen-accent);
    color: var(--nexgen-text-white) !important;
    border-color: var(--nexgen-accent);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
}

/* More Peptides Available Note */
.nexgen-meds__more-note {
    margin-top: 48px;
    padding: 40px;
    text-align: center;
    background: var(--nexgen-bg-alt);
    border: 1px dashed var(--nexgen-border);
    border-radius: var(--nexgen-radius-lg);
}

.nexgen-meds__more-note h3 {
    font-family: var(--nexgen-font-display) !important;
    font-size: 26px;
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    margin: 0 0 12px;
}

.nexgen-meds__more-note p {
    font-size: 16px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Pre-Footer "Get Started Today" CTA */
.nexgen-prefooter {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--nexgen-primary) 0%, var(--nexgen-secondary) 100%);
    overflow: hidden;
}

.nexgen-prefooter::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.nexgen-prefooter__inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.nexgen-prefooter__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--nexgen-text-white) !important;
    line-height: 1.15;
    margin: 0 0 16px;
}

.nexgen-prefooter__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nexgen-prefooter__cta {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 20px 44px;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.35);
}

.nexgen-prefooter__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(30, 144, 255, 0.5);
}

/* Medical Disclaimer - fine print at bottom of pages */
.nexgen-disclaimer {
    padding: 32px 40px;
    background: var(--nexgen-bg-alt);
    border-top: 1px solid var(--nexgen-border);
}

.nexgen-disclaimer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-disclaimer p {
    font-size: 11px;
    line-height: 1.6;
    color: var(--nexgen-text-light) !important;
    margin: 0 0 10px;
}

.nexgen-disclaimer p:last-child {
    margin-bottom: 0;
}

.nexgen-meds__card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--nexgen-secondary);
}

.nexgen-meds__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nexgen-transition-slow);
    opacity: 0.85;
}

.nexgen-meds__card:hover .nexgen-meds__card-media img {
    transform: scale(1.08);
    opacity: 1;
}

.nexgen-meds__card-body {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nexgen-meds__card-name {
    font-family: var(--nexgen-font-display) !important;
    font-size: 24px;
    font-weight: 500;
    color: var(--nexgen-text-white) !important;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
}

.nexgen-meds__card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--nexgen-accent) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.nexgen-meds__card-desc {
    font-size: 14px;
    color: var(--nexgen-text-muted) !important;
    line-height: 1.7;
    margin: 0 0 24px;
}

.nexgen-meds__card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--nexgen-radius-sm);
}

.nexgen-meds__card-detail-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--nexgen-silver) !important;
    margin-bottom: 4px;
}

.nexgen-meds__card-detail-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--nexgen-text-white) !important;
}

.nexgen-meds__card-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--nexgen-accent) !important;
    margin-bottom: 20px;
    margin-top: auto;
}

.nexgen-meds__card-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--nexgen-text-muted) !important;
}

.nexgen-meds__card-cta.nexgen-btn {
    width: 100%;
    margin-top: auto;
    background: var(--nexgen-accent) !important;
    color: var(--nexgen-primary) !important;
    border-color: var(--nexgen-accent) !important;
    font-weight: 600;
}

.nexgen-meds__card-cta.nexgen-btn:hover {
    background: var(--nexgen-accent-hover) !important;
    transform: none;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3) !important;
}

/* ==========================================================================
   11. Pricing Table Widget
   ========================================================================== */
.nexgen-pricing {
    padding: 100px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-pricing__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.nexgen-pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.nexgen-pricing__card {
    position: relative;
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-lg);
    padding: 48px 40px;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    border: 2px solid var(--nexgen-border);
    text-align: center;
}

.nexgen-pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
}

.nexgen-pricing__card--highlighted {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-glow);
}

.nexgen-pricing__card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: var(--nexgen-radius-pill);
    background: var(--nexgen-accent);
    color: var(--nexgen-bg-dark) !important;
    white-space: nowrap;
}

.nexgen-pricing__card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-primary-light);
    border-radius: 16px;
    margin: 0 auto 24px;
}

.nexgen-pricing__card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--nexgen-primary);
}

.nexgen-pricing__card-name {
    font-family: var(--nexgen-font-display) !important;
    font-size: 26px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 8px;
}

.nexgen-pricing__card-target {
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-text-light) !important;
    display: block;
    margin-bottom: 24px;
}

.nexgen-pricing__card-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--nexgen-primary) !important;
    line-height: 1;
}

.nexgen-pricing__card-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--nexgen-text-light) !important;
}

.nexgen-pricing__card-price {
    margin-bottom: 32px;
}

.nexgen-pricing__card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.nexgen-pricing__card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--nexgen-text) !important;
    border-bottom: 1px solid var(--nexgen-border);
}

.nexgen-pricing__card-features li:last-child {
    border-bottom: none;
}

.nexgen-pricing__check {
    width: 20px;
    height: 20px;
    color: var(--nexgen-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.nexgen-pricing__card-cta {
    width: 100%;
}

/* ==========================================================================
   12. Telehealth Plans Widget
   ========================================================================== */
.nexgen-plans {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-plans__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.nexgen-plans__tier {
    position: relative;
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-lg);
    padding: 40px 32px;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    border: 2px solid var(--nexgen-border);
}

.nexgen-plans__tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
}

.nexgen-plans__tier--highlighted {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-glow);
}

.nexgen-plans__tier-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: var(--nexgen-radius-pill);
    background: var(--nexgen-accent);
    color: var(--nexgen-bg-dark) !important;
    white-space: nowrap;
}

.nexgen-plans__tier-name {
    font-family: var(--nexgen-font-display) !important;
    font-size: 24px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 16px;
}

.nexgen-plans__tier-price {
    margin-bottom: 20px;
}

.nexgen-plans__tier-amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--nexgen-primary) !important;
    line-height: 1;
}

.nexgen-plans__tier-period {
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
}

.nexgen-plans__tier-desc {
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--nexgen-border);
}

.nexgen-plans__tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.nexgen-plans__tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--nexgen-text) !important;
}

.nexgen-plans__tier-features li svg {
    width: 18px;
    height: 18px;
    color: var(--nexgen-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.nexgen-plans__tier-cta {
    width: 100%;
}

.nexgen-plans__alacarte {
    background: var(--nexgen-bg-alt);
    border-radius: var(--nexgen-radius-lg);
    padding: 40px;
    margin-bottom: 32px;
}

.nexgen-plans__alacarte-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 24px;
}

.nexgen-plans__alacarte-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nexgen-plans__alacarte-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-sm);
    border: 1px solid var(--nexgen-border);
}

.nexgen-plans__alacarte-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-text) !important;
}

.nexgen-plans__alacarte-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--nexgen-primary) !important;
}

.nexgen-plans__family {
    background: var(--nexgen-primary-light);
    border-radius: var(--nexgen-radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nexgen-plans__family svg {
    width: 32px;
    height: 32px;
    color: var(--nexgen-primary);
    flex-shrink: 0;
}

.nexgen-plans__family p {
    font-size: 15px;
    color: var(--nexgen-text) !important;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   13. How It Works Widget
   ========================================================================== */
.nexgen-hiw {
    padding: 100px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-hiw__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-hiw__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.nexgen-hiw__steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--nexgen-accent), var(--nexgen-primary));
    opacity: 0.3;
}

.nexgen-hiw__step {
    text-align: center;
    position: relative;
}

.nexgen-hiw__step-num {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-card-bg);
    border: 2px solid var(--nexgen-border);
    border-radius: 50%;
    margin: 0 auto 24px;
    transition: var(--nexgen-transition);
    position: relative;
    z-index: 1;
}

.nexgen-hiw__step:hover .nexgen-hiw__step-num {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-glow);
}

.nexgen-hiw__step-num svg {
    width: 36px;
    height: 36px;
    color: var(--nexgen-primary);
}

.nexgen-hiw__step-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 20px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 10px;
}

.nexgen-hiw__step-desc {
    font-size: 14px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0;
}

.nexgen-hiw__cta {
    text-align: center;
    margin-top: 56px;
}

/* ==========================================================================
   14. CTA Banner Widget
   ========================================================================== */
.nexgen-cta {
    position: relative;
    padding: 100px 40px;
    background: var(--nexgen-bg-dark);
    overflow: hidden;
}

.nexgen-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.nexgen-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.9) 0%, rgba(10, 36, 99, 0.85) 100%);
}

.nexgen-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.nexgen-cta--left .nexgen-cta__inner {
    max-width: 1400px;
    text-align: left;
}

.nexgen-cta__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--nexgen-text-white) !important;
    line-height: 1.2;
    margin: 0 0 20px;
}

.nexgen-cta__subtitle {
    font-size: 17px;
    color: var(--nexgen-text-muted) !important;
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 600px;
}

.nexgen-cta--center .nexgen-cta__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.nexgen-cta__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nexgen-cta--center .nexgen-cta__actions {
    justify-content: center;
}

.nexgen-cta__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nexgen-text-white) !important;
    margin-top: 24px;
}

.nexgen-cta--center .nexgen-cta__phone {
    justify-content: center;
}

.nexgen-cta__phone svg {
    width: 18px;
    height: 18px;
    color: var(--nexgen-accent);
}

/* ==========================================================================
   15. About Section Widget
   ========================================================================== */
.nexgen-about {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-about__inner--right {
    direction: rtl;
}

.nexgen-about__inner--right > * {
    direction: ltr;
}

.nexgen-about__media {
    position: relative;
    border-radius: var(--nexgen-radius-lg);
    overflow: hidden;
    box-shadow: var(--nexgen-shadow);
}

.nexgen-about__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.nexgen-about__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nexgen-accent) !important;
    margin-bottom: 16px;
}

.nexgen-about__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--nexgen-text) !important;
    line-height: 1.2;
    margin: 0 0 20px;
}

.nexgen-about__desc {
    font-size: 16px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0 0 32px;
}

.nexgen-about__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.nexgen-about__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nexgen-text) !important;
}

.nexgen-about__features li svg {
    width: 20px;
    height: 20px;
    color: var(--nexgen-accent);
    flex-shrink: 0;
}

.nexgen-about__stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--nexgen-border);
}

.nexgen-about__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--nexgen-primary) !important;
    display: block;
    line-height: 1.1;
}

.nexgen-about__stat-label {
    font-size: 13px;
    color: var(--nexgen-text-light) !important;
    margin-top: 4px;
    display: block;
}

/* ==========================================================================
   16. Conditions Grid Widget
   ========================================================================== */
.nexgen-conditions {
    padding: 100px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-conditions__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.nexgen-conditions__group {
    margin-bottom: 48px;
}

.nexgen-conditions__group:last-child {
    margin-bottom: 0;
}

.nexgen-conditions__group-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nexgen-conditions__group-title svg {
    width: 24px;
    height: 24px;
}

.nexgen-conditions__group--treat .nexgen-conditions__group-title svg {
    color: var(--nexgen-accent);
}

.nexgen-conditions__group--redirect .nexgen-conditions__group-title svg {
    color: var(--nexgen-danger);
}

.nexgen-conditions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.nexgen-conditions__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-sm);
    border: 1px solid var(--nexgen-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-text) !important;
    transition: var(--nexgen-transition);
}

.nexgen-conditions__item:hover {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-sm);
}

.nexgen-conditions__item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.nexgen-conditions__item--treat svg {
    color: var(--nexgen-accent);
}

.nexgen-conditions__item--danger svg {
    color: var(--nexgen-danger);
}

/* ==========================================================================
   17. Contact Info Widget
   ========================================================================== */
.nexgen-contact {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-contact__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-contact__inner--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.nexgen-contact__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 12px;
}

.nexgen-contact__subtitle {
    font-size: 16px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0 0 40px;
}

.nexgen-contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.nexgen-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.nexgen-contact__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-primary-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.nexgen-contact__detail-icon svg {
    width: 22px;
    height: 22px;
    color: var(--nexgen-primary);
}

.nexgen-contact__detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin-bottom: 4px;
}

.nexgen-contact__detail span,
.nexgen-contact__detail a {
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.5;
}

.nexgen-contact__detail a:hover {
    color: var(--nexgen-primary) !important;
}

.nexgen-contact__links {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

/* Contact Form */
.nexgen-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nexgen-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nexgen-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nexgen-contact__field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nexgen-contact__field input,
.nexgen-contact__field textarea {
    padding: 14px 18px;
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius-sm);
    font-family: var(--nexgen-font) !important;
    font-size: 15px;
    color: var(--nexgen-text) !important;
    transition: var(--nexgen-transition);
    background: var(--nexgen-card-bg);
    width: 100%;
}

.nexgen-contact__field input:focus,
.nexgen-contact__field textarea:focus {
    outline: none;
    border-color: var(--nexgen-primary);
    box-shadow: 0 0 0 3px rgba(var(--nexgen-primary-rgb), 0.1) !important;
}

.nexgen-contact__field textarea {
    min-height: 140px;
    resize: vertical;
}

.nexgen-contact__form-submit {
    align-self: flex-start;
}

.nexgen-contact__form-msg {
    padding: 14px 20px;
    border-radius: var(--nexgen-radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.nexgen-contact__form-msg--success {
    display: block;
    background: #ecfdf5;
    color: #065f46 !important;
    border: 1px solid #a7f3d0;
}

.nexgen-contact__form-msg--error {
    display: block;
    background: #fef2f2;
    color: #991b1b !important;
    border: 1px solid #fecaca;
}

/* Map */
.nexgen-contact__map {
    margin-top: 56px;
    border-radius: var(--nexgen-radius-lg);
    overflow: hidden;
    box-shadow: var(--nexgen-shadow);
}

.nexgen-contact__map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Locations list */
.nexgen-contact__locations {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nexgen-contact__locations li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--nexgen-text-light) !important;
}

.nexgen-contact__locations li em {
    font-style: normal;
    font-weight: 600;
    color: var(--nexgen-primary) !important;
    margin-right: 6px;
}

/* Doxy.me Telehealth Section */
.nexgen-contact__doxyme {
    margin-top: 56px;
    padding: 48px;
    background: linear-gradient(135deg, var(--nexgen-primary) 0%, var(--nexgen-secondary) 100%);
    border-radius: var(--nexgen-radius-lg);
    text-align: center;
}

.nexgen-contact__doxyme-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 26px;
    font-weight: 600;
    color: var(--nexgen-text-white) !important;
    margin: 0 0 12px;
}

.nexgen-contact__doxyme-desc {
    font-size: 16px;
    color: var(--nexgen-text-muted) !important;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   18. FAQ Widget
   ========================================================================== */
.nexgen-faq {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}

.nexgen-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nexgen-faq__item {
    background: var(--nexgen-card-bg) !important;
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius);
    overflow: hidden;
    transition: var(--nexgen-transition);
}

.nexgen-faq__item.active {
    border-color: rgba(var(--nexgen-primary-rgb), 0.2);
    box-shadow: var(--nexgen-shadow-sm);
    background: var(--nexgen-card-bg) !important;
}

.nexgen-faq__question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    width: 100%;
    background: var(--nexgen-card-bg) !important;
    border: none;
    font-family: var(--nexgen-font) !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    text-align: left;
    cursor: pointer;
    word-break: break-word;
    overflow-wrap: break-word;
    transition: var(--nexgen-transition);
}

.nexgen-faq__question:hover {
    color: var(--nexgen-primary) !important;
    background: var(--nexgen-card-bg) !important;
}

.nexgen-faq__item.active .nexgen-faq__question {
    background: var(--nexgen-card-bg) !important;
    color: var(--nexgen-primary) !important;
}

.nexgen-faq__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--nexgen-text-light);
    margin-top: 2px;
}

.nexgen-faq__item.active .nexgen-faq__icon {
    transform: rotate(180deg);
    color: var(--nexgen-primary);
}

.nexgen-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-faq__answer-inner {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
}

/* ==========================================================================
   19. Fast Track Widget
   ========================================================================== */
.nexgen-fasttrack {
    padding: 80px 40px;
    background: var(--nexgen-bg-gradient);
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius-lg);
    margin: 0 40px;
}

.nexgen-fasttrack__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.nexgen-fasttrack__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 16px;
}

.nexgen-fasttrack__desc {
    font-size: 16px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0;
}

.nexgen-fasttrack__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nexgen-fasttrack__action {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--nexgen-card-bg);
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius);
    transition: var(--nexgen-transition);
    text-decoration: none !important;
}

.nexgen-fasttrack__action:hover {
    border-color: var(--nexgen-primary);
    box-shadow: var(--nexgen-shadow-md);
    transform: translateY(-2px);
}

.nexgen-fasttrack__action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-primary-light);
    border-radius: 12px;
    flex-shrink: 0;
}

.nexgen-fasttrack__action-icon svg {
    width: 24px;
    height: 24px;
    color: var(--nexgen-primary);
}

.nexgen-fasttrack__action--drwell .nexgen-fasttrack__action-icon {
    background: var(--nexgen-accent);
}

.nexgen-fasttrack__action--drwell .nexgen-fasttrack__action-icon svg {
    color: var(--nexgen-bg-dark);
}

.nexgen-fasttrack__action-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin-bottom: 2px;
}

.nexgen-fasttrack__action-text span {
    font-size: 13px;
    color: var(--nexgen-text-light) !important;
}

/* ==========================================================================
   20. Testimonials Widget
   ========================================================================== */
.nexgen-testimonials {
    padding: 100px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-testimonials__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-testimonials__slider {
    position: relative;
    overflow: hidden;
}

.nexgen-testimonials__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-testimonials__slide {
    min-width: 100%;
    padding: 0 16px;
}

.nexgen-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.nexgen-testimonials__card {
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-lg);
    padding: 36px;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    border: 1px solid var(--nexgen-border);
}

.nexgen-testimonials__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
}

.nexgen-testimonials__card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.nexgen-testimonials__card-stars svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.nexgen-testimonials__card-quote {
    font-size: 16px;
    color: var(--nexgen-text) !important;
    line-height: 1.7;
    margin: 0 0 24px;
    font-style: normal;
}

.nexgen-testimonials__card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nexgen-testimonials__card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.nexgen-testimonials__card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    display: block;
}

.nexgen-testimonials__card-role {
    font-size: 13px;
    color: var(--nexgen-text-light) !important;
}

.nexgen-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.nexgen-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nexgen-border);
    border: none;
    cursor: pointer;
    transition: var(--nexgen-transition);
    padding: 0;
}

.nexgen-testimonials__dot.active {
    background: var(--nexgen-primary);
    width: 28px;
    border-radius: var(--nexgen-radius-pill);
}

/* ==========================================================================
   21. Stats Counter Widget
   ========================================================================== */
.nexgen-stats {
    padding: 80px 40px;
    background: var(--nexgen-bg-dark);
}

.nexgen-stats__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.nexgen-stats__item {
    text-align: center;
    padding: 32px 20px;
}

.nexgen-stats__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.nexgen-stats__item-icon svg {
    width: 36px;
    height: 36px;
    color: var(--nexgen-accent);
}

.nexgen-stats__item-value {
    font-size: 44px;
    font-weight: 700;
    color: var(--nexgen-text-white) !important;
    line-height: 1.1;
    margin-bottom: 8px;
}

.nexgen-stats__prefix,
.nexgen-stats__suffix {
    color: var(--nexgen-accent) !important;
}

.nexgen-stats__item-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   22. Team Widget
   ========================================================================== */
.nexgen-team {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-team__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.nexgen-team__card {
    background: var(--nexgen-card-bg);
    border-radius: var(--nexgen-radius-lg);
    overflow: hidden;
    box-shadow: var(--nexgen-shadow);
    transition: var(--nexgen-transition);
    border: 1px solid var(--nexgen-border);
}

.nexgen-team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
}

.nexgen-team__card-photo {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.nexgen-team__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--nexgen-transition-slow);
}

.nexgen-team__card:hover .nexgen-team__card-photo img {
    transform: scale(1.05);
}

.nexgen-team__card-body {
    padding: 28px 32px;
}

.nexgen-team__card-name {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 600;
    color: var(--nexgen-text) !important;
    margin: 0 0 4px;
}

.nexgen-team__card-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--nexgen-accent) !important;
    display: block;
    margin-bottom: 12px;
}

.nexgen-team__card-bio {
    font-size: 14px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.7;
    margin: 0 0 8px;
}

.nexgen-team__card-creds {
    font-size: 12px;
    font-weight: 600;
    color: var(--nexgen-text-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   23. Footer Widget
   ========================================================================== */
.nexgen-footer {
    background: var(--nexgen-bg-dark);
    padding: 80px 40px 0;
    color: var(--nexgen-text-muted) !important;
}

.nexgen-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nexgen-footer__logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.nexgen-footer__logo-img {
    display: block;
}

.nexgen-footer__logo-text {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 700;
    color: var(--nexgen-text-white) !important;
}

.nexgen-footer__about-text {
    font-size: 14px;
    color: var(--nexgen-text-muted) !important;
    line-height: 1.7;
    margin: 0 0 24px;
}

.nexgen-footer__social {
    display: flex;
    gap: 12px;
}

.nexgen-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--nexgen-text-muted) !important;
    transition: var(--nexgen-transition);
}

.nexgen-footer__social a:hover {
    background: var(--nexgen-accent);
    color: var(--nexgen-bg-dark) !important;
}

.nexgen-footer__social a svg {
    width: 18px;
    height: 18px;
}

.nexgen-footer__heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--nexgen-text-white) !important;
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nexgen-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nexgen-footer__links li {
    margin-bottom: 12px;
}

.nexgen-footer__links a {
    font-size: 14px;
    color: var(--nexgen-text-muted) !important;
    transition: var(--nexgen-transition);
}

.nexgen-footer__links a:hover {
    color: var(--nexgen-accent) !important;
    padding-left: 4px;
}

.nexgen-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--nexgen-text-muted) !important;
}

.nexgen-footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--nexgen-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.nexgen-footer__contact-item a {
    color: var(--nexgen-text-muted) !important;
}

.nexgen-footer__contact-item a:hover {
    color: var(--nexgen-accent) !important;
}

.nexgen-footer__bottom {
    padding: 24px 0;
}

.nexgen-footer__bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nexgen-footer__copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4) !important;
}

.nexgen-footer__compliance {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ==========================================================================
   23a. Get Started Hero Widget
   ========================================================================== */
.nexgen-getstarted {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    background: var(--nexgen-bg-gradient);
    color: var(--nexgen-text);
}

.nexgen-getstarted--has-bg {
    color: var(--nexgen-text-white);
}

.nexgen-getstarted__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.nexgen-getstarted__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 26, 47, 0.5);
    z-index: 1;
}

.nexgen-getstarted__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.nexgen-getstarted__content {
    max-width: 900px;
    margin: 0 auto;
}

.nexgen-getstarted__label {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 28px;
    border-radius: var(--nexgen-radius-pill);
    background-color: rgba(30, 144, 255, 0.1);
    color: var(--nexgen-accent);
    font-family: var(--nexgen-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nexgen-getstarted--has-bg .nexgen-getstarted__label {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.nexgen-getstarted__heading {
    margin: 0 0 24px;
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--nexgen-primary);
}

.nexgen-getstarted--has-bg .nexgen-getstarted__heading {
    color: #ffffff;
}

.nexgen-getstarted__subtitle {
    margin: 0 auto 48px;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--nexgen-text-light);
}

.nexgen-getstarted--has-bg .nexgen-getstarted__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.nexgen-getstarted__cta-wrap {
    margin: 0 auto;
}

.nexgen-getstarted__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 56px;
    border: 2px solid var(--nexgen-accent);
    border-radius: var(--nexgen-radius-pill);
    background-color: var(--nexgen-accent);
    color: var(--nexgen-primary) !important;
    font-family: var(--nexgen-font) !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 1.2;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.35), 0 0 50px rgba(30, 144, 255, 0.2);
    transition: var(--nexgen-transition);
    cursor: pointer;
}

.nexgen-getstarted__cta svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-getstarted__cta:hover {
    background-color: var(--nexgen-accent-hover);
    border-color: var(--nexgen-accent-hover);
    color: var(--nexgen-primary) !important;
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(30, 144, 255, 0.5), 0 0 80px rgba(30, 144, 255, 0.3);
}

.nexgen-getstarted__cta:hover svg {
    transform: translateX(6px);
}

.nexgen-getstarted__cta-sub {
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--nexgen-text-light);
    text-align: center;
    letter-spacing: 0.3px;
}

.nexgen-getstarted--has-bg .nexgen-getstarted__cta-sub {
    color: rgba(255, 255, 255, 0.7);
}

.nexgen-getstarted__secondary {
    margin: 40px 0 0;
    font-size: 15px;
    color: var(--nexgen-text-light);
}

.nexgen-getstarted--has-bg .nexgen-getstarted__secondary {
    color: rgba(255, 255, 255, 0.75);
}

.nexgen-getstarted__secondary span {
    margin-right: 6px;
}

.nexgen-getstarted__secondary a {
    color: var(--nexgen-accent) !important;
    font-weight: 600;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: var(--nexgen-transition);
}

.nexgen-getstarted__secondary a:hover {
    border-bottom-color: var(--nexgen-accent);
}

.nexgen-getstarted--has-bg .nexgen-getstarted__secondary a {
    color: #ffffff !important;
}

.nexgen-getstarted__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 80px auto 0;
    padding-top: 60px;
    border-top: 1px solid rgba(10, 26, 47, 0.08);
    text-align: left;
}

.nexgen-getstarted--has-bg .nexgen-getstarted__benefits {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.nexgen-getstarted__benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nexgen-getstarted__benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(30, 144, 255, 0.12);
    color: var(--nexgen-primary);
    font-size: 20px;
}

.nexgen-getstarted__benefit-icon svg,
.nexgen-getstarted__benefit-icon i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 1;
}

.nexgen-getstarted--has-bg .nexgen-getstarted__benefit-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.nexgen-getstarted__benefit-body {
    flex: 1;
    min-width: 0;
}

.nexgen-getstarted__benefit-title {
    margin: 0 0 6px;
    font-family: var(--nexgen-font) !important;
    font-size: 17px;
    font-weight: 600;
    color: var(--nexgen-primary);
    line-height: 1.3;
}

.nexgen-getstarted--has-bg .nexgen-getstarted__benefit-title {
    color: #ffffff;
}

.nexgen-getstarted__benefit-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--nexgen-text-light);
}

.nexgen-getstarted--has-bg .nexgen-getstarted__benefit-desc {
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   23b. Process Steps Widget (Vertical Timeline)
   ========================================================================== */
.nexgen-process {
    padding: 100px 40px;
    background-color: var(--nexgen-bg);
}

.nexgen-process__inner {
    max-width: 900px;
    margin: 0 auto;
}

.nexgen-process__timeline {
    position: relative;
    margin-top: 60px;
    padding-left: 0;
}

.nexgen-process__timeline::before {
    content: "";
    position: absolute;
    top: 36px;
    bottom: 36px;
    left: 35px;
    width: 2px;
    background-color: var(--nexgen-silver);
    border-radius: 2px;
    z-index: 0;
}

.nexgen-process__step {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 32px;
    margin-bottom: 40px;
    z-index: 1;
}

.nexgen-process__step:last-child {
    margin-bottom: 0;
}

.nexgen-process__step-marker {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 50%;
    background-color: var(--nexgen-primary);
    color: var(--nexgen-text-white);
    box-shadow: 0 8px 24px rgba(10, 26, 47, 0.25);
    z-index: 2;
    flex-shrink: 0;
}

.nexgen-process__step-num {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--nexgen-accent);
}

.nexgen-process__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    opacity: 0.85;
    color: #ffffff;
}

.nexgen-process__step-icon svg,
.nexgen-process__step-icon i {
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 1;
}

.nexgen-process__step-content {
    position: relative;
    padding: 40px;
    background-color: var(--nexgen-card-bg);
    border: 1px solid var(--nexgen-border);
    border-radius: 20px;
    box-shadow: var(--nexgen-shadow-lg);
    transition: var(--nexgen-transition);
}

.nexgen-process__step-content::before {
    content: "";
    position: absolute;
    top: 28px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: inherit;
    border-left: 1px solid var(--nexgen-border);
    border-bottom: 1px solid var(--nexgen-border);
    transform: rotate(45deg);
    z-index: -1;
}

.nexgen-process__step:hover .nexgen-process__step-content {
    transform: translateY(-3px);
    box-shadow: var(--nexgen-shadow);
    border-color: rgba(30, 144, 255, 0.3);
}

.nexgen-process__step-title {
    margin: 0 0 14px;
    font-family: var(--nexgen-font-display) !important;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--nexgen-primary);
}

.nexgen-process__step-desc {
    margin: 0;
    font-family: var(--nexgen-font) !important;
    font-size: 15px;
    line-height: 1.7;
    color: var(--nexgen-text-light);
    white-space: pre-line;
}

.nexgen-process__step-btn {
    margin-top: 24px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nexgen-process__step-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-process__step-btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   23c. Feature Block Widget (checklist + info box)
   ========================================================================== */
.nexgen-featureblock {
    padding: 80px 40px;
    background: var(--nexgen-bg);
}

.nexgen-featureblock__inner {
    max-width: 900px;
    margin: 0 auto;
}

.nexgen-featureblock--align-center .nexgen-featureblock__inner {
    text-align: center;
}

.nexgen-featureblock__header {
    margin-bottom: 48px;
}

.nexgen-featureblock__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.nexgen-featureblock__subtitle {
    font-size: 17px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 0;
}

/* Checklist items */
.nexgen-featureblock__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.nexgen-featureblock--two_col .nexgen-featureblock__items {
    grid-template-columns: repeat(2, 1fr);
}

.nexgen-featureblock__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--nexgen-bg-alt);
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius);
    transition: var(--nexgen-transition);
    text-align: left;
}

.nexgen-featureblock__item:hover {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-md);
    transform: translateY(-2px);
    background: var(--nexgen-bg);
}

.nexgen-featureblock__item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nexgen-accent);
    font-size: 24px;
}

.nexgen-featureblock__item-icon svg,
.nexgen-featureblock__item-icon i {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.nexgen-featureblock__item-body {
    flex: 1;
}

.nexgen-featureblock__item-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--nexgen-primary) !important;
    line-height: 1.4;
}

.nexgen-featureblock__item-desc {
    font-size: 14px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 6px 0 0;
}

/* Info Box variant */
.nexgen-featureblock__info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 36px;
    background: var(--nexgen-bg-alt);
    border-left: 4px solid var(--nexgen-accent);
    border-radius: var(--nexgen-radius);
    text-align: left;
}

.nexgen-featureblock__info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nexgen-accent);
    font-size: 28px;
}

.nexgen-featureblock__info-icon svg,
.nexgen-featureblock__info-icon i {
    width: 28px;
    height: 28px;
    font-size: 28px;
}

.nexgen-featureblock__info-text {
    font-size: 15px;
    color: var(--nexgen-text) !important;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.nexgen-featureblock__cta {
    margin-top: 40px;
}

.nexgen-featureblock--align-center .nexgen-featureblock__cta {
    text-align: center;
}

/* ==========================================================================
   23d. Location Cards Widget
   ========================================================================== */
.nexgen-locations {
    padding: 100px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-locations__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.nexgen-locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Full card style (Visit Us) --- */
.nexgen-locations--full .nexgen-locations__card {
    background: #ffffff;
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius);
    padding: 36px 32px;
    text-align: center;
    transition: var(--nexgen-transition);
    box-shadow: var(--nexgen-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.nexgen-locations--full .nexgen-locations__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nexgen-shadow-lg);
    border-color: rgba(30, 144, 255, 0.3);
}

/* --- Compact card style (sidebar) --- */
.nexgen-locations--compact .nexgen-locations__card {
    background: #ffffff;
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    transition: var(--nexgen-transition);
}

.nexgen-locations--compact .nexgen-locations__card:hover {
    border-color: var(--nexgen-accent);
    box-shadow: var(--nexgen-shadow-sm);
}

.nexgen-locations--compact .nexgen-locations__grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
}

.nexgen-locations--compact .nexgen-locations__hours,
.nexgen-locations--compact .nexgen-locations__phone {
    display: none;
}

/* --- Badge --- */
.nexgen-locations__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--nexgen-radius-pill);
    margin-bottom: 4px;
}

.nexgen-locations__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.nexgen-locations__badge--primary {
    background: rgba(10, 26, 47, 0.08);
    color: var(--nexgen-primary) !important;
}

.nexgen-locations__badge--accent {
    background: rgba(30, 144, 255, 0.12);
    color: var(--nexgen-accent) !important;
}

.nexgen-locations__badge--success {
    background: rgba(16, 185, 129, 0.12);
    color: var(--nexgen-success) !important;
}

.nexgen-locations__badge--silver {
    background: rgba(192, 199, 207, 0.3);
    color: var(--nexgen-text-light) !important;
}

/* --- Card content --- */
.nexgen-locations__name {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.nexgen-locations--compact .nexgen-locations__name {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--nexgen-font) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nexgen-locations__address {
    font-size: 14px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.5;
    margin: 0;
}

.nexgen-locations__hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--nexgen-text-light) !important;
    padding: 12px 0;
}

.nexgen-locations__phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--nexgen-accent) !important;
    transition: var(--nexgen-transition);
    margin-top: auto;
}

.nexgen-locations__phone:hover {
    color: var(--nexgen-accent-hover) !important;
}

.nexgen-locations__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--nexgen-accent) !important;
    transition: var(--nexgen-transition);
    padding-top: 8px;
    border-top: 1px solid var(--nexgen-border);
    margin-top: 4px;
    width: 100%;
    justify-content: center;
}

.nexgen-locations--compact .nexgen-locations__link {
    border-top: none;
    padding-top: 0;
    justify-content: flex-start;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 13px;
}

.nexgen-locations__link:hover {
    gap: 10px;
}

.nexgen-locations__link svg {
    transition: var(--nexgen-transition);
}

/* ==========================================================================
   23e. Google Reviews Placeholder
   ========================================================================== */
.nexgen-gplaceholder {
    padding: 60px 40px;
    background: var(--nexgen-bg-alt);
    border: 2px dashed var(--nexgen-border);
    border-radius: var(--nexgen-radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0;
}

.nexgen-gplaceholder__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: var(--nexgen-shadow-sm);
}

.nexgen-gplaceholder__icon svg {
    width: 36px;
    height: 36px;
}

.nexgen-gplaceholder__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: 22px;
    color: var(--nexgen-primary) !important;
    margin: 0 0 8px;
}

.nexgen-gplaceholder__text {
    font-size: 14px;
    color: var(--nexgen-text-light) !important;
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   23g. FAQ All Widget (full page FAQ with grouped categories)
   ========================================================================== */
.nexgen-faqall {
    padding: 100px 40px;
    background: var(--nexgen-bg);
}

.nexgen-faqall__inner {
    max-width: 900px;
    margin: 0 auto;
}

.nexgen-faqall__header {
    text-align: center;
    margin-bottom: 48px;
}

.nexgen-faqall__page-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.nexgen-faqall__page-subtitle {
    font-size: 17px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Category navigation pills */
.nexgen-faqall__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
    padding: 20px;
    background: var(--nexgen-bg-alt);
    border-radius: var(--nexgen-radius-lg);
    border: 1px solid var(--nexgen-border);
    position: sticky;
    top: 80px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.nexgen-faqall__nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--nexgen-primary) !important;
    background: #ffffff;
    border: 1px solid var(--nexgen-border);
    border-radius: var(--nexgen-radius-pill);
    transition: var(--nexgen-transition);
    text-decoration: none !important;
}

.nexgen-faqall__nav-pill:hover {
    background: var(--nexgen-accent);
    color: var(--nexgen-text-white) !important;
    border-color: var(--nexgen-accent);
    transform: translateY(-2px);
    box-shadow: var(--nexgen-shadow-md);
}

/* Category sections */
.nexgen-faqall__categories {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.nexgen-faqall__category {
    scroll-margin-top: 180px;
}

.nexgen-faqall__cat-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--nexgen-border);
}

.nexgen-faqall__cat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nexgen-primary-light);
    border-radius: 14px;
    color: var(--nexgen-primary);
}

.nexgen-faqall__cat-icon svg,
.nexgen-faqall__cat-icon i {
    width: 26px;
    height: 26px;
    font-size: 26px;
    color: var(--nexgen-primary);
}

.nexgen-faqall__cat-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    line-height: 1.2;
    margin: 0 0 6px;
    letter-spacing: -0.2px;
}

.nexgen-faqall__cat-desc {
    font-size: 15px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.5;
    margin: 0;
}

.nexgen-faqall__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Bottom contact CTA */
.nexgen-faqall__contact {
    margin-top: 80px;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--nexgen-primary) 0%, var(--nexgen-secondary) 100%);
    border-radius: var(--nexgen-radius-lg);
    text-align: center;
    color: var(--nexgen-text-white);
}

.nexgen-faqall__contact-title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    color: var(--nexgen-text-white) !important;
    margin: 0 0 12px;
}

.nexgen-faqall__contact-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   23f. FAQ CTA Banner Widget (compact "See All FAQs" banner)
   ========================================================================== */
.nexgen-faqcta {
    padding: 80px 40px;
    background: var(--nexgen-bg-alt);
}

.nexgen-faqcta__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.nexgen-faqcta__header {
    margin-bottom: 32px;
}

.nexgen-faqcta__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nexgen-accent) !important;
    margin-bottom: 12px;
}

.nexgen-faqcta__title {
    font-family: var(--nexgen-font-display) !important;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    color: var(--nexgen-primary) !important;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.nexgen-faqcta__subtitle {
    font-size: 16px;
    color: var(--nexgen-text-light) !important;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.nexgen-faqcta__list {
    margin: 0 auto 40px;
    text-align: left;
    max-width: 800px;
}

.nexgen-faqcta__cta {
    margin-top: 8px;
}

.nexgen-faqcta__cta .nexgen-btn {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nexgen-faqcta__cta .nexgen-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nexgen-faqcta__cta .nexgen-btn:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   24. Responsive — Tablet (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Header: hide navbar row + topbar side elements, show hamburger */
    .nexgen-header__navbar {
        display: none;
    }

    .nexgen-header__topbar-left {
        display: none;
    }

    .nexgen-header__topbar-right {
        display: none;
    }

    .nexgen-header__topbar-center {
        position: static;
        transform: none;
    }

    .nexgen-header__topbar-inner {
        justify-content: space-between;
        height: 64px;
    }

    .nexgen-header__hamburger {
        display: flex;
    }

    .nexgen-header__topbar {
        padding: 0 24px;
    }

    .nexgen-hero__inner {
        padding: 120px 24px 80px;
    }

    .nexgen-hero__title {
        font-size: clamp(32px, 5vw, 52px);
    }

    .nexgen-hero__trust {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nexgen-services {
        padding: 80px 24px;
    }

    .nexgen-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-meds {
        padding: 80px 24px;
    }

    .nexgen-meds__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-pricing {
        padding: 80px 24px;
    }

    .nexgen-plans {
        padding: 80px 24px;
    }

    .nexgen-plans__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .nexgen-plans__alacarte-items {
        grid-template-columns: 1fr 1fr;
    }

    .nexgen-hiw {
        padding: 80px 24px;
    }

    .nexgen-hiw__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-hiw__steps::before {
        display: none;
    }

    .nexgen-cta {
        padding: 80px 24px;
    }

    .nexgen-about {
        padding: 80px 24px;
    }

    .nexgen-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nexgen-about__inner--right {
        direction: ltr;
    }

    .nexgen-conditions {
        padding: 80px 24px;
    }

    .nexgen-conditions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-contact {
        padding: 80px 24px;
    }

    .nexgen-contact__inner--split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nexgen-faq {
        padding: 80px 24px;
    }

    .nexgen-fasttrack {
        margin: 0 24px;
        padding: 64px 32px;
    }

    .nexgen-fasttrack__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nexgen-testimonials {
        padding: 80px 24px;
    }

    .nexgen-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-stats {
        padding: 64px 24px;
    }

    .nexgen-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-team {
        padding: 80px 24px;
    }

    .nexgen-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nexgen-footer {
        padding: 64px 24px 0;
    }

    .nexgen-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nexgen-getstarted {
        padding: 80px 24px;
        min-height: auto;
    }

    .nexgen-getstarted__cta {
        padding: 20px 36px;
        font-size: 14px;
    }

    .nexgen-getstarted__benefits {
        margin-top: 60px;
        padding-top: 48px;
        gap: 24px;
    }

    .nexgen-process {
        padding: 80px 24px;
    }

    .nexgen-process__step {
        gap: 24px;
        grid-template-columns: 64px 1fr;
    }

    .nexgen-process__timeline::before {
        left: 31px;
    }

    .nexgen-process__step-marker {
        width: 64px;
        height: 64px;
    }

    .nexgen-process__step-num {
        font-size: 20px;
    }

    .nexgen-process__step-content {
        padding: 28px;
    }
}

/* ==========================================================================
   25. Responsive — Mobile (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .nexgen-header__topbar-inner {
        height: 56px;
    }

    /* Logo size handled by Elementor responsive controls */

    .nexgen-featureblock {
        padding: 60px 24px;
    }

    .nexgen-faqcta {
        padding: 60px 24px;
    }

    .nexgen-faqall {
        padding: 60px 20px;
    }

    .nexgen-faqall__nav {
        position: static;
        padding: 14px;
        gap: 8px;
        margin-bottom: 40px;
    }

    .nexgen-faqall__nav-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .nexgen-faqall__cat-header {
        gap: 14px;
        margin-bottom: 20px;
    }

    .nexgen-faqall__cat-icon {
        width: 44px;
        height: 44px;
    }

    .nexgen-faqall__categories {
        gap: 40px;
    }

    .nexgen-faqall__contact {
        margin-top: 48px;
        padding: 32px 24px;
    }

    .nexgen-locations {
        padding: 60px 24px;
    }

    .nexgen-locations__grid {
        grid-template-columns: 1fr !important;
    }

    .nexgen-locations--full .nexgen-locations__card {
        padding: 28px 24px;
    }

    .nexgen-gplaceholder {
        padding: 40px 24px;
        margin: 24px 16px 0;
    }

    .nexgen-featureblock--two_col .nexgen-featureblock__items {
        grid-template-columns: 1fr;
    }

    .nexgen-featureblock__info {
        flex-direction: column;
        padding: 24px;
        gap: 12px;
    }

    .nexgen-hero__content {
        max-width: 100%;
    }

    .nexgen-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nexgen-hero__actions .nexgen-btn {
        text-align: center;
        justify-content: center;
    }

    .nexgen-hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .nexgen-services__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-meds__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-meds__card-details {
        grid-template-columns: 1fr;
    }

    .nexgen-pricing__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-hiw__steps {
        grid-template-columns: 1fr;
    }

    .nexgen-about__features {
        grid-template-columns: 1fr;
    }

    .nexgen-about__stats {
        flex-direction: column;
        gap: 24px;
    }

    .nexgen-conditions__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-contact__form-row {
        grid-template-columns: 1fr;
    }

    .nexgen-contact__links {
        flex-direction: column;
    }

    /* FAQ mobile fix — smaller text, proper wrapping */
    .nexgen-faq__question {
        font-size: 14px;
        padding: 16px;
        gap: 10px;
    }

    .nexgen-faq__icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .nexgen-faq__answer-inner {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    .nexgen-faq__list {
        gap: 8px;
    }

    .nexgen-fasttrack {
        margin: 0 16px;
        padding: 48px 24px;
    }

    .nexgen-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .nexgen-stats__item {
        padding: 24px 16px;
    }

    .nexgen-stats__item-value {
        font-size: 32px;
    }

    .nexgen-team__grid {
        grid-template-columns: 1fr;
    }

    .nexgen-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nexgen-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nexgen-plans__alacarte-items {
        grid-template-columns: 1fr;
    }

    .nexgen-plans__family {
        flex-direction: column;
        text-align: center;
    }

    .nexgen-section-header {
        margin-bottom: 40px;
    }

    .nexgen-btn--lg {
        padding: 14px 32px;
        font-size: 15px;
    }

    .nexgen-getstarted {
        padding: 64px 20px;
    }

    .nexgen-getstarted__heading {
        font-size: clamp(28px, 8vw, 42px);
    }

    .nexgen-getstarted__subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .nexgen-getstarted__cta {
        padding: 18px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
        gap: 10px;
        width: 100%;
    }

    .nexgen-getstarted__cta svg {
        width: 18px;
        height: 18px;
    }

    .nexgen-getstarted__cta-sub {
        font-size: 12px;
    }

    .nexgen-getstarted__benefits {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
        padding-top: 40px;
    }

    .nexgen-getstarted__benefit {
        gap: 16px;
    }

    .nexgen-getstarted__benefit-icon {
        width: 42px;
        height: 42px;
    }

    .nexgen-process {
        padding: 64px 20px;
    }

    .nexgen-process__timeline {
        margin-top: 40px;
    }

    .nexgen-process__step {
        grid-template-columns: 56px 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .nexgen-process__timeline::before {
        left: 27px;
        top: 28px;
        bottom: 28px;
    }

    .nexgen-process__step-marker {
        width: 56px;
        height: 56px;
    }

    .nexgen-process__step-num {
        font-size: 18px;
    }

    .nexgen-process__step-icon {
        width: 14px;
        height: 14px;
    }

    .nexgen-process__step-icon svg,
    .nexgen-process__step-icon i {
        width: 11px;
        height: 11px;
        font-size: 11px;
    }

    .nexgen-process__step-content {
        padding: 22px;
        border-radius: 16px;
    }

    .nexgen-process__step-content::before {
        display: none;
    }

    .nexgen-process__step-title {
        font-size: 20px;
    }

    .nexgen-process__step-desc {
        font-size: 14px;
    }

    .nexgen-process__step-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 12px;
    }
}
