/* ============================================================
   GYMHUB · LANDING V2
   landing-v2.css  — Responsive, dark/light
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root{
  --gh-purple:#7C3AED;--gh-purple-dark:#5B21B6;--gh-purple-light:#EDE9FE;
  --gh-accent:#06B6D4;--gh-green:#10B981;--gh-yellow:#F59E0B;--gh-red:#EF4444;
  --gh-bg:#FFFFFF;--gh-bg-secondary:#F8F7FF;--gh-bg-card:#FFFFFF;
  --gh-text:#0F0A1E;--gh-text-muted:#6B7280;--gh-text-light:#9CA3AF;
  --gh-border:#E5E7EB;--gh-border-light:#F3F4F6;
  --gh-navbar-bg:rgba(255,255,255,.92);--gh-navbar-border:rgba(229,231,235,.8);
  --gh-shadow:0 4px 24px rgba(124,58,237,.08);--gh-shadow-lg:0 20px 60px rgba(124,58,237,.15);
  --gh-hero-gradient:linear-gradient(135deg,#0F0A1E 0%,#1E1042 40%,#2D1B69 100%);
  --gh-hik-gradient:linear-gradient(135deg,#0F0A1E 0%,#1a1040 100%);
  --gh-cta-gradient:linear-gradient(135deg,#4F1FBF 0%,#7C3AED 50%,#06B6D4 100%);
  --gh-font-display:'Plus Jakarta Sans',sans-serif;--gh-font-body:'Inter',sans-serif;
  --gh-radius:16px;--gh-radius-sm:10px;--gh-radius-lg:24px;
  --sec-gap:56px; /* reduced section spacing */
}
[data-theme="dark"]{
  --gh-bg:#0A0612;--gh-bg-secondary:#100C1E;--gh-bg-card:#16102A;
  --gh-text:#F9F8FF;--gh-text-muted:#9CA3AF;--gh-text-light:#6B7280;
  --gh-border:#2D2147;--gh-border-light:#1E1835;
  --gh-navbar-bg:rgba(10,6,18,.94);--gh-navbar-border:rgba(45,33,71,.8);
  --gh-shadow:0 4px 24px rgba(124,58,237,.15);--gh-shadow-lg:0 20px 60px rgba(124,58,237,.25);
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;}
.landing-v2{font-family:var(--gh-font-body);font-size:16px;color:var(--gh-text);background:var(--gh-bg);overflow-x:hidden;transition:background .3s,color .3s;}
.landing-v2 h1,.landing-v2 h2,.landing-v2 h3,.landing-v2 h4,.landing-v2 h5{font-family:var(--gh-font-display);line-height:1.2;font-weight:700;margin-top:0;}
.landing-v2 a{text-decoration:none;}
.landing-v2 img{max-width:100%;height:auto;display:block;}
.landing-v2 section{padding:var(--sec-gap) 0;}
.landing-v2 .container{max-width:1200px;margin:0 auto;padding:0 24px;}

/* Section title — all centered */
.gh-section-title{text-align:center;margin-bottom:44px;}
.gh-section-title h2{font-size:clamp(1.6rem,3.5vw,2.4rem);color:var(--gh-text);margin-bottom:10px;}
.gh-section-title p{font-size:1.0625rem;color:var(--gh-text-muted);max-width:600px;margin:0 auto;line-height:1.65;}
.gh-badge{display:inline-block;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:var(--gh-purple);background:var(--gh-purple-light);border-radius:100px;padding:4px 14px;margin-bottom:12px;}
[data-theme="dark"] .gh-badge{background:rgba(124,58,237,.2);}

/* ── Buttons ── */
.gh-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:var(--gh-font-body);font-weight:600;font-size:.875rem;border-radius:10px;padding:9px 20px;cursor:pointer;border:none;transition:all .2s;line-height:1;text-decoration:none;}
.gh-btn-outline{background:transparent;color:var(--gh-text);border:1.5px solid var(--gh-border);}
.gh-btn-outline:hover{border-color:var(--gh-purple);color:var(--gh-purple);}
.gh-btn-primary{background:var(--gh-purple);color:#fff;}
.gh-btn-primary:hover{background:var(--gh-purple-dark);transform:translateY(-1px);box-shadow:0 8px 24px rgba(124,58,237,.35);}
.gh-btn-lg{padding:13px 26px;font-size:1rem;border-radius:12px;}
.gh-btn-ghost{background:rgba(255,255,255,.12);color:#fff;border:1.5px solid rgba(255,255,255,.25);}
.gh-btn-ghost:hover{background:rgba(255,255,255,.22);}

/* ── NAVBAR ── */
.gh-navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--gh-navbar-bg);border-bottom:1px solid var(--gh-navbar-border);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);transition:background .3s;}
.gh-navbar .container{display:flex;align-items:center;gap:16px;height:66px;}
.gh-navbar-brand{display:flex;align-items:center;justify-content:flex-start;gap:10px;font-family:var(--gh-font-display);font-weight:800;font-size:1.125rem;color:var(--gh-text);text-decoration:none;flex:0 0 clamp(120px,18vw,220px);max-width:clamp(120px,18vw,220px);overflow:hidden;}
.gh-navbar-logo{height:40px;width:100%;object-fit:contain;object-position:left center;}
.gh-navbar-brand-text{color:var(--gh-purple);}
.gh-nav-links{display:flex;align-items:center;justify-content:center;gap:2px;list-style:none;margin:0;padding:0;flex:1;min-width:0;}
.gh-nav-links a{font-size:.8125rem;font-weight:500;color:var(--gh-text-muted);padding:6px 11px;border-radius:8px;transition:color .2s,background .2s;white-space:normal;word-break:break-word;line-height:1.2;text-align:center;display:block;}
.gh-nav-links a:hover{color:var(--gh-text);background:var(--gh-border-light);}
.gh-navbar-actions{display:flex;align-items:center;gap:8px;flex-shrink:0;}
.gh-theme-toggle{width:36px;height:36px;border-radius:8px;border:1.5px solid var(--gh-border);background:transparent;color:var(--gh-text-muted);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;}
.gh-theme-toggle:hover{border-color:var(--gh-purple);color:var(--gh-purple);}
.gh-navbar-toggler{display:none;width:36px;height:36px;border-radius:8px;border:1.5px solid var(--gh-border);background:transparent;color:var(--gh-text);cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:4px;}
.gh-navbar-toggler span{display:block;width:18px;height:2px;background:var(--gh-text);border-radius:2px;transition:all .3s;}
.gh-mobile-menu{display:none;position:fixed;top:66px;left:0;right:0;background:var(--gh-navbar-bg);border-bottom:1px solid var(--gh-border);backdrop-filter:blur(16px);padding:14px 24px 20px;z-index:999;flex-direction:column;gap:4px;}
.gh-mobile-menu.open{display:flex;}
.gh-mobile-menu a{display:block;padding:11px 14px;font-size:.9375rem;font-weight:500;color:var(--gh-text);border-radius:8px;transition:background .2s;}
.gh-mobile-menu a:hover{background:var(--gh-border-light);}
.gh-mobile-actions{display:flex;gap:10px;margin-top:10px;padding-top:14px;border-top:1px solid var(--gh-border);}

/* ── HERO ── */
.gh-hero{background:var(--gh-hero-gradient);padding:140px 0 0;position:relative;overflow:hidden;}
.gh-hero-container{display:grid;grid-template-columns:40% 60%;gap:0;align-items:center;min-height:420px;}
.gh-hero-content{padding-bottom:48px;position:relative;z-index:2;}
.gh-hero-ticker{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:100px;padding:6px 16px;margin-bottom:24px;font-size:.8125rem;color:rgba(255,255,255,.85);font-weight:500;}
.gh-hero-ticker .dot{width:7px;height:7px;border-radius:50%;background:var(--gh-green);animation:pulse-dot 2s infinite;}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:.4}}
.gh-hero h1{font-size:clamp(2rem,4.5vw,3.25rem);color:#fff;margin-bottom:18px;line-height:1.1;}
.gh-hero h1 span{color:var(--gh-accent);}
.gh-hero-desc{font-size:1rem;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:30px;max-width:460px;}
.gh-hero-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
/* Hero visual — right 60%, constrained */
.gh-hero-visual{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;height:100%;padding-top:0;}
.gh-hero-visual img{width:100%;max-width:95%;max-height:520px;object-fit:contain;object-position:center center;border-radius:12px;}

/* Trust bar */
.gh-trust-bar{background:rgba(0,0,0,.25);border-top:1px solid rgba(255,255,255,.08);padding:20px 0;}
.gh-trust-bar .container{display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.gh-trust-label{font-size:.6875rem;font-weight:700;color:rgba(255,255,255,.45);text-transform:uppercase;letter-spacing:.09em;white-space:nowrap;}
.gh-trust-logos{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.gh-trust-name{font-size:.875rem;font-weight:700;color:rgba(255,255,255,.55);}
.gh-trust-logo-img{height:30px;width:auto;object-fit:contain;filter:brightness(0) invert(1);opacity:.5;}

/* ── STATS BAR ── */
.gh-stats-bar{background:var(--gh-bg-card);border-bottom:1px solid var(--gh-border);}
.gh-stats-inner{display:grid;grid-template-columns:repeat(5,1fr);}
.gh-stat-item{padding:24px 20px;border-right:1px solid var(--gh-border);display:flex;align-items:center;gap:12px;}
.gh-stat-item:last-child{border-right:none;}
.gh-stat-icon{width:40px;height:40px;border-radius:10px;background:var(--gh-purple-light);color:var(--gh-purple);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;}
[data-theme="dark"] .gh-stat-icon{background:rgba(124,58,237,.18);}
.gh-stat-value{font-family:var(--gh-font-display);font-size:1.3rem;font-weight:800;color:var(--gh-text);line-height:1;}
.gh-stat-label{font-size:.75rem;color:var(--gh-text-muted);margin-top:2px;}
.gh-stat-change{font-size:.6875rem;font-weight:600;color:var(--gh-green);}

/* ── HIKVISION ── */
.gh-hik-section{background:var(--gh-hik-gradient);padding:var(--sec-gap) 0;}
.gh-hik-section .gh-section-title h2{color:#fff;}
.gh-hik-section .gh-section-title p{color:rgba(255,255,255,.7);}
.gh-hik-brand-img{display:inline-block;height:28px;width:auto;vertical-align:middle;margin-left:8px;}
.gh-hik-brand-inline{vertical-align:middle;color:#fff;font-size:1.1em;}
.hik-badge{background:#E30613;color:#fff;font-size:.7rem;font-weight:700;padding:2px 8px;border-radius:6px;margin-left:6px;vertical-align:middle;}
.gh-hik-inner{display:grid;grid-template-columns:38% 62%;gap:48px;align-items:center;}
.gh-hik-section .gh-section-title{display:none;}
.gh-hik-device{flex-shrink:0;display:flex;align-items:center;justify-content:center;height:100%;}
.gh-hik-device img{width:100%;max-width:100%;border-radius:16px;object-fit:contain;}
.gh-hik-features-wrap{flex:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;text-align:left;height:100%;}
.gh-hik-right-title{margin-bottom:24px;}
.gh-hik-right-title h2{font-family:var(--gh-font-display);font-size:clamp(1.6rem,3.2vw,2.4rem);color:#fff;margin-bottom:12px;line-height:1.2;font-weight:700;}
.gh-hik-right-title p{font-size:1rem;color:rgba(255,255,255,.7);line-height:1.65;max-width:560px;}
.gh-hik-features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;width:100%;}
.gh-hik-feat{text-align:center;padding:20px 12px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:12px;transition:background .2s;}
.gh-hik-feat:hover{background:rgba(255,255,255,.1);}
.feat-icon-wrap{display:flex;align-items:center;justify-content:center;height:48px;margin-bottom:8px;}
.feat-icon{font-size:1.6rem;line-height:1;}
.feat-icon-img{width:40px;height:40px;object-fit:contain;margin:0 auto;}
.feat-title{font-size:.8125rem;font-weight:600;color:#fff;margin-bottom:4px;}
.feat-desc{font-size:.75rem;color:rgba(255,255,255,.5);line-height:1.5;}

/* ── MODULES ── */
.gh-modules-section{background:var(--gh-bg);}
.gh-modules-section .gh-section-title p{font-size:1.0625rem;max-width:760px;}
.gh-modules-section .gh-section-title h2{font-size:clamp(2rem,4.2vw,3rem);}
.gh-module-item h4{font-size:1.35rem;font-weight:800;color:var(--gh-text);margin-bottom:8px;}
.gh-module-item p{font-size:1rem;color:var(--gh-text-muted);line-height:1.5;margin:0;}
.gh-modules-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;}
.gh-module-item{width:calc(20% - 12px);min-width:150px;background:var(--gh-bg-card);border:1.5px solid var(--gh-border);border-radius:var(--gh-radius);padding:22px 14px 18px;text-align:center;transition:all .25s;}
.gh-module-item:hover{border-color:var(--gh-purple);box-shadow:var(--gh-shadow);transform:translateY(-3px);}
.gh-module-icon{font-size:1.6rem;width:48px;height:48px;background:var(--gh-bg-secondary);border-radius:12px;display:flex;align-items:center;justify-content:center;margin:0 auto 10px;}
[data-theme="dark"] .gh-module-icon{background:rgba(255,255,255,.06);}


/* ── CAROUSELS ── */
.gh-dashboard-section{background:var(--gh-bg-secondary);}
.gh-app-section{background:var(--gh-bg);}

.gh-carousel-outer{position:relative;display:flex;align-items:center;justify-content:center;padding:0 64px;}
.gh-carousel-wrap{overflow:hidden;flex:1;}
.gh-carousel-track{position:relative;width:100%;min-height:420px;display:block;}
.gh-carousel-wrap-app .gh-carousel-track{min-height:520px;}

/* Items: JS sets position:absolute, left%, width%, opacity, transform, filter */
.gh-carousel-item{box-sizing:border-box;padding:0 10px;}
.gh-carousel-item img{width:100%;height:auto;display:block;border-radius:12px;box-shadow:0 16px 48px rgba(0,0,0,.18);}
.gh-carousel-wrap-app .gh-carousel-item img{border-radius:18px;box-shadow:0 16px 48px rgba(0,0,0,.22);max-height:480px;object-fit:contain;}

.gh-carousel-side-btn{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;border:1.5px solid var(--gh-border);background:var(--gh-bg-card);color:var(--gh-text-muted);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1rem;transition:all .2s;z-index:10;}
.gh-carousel-side-btn:hover{border-color:var(--gh-purple);color:var(--gh-purple);background:var(--gh-purple-light);}
[data-theme="dark"] .gh-carousel-side-btn:hover{background:rgba(124,58,237,.15);}
#dashPrev,#appPrev{left:0;}
#dashNext,#appNext{right:0;}

.gh-carousel-caption{text-align:center;margin-top:18px;min-height:40px;padding:0 60px;}
.gh-carousel-caption p{font-size:.9375rem;color:var(--gh-text-muted);line-height:1.6;max-width:480px;margin:0 auto;}
.gh-carousel-dots-row{display:flex;justify-content:center;margin-top:14px;}
.gh-carousel-dots{display:flex;gap:7px;}
.gh-carousel-dots button{width:8px;height:8px;border-radius:50%;background:var(--gh-border);border:none;cursor:pointer;transition:all .2s;padding:0;}
.gh-carousel-dots button.active{width:22px;border-radius:4px;background:var(--gh-purple);}
.gh-carousel-placeholder{text-align:center;padding:48px 0;color:var(--gh-text-muted);display:flex;flex-direction:column;align-items:center;gap:12px;opacity:.5;}

/* App store badges */
.gh-app-badges{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-bottom:36px;}
.gh-store-badge{display:inline-flex;align-items:center;gap:10px;background:var(--gh-text);color:var(--gh-bg);border-radius:12px;padding:10px 20px;font-size:.875rem;font-weight:500;transition:opacity .2s;text-decoration:none;}
.gh-store-badge:hover{opacity:.8;}
.store-icon{font-size:1.375rem;}
.gh-store-badge small{font-size:.6875rem;font-weight:400;opacity:.7;display:block;}

/* ── PLANS ── */
.gh-plans-section{background:var(--gh-bg);}
.gh-billing-toggle{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:40px;}
.gh-billing-toggle span{font-size:.9375rem;font-weight:600;color:var(--gh-text);}
.gh-switch{position:relative;display:inline-block;width:50px;height:26px;}
.gh-switch input{opacity:0;width:0;height:0;}
.gh-switch-slider{position:absolute;inset:0;background:var(--gh-border);border-radius:13px;cursor:pointer;transition:.3s;}
.gh-switch-slider::before{content:'';position:absolute;width:18px;height:18px;left:4px;top:4px;background:#fff;border-radius:50%;transition:.3s;box-shadow:0 2px 6px rgba(0,0,0,.15);}
.gh-switch input:checked+.gh-switch-slider{background:var(--gh-purple);}
.gh-switch input:checked+.gh-switch-slider::before{transform:translateX(24px);}

/* Plans grid — centered when fewer than 4 */
.gh-plans-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px;align-items:start;}
.gh-plan-card{width:calc(25% - 16px);min-width:230px;background:var(--gh-bg-card);border:1.5px solid var(--gh-border);border-radius:var(--gh-radius-lg);padding:28px 22px;position:relative;transition:all .3s;}
.gh-plan-card:hover{border-color:var(--gh-purple);box-shadow:var(--gh-shadow-lg);transform:translateY(-5px);}
.gh-plan-card.popular{border-color:var(--gh-purple);box-shadow:var(--gh-shadow-lg);}
.gh-plan-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);background:var(--gh-purple);color:#fff;font-size:.75rem;font-weight:700;padding:4px 16px;border-radius:100px;white-space:nowrap;}
.gh-plan-name{font-size:1.125rem;font-weight:800;color:var(--gh-text);margin-bottom:3px;text-transform:uppercase;letter-spacing:.03em;}
.gh-plan-desc{font-size:.8125rem;color:var(--gh-text-muted);margin-bottom:20px;}
.gh-plan-amount{font-family:var(--gh-font-display);font-size:2.125rem;font-weight:800;color:var(--gh-text);}
.gh-plan-period{font-size:.875rem;color:var(--gh-text-muted);font-weight:500;}
.gh-plan-annual-info{margin-bottom:16px;}
.gh-plan-annual-original{font-size:.875rem;color:var(--gh-text-light);text-decoration:line-through;display:block;}
.gh-plan-discount-badge{display:inline-block;font-size:.8125rem;font-weight:700;color:var(--gh-green);background:rgba(16,185,129,.12);border-radius:6px;padding:2px 10px;margin-top:3px;}
.gh-plan-divider{height:1px;background:var(--gh-border);margin:16px 0;}
.gh-plan-features{list-style:none;margin:0 0 20px;padding:0;display:flex;flex-direction:column;gap:9px;}
.gh-plan-features li{font-size:.8125rem;color:var(--gh-text-muted);display:flex;align-items:flex-start;gap:7px;}
.gh-plan-features li .check{color:var(--gh-green);font-size:.8125rem;flex-shrink:0;margin-top:1px;}
.gh-plan-cta{display:block;width:100%;text-align:center;padding:11px 18px;border-radius:10px;font-size:.9375rem;font-weight:600;transition:all .2s;cursor:pointer;border:none;font-family:var(--gh-font-body);text-decoration:none;}
.gh-plan-cta-outline{background:transparent;color:var(--gh-purple);border:1.5px solid var(--gh-purple);}
.gh-plan-cta-outline:hover{background:var(--gh-purple-light);}
.gh-plan-cta-filled{background:var(--gh-purple);color:#fff;}
.gh-plan-cta-filled:hover{background:var(--gh-purple-dark);box-shadow:0 8px 24px rgba(124,58,237,.35);}

/* ── TESTIMONIALS ── */
.gh-testimonials-section{background:var(--gh-bg-secondary);}
.gh-testimonials-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:18px;}
.gh-testimonial-card{width:calc(25% - 14px);min-width:220px;background:var(--gh-bg-card);border:1.5px solid var(--gh-border);border-radius:var(--gh-radius);padding:22px;transition:all .25s;}
.gh-testimonial-card:hover{border-color:var(--gh-purple);box-shadow:var(--gh-shadow);transform:translateY(-3px);}
.gh-testimonial-header{display:flex;align-items:center;gap:10px;margin-bottom:12px;}
.gh-testimonial-avatar{width:46px;height:46px;border-radius:50%;object-fit:cover;background:var(--gh-purple-light);display:flex;align-items:center;justify-content:center;color:var(--gh-purple);font-weight:700;font-size:1rem;flex-shrink:0;overflow:hidden;}
.gh-testimonial-info h4{font-size:.9375rem;font-weight:700;color:var(--gh-text);margin:0 0 2px;}
.gh-testimonial-info span{font-size:.75rem;color:var(--gh-text-muted);}
.gh-stars{display:flex;gap:2px;margin-bottom:10px;}
.gh-stars i{color:var(--gh-yellow);font-size:.8125rem;}
.gh-testimonial-card p{font-size:.875rem;color:var(--gh-text-muted);line-height:1.65;margin:0;font-style:italic;}

/* ── FAQ ── */
.gh-faq-section{background:var(--gh-bg);}
.gh-faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:860px;margin:0 auto;}
.gh-faq-item{background:var(--gh-bg-card);border:1.5px solid var(--gh-border);border-radius:var(--gh-radius-sm);overflow:hidden;}
.gh-faq-question{padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:10px;cursor:pointer;font-size:.9375rem;font-weight:600;color:var(--gh-text);user-select:none;transition:background .2s;}
.gh-faq-question:hover{background:var(--gh-bg-secondary);}
.gh-faq-icon{width:26px;height:26px;border-radius:50%;background:var(--gh-border-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--gh-text-muted);font-size:1.125rem;transition:all .3s;}
.gh-faq-item.open .gh-faq-icon{background:var(--gh-purple);color:#fff;transform:rotate(45deg);}
.gh-faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease;}
.gh-faq-item.open .gh-faq-answer{max-height:300px;}
.gh-faq-answer p{padding:0 18px 16px;font-size:.875rem;color:var(--gh-text-muted);line-height:1.65;margin:0;}

/* ── CTA ── */
.gh-cta-section{background:var(--gh-cta-gradient);padding:0;overflow:hidden;}
.gh-cta-inner{display:flex;align-items:stretch;min-height:300px;max-height:380px;position:relative;}
.gh-cta-content{flex:0 0 62%;padding:52px 60px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;position:relative;z-index:1;}
.gh-cta-content h2{font-size:clamp(2rem,4.2vw,3.2rem);color:#fff;margin-bottom:14px;}
.gh-cta-content p{font-size:1.125rem;color:rgba(255,255,255,.8);margin-bottom:28px;line-height:1.65;max-width:520px;}
.gh-cta-content .gh-cta-actions,.gh-cta-content .gh-cta-note{justify-content:center;}
.gh-cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:16px;}
.gh-cta-note{font-size:.8125rem;color:rgba(255,255,255,.65);display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.gh-cta-note span{display:flex;align-items:center;gap:5px;}
.gh-cta-athletes{flex:0 0 38%;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.gh-cta-athletes img{position:relative;height:100%;max-height:360px;width:auto;max-width:100%;object-fit:contain;object-position:center;}

/* ── FOOTER ── */
.gh-footer{background:#0d0a1a;padding:48px 0 0;}
[data-theme="dark"] .gh-footer{background:#04020A;}
.gh-footer .container{display:flex;flex-direction:column;gap:32px;}
.gh-footer-brand-col{display:flex;flex-direction:column;gap:14px;}
.gh-footer-logo{height:auto;width:16.66vw;max-width:220px;min-width:110px;object-fit:contain;filter:brightness(0) invert(1);}
.gh-footer-brand-name{font-family:var(--gh-font-display);font-size:1.125rem;font-weight:800;color:#fff;}
.gh-footer-brand-col p{font-size:.875rem;color:rgba(255,255,255,.6);line-height:1.65;margin:0;max-width:320px;}
.gh-footer-social{display:flex;gap:9px;}
.gh-footer-social a{width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.7);display:flex;align-items:center;justify-content:center;font-size:.875rem;transition:all .2s;text-decoration:none;}
.gh-footer-social a:hover{background:var(--gh-purple);color:#fff;}
.gh-footer-contact-link{font-size:.8125rem;color:rgba(255,255,255,.55);display:flex;align-items:center;gap:7px;text-decoration:none;margin-top:4px;}
.gh-footer-contact-link:hover{color:#fff;}
.gh-footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.gh-footer-bottom span{font-size:.8125rem;color:rgba(255,255,255,.45);}
.gh-footer-bottom-links{display:flex;gap:18px;flex-wrap:wrap;}
.gh-footer-bottom-links a{font-size:.8125rem;color:rgba(255,255,255,.5);transition:color .2s;text-decoration:none;}
.gh-footer-bottom-links a:hover{color:#fff;}

/* ── Responsive ── */

@media(max-width:1100px){
  .gh-navbar-actions{display:none;}
  .gh-nav-links a{padding:6px 8px;font-size:.78rem;}
}
@media(max-width:1100px){
  .gh-hik-features{grid-template-columns:repeat(3,1fr);}
  .gh-stats-inner{grid-template-columns:repeat(3,1fr);}
  .gh-plan-card{width:calc(33.33% - 14px);}
}

@media(max-width:900px){
  .gh-hero-container{grid-template-columns:1fr;min-height:auto;}
  .gh-hero-content{text-align:center;margin:0 auto;}
  .gh-hero-desc{margin-left:auto;margin-right:auto;}
  .gh-hero-actions{justify-content:center;}
  .gh-hero-visual{display:none;}
  .gh-hik-inner{grid-template-columns:1fr;}
  .gh-hik-device{display:none;}
  .gh-hik-features{grid-template-columns:repeat(3,1fr);}
  .gh-stats-inner{grid-template-columns:repeat(2,1fr);}
  .gh-testimonial-card{width:calc(50% - 9px);}
  .gh-faq-grid{grid-template-columns:1fr;}
  .gh-plan-card{width:calc(50% - 10px);}
  .gh-cta-content{flex:0 0 65%;padding:40px 36px;}
  .gh-cta-athletes{flex:0 0 35%;}
}
@media(max-width:768px){
  :root{--sec-gap:36px;}
  .gh-nav-links{display:none;}
  .gh-navbar-toggler{display:flex;}
  .gh-hero{padding-top:80px;}
  .gh-hero h1{font-size:clamp(1.75rem,6vw,2.5rem);}
  .gh-hik-features{grid-template-columns:repeat(2,1fr);}
  .gh-module-item{width:calc(50% - 7px);}
  .gh-plan-card{width:100%;max-width:360px;}
  .gh-testimonial-card{width:100%;max-width:420px;}
  .gh-cta-inner{flex-direction:column;max-height:none;}
  .gh-cta-content{flex:none;padding:40px 28px 24px;}
  .gh-cta-athletes{flex:none;height:220px;width:100%;}
  .gh-cta-athletes img{position:relative;height:100%;width:auto;margin:0 auto;bottom:auto;right:auto;}
  .gh-carousel-track{min-height:260px;}
  .gh-carousel-wrap-app .gh-carousel-track{min-height:380px;}
}
@media(max-width:520px){
  :root{--sec-gap:28px;}
  .landing-v2 .container{padding:0 16px;}
  .gh-stats-inner{grid-template-columns:repeat(2,1fr);}
  .gh-module-item{width:calc(50% - 7px);min-width:140px;}
  .gh-hik-features{grid-template-columns:1fr 1fr;}
  .gh-plan-card{min-width:260px;}
  .gh-cta-content{padding:32px 20px 20px;}
  .gh-cta-note{flex-direction:column;gap:8px;}
  .gh-trust-bar .container{flex-direction:column;align-items:flex-start;gap:10px;}
  .gh-navbar-actions .gh-btn-outline{display:none;}
}

/* ============================================================
   HOME V2 · Integraciones / dispositivos dinámicos
   ============================================================ */
.gh-device-section{
  background:var(--gh-hik-gradient);
  padding:0 0 62px!important;
  color:#fff;
  overflow:hidden;
}
.gh-device-section .container{
  max-width:none;
  width:100%;
  padding:0;
}
.gh-device-section-title{display:none!important;}
.gh-device-brand-bar{
  width:100%;
  min-height:76px;
  display:flex;
  align-items:stretch;
  margin:0 0 46px;
  background:rgba(41,23,84,.92);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 42px rgba(0,0,0,.22);
}
.gh-device-brand-intro{
  flex:0 0 34%;
  display:flex;
  align-items:center;
  padding:0 30px 0 clamp(24px,8vw,140px);
  color:rgba(255,255,255,.92);
  font-size:.96rem;
  line-height:1.35;
  font-weight:500;
  text-align:left;
  white-space:normal;
}
.gh-device-brand-tabs{
  flex:1;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:1fr;
  align-items:stretch;
  width:100%;
  margin:0;
  padding:0;
  gap:0;
  border:0;
  background:transparent;
}
.gh-device-brand-bar.no-intro .gh-device-brand-tabs{
  flex:0 0 100%;
}
.gh-device-brand-tab{
  width:100%;
  min-width:0;
  height:76px;
  margin:0;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-left:1px solid rgba(255,255,255,.08);
  border-radius:0;
  background:transparent;
  color:#fff;
  font-family:var(--gh-font-display);
  font-size:clamp(1rem,1.7vw,1.45rem);
  line-height:1;
  font-weight:800;
  letter-spacing:.035em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .18s ease, box-shadow .18s ease, color .18s ease;
}
.gh-device-brand-tab:first-child{border-left:0;}
.gh-device-brand-tab span{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.gh-device-brand-tab:hover,
.gh-device-brand-tab.active{
  color:#fff;
  background:rgba(255,255,255,.065);
  box-shadow:inset 0 -4px 0 var(--brand-color,#7C3AED);
}
.gh-device-panels{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.gh-device-panel{
  display:none;
  grid-template-columns:minmax(260px,42%) minmax(320px,58%);
  gap:clamp(32px,5vw,72px);
  align-items:center;
  min-height:360px;
}
.gh-device-panel.active{display:grid;}
.gh-device-panel[hidden]{display:none!important;}
.gh-device-media-col{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:20px;
}
.gh-device-active-logo{
  display:block;
  width:auto!important;
  height:auto!important;
  max-width:min(260px,82%);
  max-height:70px;
  object-fit:contain;
  margin:0 auto;
  filter:none;
}
.gh-device-fallback-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:8px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-family:var(--gh-font-display);
  font-size:1.15rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.gh-device-panel .gh-hik-device{
  width:100%;
  display:flex!important;
  align-items:center;
  justify-content:center;
  height:auto;
  min-width:0;
}
.gh-device-panel .gh-hik-device img{
  display:block;
  width:auto!important;
  height:auto!important;
  max-width:min(390px,100%);
  max-height:300px;
  object-fit:contain;
  border-radius:14px;
  filter:drop-shadow(0 24px 44px rgba(0,0,0,.28));
}
.gh-device-panel .gh-hik-features-wrap{
  align-items:flex-start;
  justify-content:center;
  text-align:left;
  height:auto;
  color:#fff;
}
.gh-device-panel .gh-hik-right-title{
  margin:0 0 28px;
}
.gh-device-panel .gh-hik-right-title h2{
  max-width:620px;
  margin:0 0 14px;
  color:#fff;
  font-size:clamp(2rem,3.6vw,2.9rem);
  line-height:1.06;
  font-weight:800;
  letter-spacing:-.035em;
}
.gh-device-panel .gh-hik-right-title p{
  max-width:570px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:1rem;
  line-height:1.7;
}
.gh-device-panel .gh-hik-features{
  width:100%;
  max-width:560px;
  display:grid;
  grid-template-columns:repeat(3,minmax(130px,1fr));
  gap:14px;
}
.gh-device-panel .gh-hik-feat{
  min-height:106px;
  padding:17px 12px 15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius:14px;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045),0 12px 32px rgba(0,0,0,.10);
  transition:transform .18s ease,background .18s ease,border-color .18s ease;
}
.gh-device-panel .gh-hik-feat:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.09);
  border-color:color-mix(in srgb,var(--brand-color,#7C3AED) 45%,rgba(255,255,255,.14));
}
.gh-device-panel .feat-icon-wrap{
  height:34px;
  margin:0 0 8px;
}
.gh-device-panel .feat-icon{
  color:var(--brand-color,#8B5CF6);
  font-size:1.35rem;
  font-weight:900;
}
.gh-device-panel .feat-icon-img{
  width:30px;
  height:30px;
  object-fit:contain;
  margin:0 auto;
}
.gh-device-panel .feat-title{
  margin:0;
  color:#fff;
  font-size:.78rem;
  line-height:1.2;
  font-weight:800;
}
.gh-device-panel .feat-desc{
  margin-top:5px;
  color:rgba(255,255,255,.58);
  font-size:.72rem;
  line-height:1.35;
}

/* ============================================================
   HOME V2 · Footer en 4 columnas reales
   ============================================================ */
.gh-footer{
  width:100%;
  background:#090614;
  padding:54px 0 0;
  color:#fff;
}
[data-theme="dark"] .gh-footer{background:#04020A;}
.gh-footer .container{
  max-width:none;
  width:100%;
  padding:0 clamp(24px,8vw,120px);
  display:flex;
  flex-direction:column;
  gap:34px;
}
.gh-footer-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:clamp(22px,3vw,46px);
  align-items:flex-start;
}
.gh-footer-brand-col,
.gh-footer-column{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.gh-footer-brand-col{gap:14px;}
.gh-footer-logo{
  display:block;
  width:auto!important;
  height:auto!important;
  max-width:220px;
  max-height:64px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  margin:0 0 2px;
}
.gh-footer-brand-name{
  color:#fff;
  font-family:var(--gh-font-display);
  font-size:1.2rem;
  line-height:1.2;
  font-weight:800;
}
.gh-footer-brand-col p{
  max-width:280px;
  margin:0;
  color:rgba(255,255,255,.68)!important;
  font-size:.9rem;
  line-height:1.7;
}
.gh-footer-contact-link{
  display:flex;
  align-items:center;
  gap:8px;
  max-width:100%;
  color:rgba(255,255,255,.72)!important;
  font-size:.875rem;
  line-height:1.4;
  text-decoration:none;
  word-break:break-word;
  transition:color .2s ease;
}
.gh-footer-contact-link i{color:rgba(255,255,255,.52);width:16px;text-align:center;flex:0 0 16px;}
.gh-footer-contact-link:hover{color:#fff!important;}
.gh-footer-column h4{
  margin:0 0 16px;
  color:#fff!important;
  font-family:var(--gh-font-display);
  font-size:1.02rem;
  line-height:1.2;
  font-weight:800;
}
.gh-footer-column-links{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:11px;
}
.gh-footer-column-links a,
.gh-footer-social-row{
  display:inline-flex;
  align-items:center;
  gap:9px;
  max-width:100%;
  color:rgba(255,255,255,.66)!important;
  font-size:.875rem;
  line-height:1.35;
  text-decoration:none;
  word-break:break-word;
  transition:color .2s ease,transform .2s ease;
}
.gh-footer-column-links a:hover,
.gh-footer-social-row:hover{
  color:#fff!important;
  transform:translateX(2px);
}
.gh-footer-social-row i{width:18px;text-align:center;color:rgba(255,255,255,.52);flex:0 0 18px;}
.gh-footer-bottom{
  width:100%;
  border-top:1px solid rgba(255,255,255,.10);
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  flex-wrap:wrap;
}
.gh-footer-bottom span{
  color:rgba(255,255,255,.52)!important;
  font-size:.82rem;
}

@media(max-width:991px){
  .gh-device-brand-bar{flex-direction:column;margin-bottom:34px;}
  .gh-device-brand-intro{flex:0 0 auto;width:100%;min-height:54px;padding:14px 22px;text-align:center;justify-content:center;}
  .gh-device-brand-tabs{grid-auto-flow:row;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));}
  .gh-device-brand-tab{height:58px;font-size:1.05rem;border-left:0;border-top:1px solid rgba(255,255,255,.08);}
  .gh-device-panel,.gh-device-panel.active{grid-template-columns:1fr;gap:28px;}
  .gh-device-panel .gh-hik-features-wrap{align-items:center;text-align:center;}
  .gh-device-panel .gh-hik-right-title p{margin-left:auto;margin-right:auto;}
  .gh-device-panel .gh-hik-features{max-width:680px;}
  .gh-footer .container{padding:0 28px;}
  .gh-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:575px){
  .gh-device-section{padding-bottom:42px!important;}
  .gh-device-brand-tabs{grid-template-columns:1fr;}
  .gh-device-brand-tab{height:54px;font-size:.98rem;}
  .gh-device-panels{padding:0 18px;}
  .gh-device-active-logo{max-width:190px;max-height:52px;}
  .gh-device-panel .gh-hik-device img{max-width:280px;max-height:220px;}
  .gh-device-panel .gh-hik-right-title h2{font-size:1.65rem;}
  .gh-device-panel .gh-hik-right-title p{font-size:.92rem;}
  .gh-device-panel .gh-hik-features{grid-template-columns:1fr 1fr;gap:10px;}
  .gh-device-panel .gh-hik-feat{min-height:92px;padding:14px 10px;}
  .gh-footer .container{padding:0 22px;}
  .gh-footer-grid{grid-template-columns:1fr;gap:28px;}
  .gh-footer-logo{max-width:190px;}
}

