/*
 * HakimTech Official Stylesheet
 * Theme: Premium Digital Hub — Dark-Light Hybrid
 * Version: 8.0 — Fully Optimized, Animated, Mobile-First
 * Enhanced: Motion, Micro-interactions, Smart Responsive
 */

/* ════════════════════════════════════════════════════════════
   1. CSS VARIABLES & THEME
════════════════════════════════════════════════════════════ */
:root {
    /* Brand Colors */
    --blue:         #1E56F1;
    --blue-dark:    #1240C0;
    --blue-light:   #4A7BF7;
    --blue-xlight:  #EEF3FF;
    --cyan:         #00D4FF;
    --cyan-dark:    #0099CC;
    --dark:         #080D1A;
    --dark-2:       #0F1729;
    --dark-3:       #1A2540;
    --dark-4:       #212B47;
    --soft:         #F0F4FF;
    --soft-2:       #E8EEFF;
    --soft-3:       #D8E2FF;
    --white:        #FFFFFF;
    --slate:        #64748B;
    --slate-lt:     #94A3B8;
    --slate-xlt:    #CBD5E1;
    --accent:       #FF3366;
    --accent-dark:  #CC1144;
    --purple:       #7C3AED;
    --purple-lt:    #A855F7;
    --purple-xlt:   #EDE9FE;
    --green:        #10B981;
    --green-lt:     rgba(16, 185, 129, 0.12);

    /* Glow helpers */
    --cyan-glow:    rgba(0, 212, 255, 0.35);
    --blue-glow:    rgba(30, 86, 241, 0.25);
    --purple-glow:  rgba(124, 58, 237, 0.25);

    /* Border Radius */
    --radius-xs:  8px;
    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  28px;
    --radius-xl:  40px;
    --radius-2xl: 56px;

    /* Shadows */
    --shadow-xs:   0 2px 8px rgba(30, 86, 241, 0.06);
    --shadow-sm:   0 4px 16px rgba(30, 86, 241, 0.09);
    --shadow-md:   0 12px 40px rgba(30, 86, 241, 0.14);
    --shadow-lg:   0 30px 80px rgba(30, 86, 241, 0.18);
    --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 24px rgba(30, 86, 241, 0.08), 0 1px 4px rgba(0,0,0,0.04);

    /* Motion */
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
    --smooth:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --bounce:      cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --duration:    0.4s;
    --duration-sm: 0.22s;
    --duration-lg: 0.6s;

    /* Layout */
    --nav-height:       68px;
    --announce-height:  34px;
    --total-offset:     calc(var(--nav-height) + var(--announce-height));
    --max-width:        1280px;
    --container-px:     1rem;

    /* Touch target minimum */
    --touch-min: 44px;
}

/* ════════════════════════════════════════════════════════════
   2. RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'DM Sans', 'Hind Siliguri', sans-serif;
    background: var(--soft);
    color: var(--dark);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', 'DM Sans', sans-serif;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p, span, li, a, button, label {
    font-family: 'DM Sans', 'Hind Siliguri', sans-serif;
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

[x-cloak] { display: none !important; }

/* Custom Scrollbar */
::-webkit-scrollbar            { width: 4px; height: 4px; }
::-webkit-scrollbar-track      { background: transparent; }
::-webkit-scrollbar-thumb      { background: var(--blue-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--blue); }

/* Selection */
::selection { background: var(--blue); color: white; }

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   3. ANNOUNCEMENT BAR
════════════════════════════════════════════════════════════ */
.announcement-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    height: var(--announce-height);
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 5001;
    top: 0;
    left: 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 50s linear infinite;
    will-change: transform;
    flex-shrink: 0;
    min-width: 200%;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-set {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.015em;
    gap: 0;
}

@media (max-width: 480px) { .marquee-set { font-size: 10.5px; } }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   4. NAVIGATION
════════════════════════════════════════════════════════════ */
.ht-nav {
    position: fixed;
    top: var(--announce-height);
    left: 0;
    width: 100%;
    z-index: 5000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(30, 86, 241, 0.06);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    will-change: transform;
}

.ht-nav.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 6px 30px rgba(8, 13, 26, 0.07);
    border-bottom-color: rgba(30, 86, 241, 0.09);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: height 0.3s var(--ease);
}

.ht-nav.scrolled .nav-inner { height: 58px; }

@media (min-width: 480px)  { .nav-inner { padding: 0 1.25rem; } }
@media (min-width: 640px)  { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .nav-inner { padding: 0 3rem; } }

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 0;
    -webkit-tap-highlight-color: transparent;
}

.brand-logo-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 2px solid rgba(30, 86, 241, 0.14);
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.35s var(--spring);
}

.nav-brand:hover .brand-logo-img { transform: scale(1.07) rotate(-3deg); }

.brand-logo-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 15px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s var(--ease);
    z-index: 0;
}

.nav-brand:hover .brand-logo-glow { opacity: 0.5; }

.brand-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(17px, 4vw, 21px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
}

.brand-name span { color: var(--blue); }

.brand-tagline {
    font-size: 8.5px;
    font-weight: 700;
    color: var(--slate-lt);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 3px;
    white-space: nowrap;
}

@media (max-width: 359px) { .brand-tagline { display: none; } }

/* Desktop Nav Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) { .nav-menu { display: flex; } }

.nav-lnk {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--slate);
    position: relative;
    padding: 5px 0;
    transition: color 0.22s var(--ease);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-lnk::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: 2px;
    transition: width 0.32s var(--ease);
}

.nav-lnk:hover          { color: var(--blue); }
.nav-lnk:hover::after   { width: 100%; }
.nav-lnk.active         { color: var(--blue); }
.nav-lnk.active::after  { width: 100%; }

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    color: var(--white);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    transition: background 0.3s var(--ease), transform 0.25s var(--spring), box-shadow 0.3s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    min-height: var(--touch-min);
}

.nav-cta i { font-size: 14px; color: #25D366; }

.nav-cta:hover {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

@media (min-width: 560px) { .nav-cta { display: flex; } }

/* Hamburger Toggle */
.nav-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--soft-2);
    border: 1px solid rgba(30, 86, 241, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.22s var(--ease), transform 0.2s var(--spring);
    z-index: 2001;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover  { background: var(--soft-3); }
.nav-toggle:active { transform: scale(0.93); }

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 3px;
    transition: transform 0.35s var(--ease), opacity 0.22s, width 0.25s var(--ease);
    transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ════════════════════════════════════════════════════════════
   5. MOBILE DRAWER
════════════════════════════════════════════════════════════ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 100000;
    transform: translateX(110%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -16px 0 64px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.drawer-open { transform: translateX(0) !important; }

.drawer-inner {
    padding: 20px 16px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-close {
    width: 40px;
    height: 40px;
    background: var(--soft-2);
    border: 1px solid rgba(30, 86, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--slate);
    margin-left: auto;
    margin-bottom: 20px;
    transition: background 0.22s var(--ease), color 0.22s, transform 0.2s var(--spring);
    flex-shrink: 0;
}

.drawer-close:hover  { background: var(--accent); color: white; border-color: var(--accent); }
.drawer-close:active { transform: scale(0.9) rotate(90deg); }

.drawer-brand {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--slate-lt);
    margin-bottom: 12px;
    padding-left: 4px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    margin-bottom: 18px;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--dark);
    background: var(--soft);
    border: 1px solid rgba(30, 86, 241, 0.05);
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.22s var(--ease), border-color 0.22s, color 0.22s, transform 0.22s var(--spring);
    min-height: var(--touch-min);
}

.drawer-nav a i {
    width: 21px;
    font-size: 14px;
    color: var(--blue);
    flex-shrink: 0;
    text-align: center;
}

.drawer-nav a:hover,
.drawer-nav a:active {
    background: var(--blue-xlight);
    border-color: rgba(30, 86, 241, 0.16);
    color: var(--blue);
    transform: translateX(4px);
}

/* Staggered drawer link entrance */
.drawer-open .drawer-nav a {
    animation: drawerLinkIn 0.38s var(--spring) both;
}
.drawer-open .drawer-nav a:nth-child(1) { animation-delay: 0.04s; }
.drawer-open .drawer-nav a:nth-child(2) { animation-delay: 0.08s; }
.drawer-open .drawer-nav a:nth-child(3) { animation-delay: 0.12s; }
.drawer-open .drawer-nav a:nth-child(4) { animation-delay: 0.16s; }
.drawer-open .drawer-nav a:nth-child(5) { animation-delay: 0.20s; }
.drawer-open .drawer-nav a:nth-child(6) { animation-delay: 0.24s; }

@keyframes drawerLinkIn {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

.drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
    box-shadow: 0 8px 24px rgba(30, 86, 241, 0.3);
    margin-top: auto;
    min-height: var(--touch-min);
}

.drawer-cta:hover  { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30,86,241,0.4); color: white; }
.drawer-cta:active { transform: scale(0.97); }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 13, 26, 0.6);
    z-index: 99999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: overlayFadeIn 0.25s var(--ease) forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   6. HERO SECTION
════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--total-offset) + 32px) var(--container-px) 72px;
}

@media (min-width: 480px)  { .hero-section { padding: calc(var(--total-offset) + 40px) 1.25rem 80px; } }
@media (min-width: 640px)  { .hero-section { padding: calc(var(--total-offset) + 48px) 1.5rem 90px; } }
@media (min-width: 1024px) { .hero-section { padding: calc(var(--total-offset) + 38px) 2.5rem 80px; min-height: 90vh; } }
@media (min-width: 1280px) { .hero-section { padding: calc(var(--total-offset) + 38px) 3rem 80px; } }

/* 3D Grid Background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 86, 241, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 86, 241, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    width: clamp(260px, 44vw, 520px);
    height: clamp(260px, 44vw, 520px);
    background: radial-gradient(circle, rgba(30, 86, 241, 0.15) 0%, transparent 70%);
    top: -80px; left: -80px;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
    width: clamp(200px, 34vw, 420px);
    height: clamp(200px, 34vw, 420px);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.11) 0%, transparent 70%);
    bottom: -60px; right: -60px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: clamp(150px, 24vw, 300px);
    height: clamp(150px, 24vw, 300px);
    background: radial-gradient(circle, rgba(124, 58, 237, 0.09) 0%, transparent 70%);
    top: 42%; left: 42%;
    animation: orbFloat 10s ease-in-out infinite 2.5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.08); }
    66%       { transform: translate(-20px, 20px) scale(0.94); }
}

/* Floating Stat Badges */
.stat-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(30, 86, 241, 0.1);
    border-radius: var(--radius-md);
    padding: 13px 17px;
    box-shadow: 0 8px 32px rgba(30, 86, 241, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    animation: badgeFloat 5.5s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

.stat-b1 { top: 22%; left: 2%; animation-delay: 0s; }
.stat-b2 { top: 22%; right: 2%; animation-delay: 1.8s; }

@media (max-width: 767px) { .stat-badge { display: none !important; } }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%       { transform: translateY(-8px) rotate(0.5deg); }
    75%       { transform: translateY(-4px) rotate(-0.5deg); }
}

.stat-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    flex-shrink: 0;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--slate);
    margin-top: 2px;
}

/* Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    z-index: 5;
}

.hero-slide { width: 100%; }

.slide-active {
    display: block;
    animation: slideIn 0.6s var(--ease) forwards;
}

.slide-hidden { display: none; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) { .slide-content { gap: 2.5rem; } }

@media (min-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        gap: 4.5rem;
        min-height: 480px;
    }
}

/* Slide Text */
.slide-text {
    order: 2;
    text-align: center;
}

@media (min-width: 1024px) { .slide-text { order: 1; text-align: left; } }

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(30, 86, 241, 0.08);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 50px;
    border: 1px solid rgba(30, 86, 241, 0.14);
    margin-bottom: 1.15rem;
    animation: tagPop 0.5s var(--spring) 0.1s both;
}

@keyframes tagPop {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.slide-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 1.15rem;
    animation: titleRise 0.6s var(--ease) 0.15s both;
}

@keyframes titleRise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide-title .text-brandBlue { color: var(--blue); }
.slide-title .text-purpleMS  { color: var(--purple); }
.slide-title .text-brandCyan { color: var(--cyan-dark); }

.slide-desc {
    font-size: clamp(13.5px, 2.4vw, 16px);
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.75;
    animation: titleRise 0.6s var(--ease) 0.25s both;
}

@media (min-width: 1024px) { .slide-desc { margin: 0 0 1.75rem; } }

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    animation: titleRise 0.6s var(--ease) 0.35s both;
}

@media (min-width: 1024px) { .slide-actions { justify-content: flex-start; } }

/* Hero Buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(30, 86, 241, 0.35);
    transition: transform 0.32s var(--spring), box-shadow 0.32s var(--ease), background 0.28s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: var(--touch-min);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.5s var(--ease);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(30, 86, 241, 0.45);
    color: white;
}

.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:active { transform: scale(0.97); }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 12px 21px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    border: 1.5px solid rgba(30, 86, 241, 0.14);
    transition: background 0.25s var(--ease), border-color 0.25s, transform 0.25s var(--spring), box-shadow 0.25s;
    white-space: nowrap;
    min-height: var(--touch-min);
}

.btn-hero-secondary:hover {
    background: var(--soft);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
    color: var(--dark);
}

.btn-hero-secondary:active { transform: scale(0.97); }

/* Slide Visual */
.slide-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) { .slide-visual { order: 2; } }

.slide-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.slide-img {
    width: 100%;
    max-width: clamp(240px, 52vw, 420px);
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 22px 52px rgba(30, 86, 241, 0.2));
    animation: heroImgFloat 6.5s ease-in-out infinite;
    object-fit: contain;
    transition: filter 0.35s;
}

.slide-img-glow {
    position: absolute;
    inset: 14%;
    background: radial-gradient(circle, var(--blue-glow), transparent 70%);
    filter: blur(38px);
    z-index: -1;
    border-radius: 50%;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes heroImgFloat {
    0%, 100% { transform: translateY(0) rotate3d(1, 0, 0, 0deg); }
    50%       { transform: translateY(-16px) rotate3d(1, 0, 0, 1.5deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.1); }
}

/* Slide Dots */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.slide-dot {
    width: 10px;
    height: 10px;
    background: rgba(30, 86, 241, 0.16);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: width 0.38s var(--ease), background 0.3s var(--ease);
    min-width: var(--touch-min);
    min-height: 24px;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.slide-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: rgba(30, 86, 241, 0.16);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.38s var(--ease), background 0.3s;
}

.dot-active::after {
    width: 30px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--slate-lt);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    z-index: 5;
    pointer-events: none;
}

.scroll-wheel {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(30, 86, 241, 0.25);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--blue);
    border-radius: 3px;
    animation: scrollWheelAnim 1.9s ease-in-out infinite;
}

@keyframes scrollWheelAnim {
    0%   { top: 5px; opacity: 1; }
    100% { top: 17px; opacity: 0; }
}

@media (max-width: 480px) { .scroll-hint { display: none; } }

/* ════════════════════════════════════════════════════════════
   7. TRUST SIGNALS BAR
════════════════════════════════════════════════════════════ */
.trust-section {
    background: white;
    border-top: 1px solid rgba(30, 86, 241, 0.06);
    border-bottom: 1px solid rgba(30, 86, 241, 0.06);
    padding: 20px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

@media (min-width: 480px)  { .trust-grid { padding: 0 1.25rem; } }
@media (min-width: 640px)  { .trust-grid { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .trust-grid { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .trust-grid { padding: 0 3rem; } }

.trust-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 14px;
    border-radius: var(--radius-md);
    background: var(--soft);
    transition: border-color 0.25s var(--ease), background 0.25s, box-shadow 0.3s, transform 0.28s var(--spring);
    border: 1px solid transparent;
    cursor: default;
}

.trust-item:hover {
    border-color: rgba(30, 86, 241, 0.13);
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s var(--spring);
}

.trust-item:hover .trust-icon { transform: scale(1.1) rotate(-5deg); }

.trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
}

.trust-text span {
    font-size: 11px;
    color: var(--slate);
    font-weight: 500;
}

@media (max-width: 359px) {
    .trust-item { flex-direction: column; text-align: center; gap: 7px; padding: 11px 10px; }
}

/* ════════════════════════════════════════════════════════════
   8. SECTION HELPERS
════════════════════════════════════════════════════════════ */
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-head.light { color: white; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(30, 86, 241, 0.07);
    border: 1px solid rgba(30, 86, 241, 0.14);
    padding: 7px 15px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    transition: background 0.25s, box-shadow 0.25s;
}

.section-eyebrow:hover { background: rgba(30, 86, 241, 0.12); box-shadow: 0 4px 12px rgba(30,86,241,0.1); }
.section-eyebrow.cyan   { color: var(--cyan); background: rgba(0, 212, 255, 0.07); border-color: rgba(0, 212, 255, 0.2); }
.section-eyebrow.purple { color: var(--purple); background: rgba(124, 58, 237, 0.07); border-color: rgba(124, 58, 237, 0.2); }

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.7rem, 4.8vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 0.9rem;
}

.section-title span          { color: var(--blue); }
.section-title .cyan-text    { color: var(--cyan); }
.section-title .purple-text  { color: var(--purple); }
.section-title.white         { color: white; }
.section-title.white span    { color: var(--cyan); }

.section-sub {
    font-size: clamp(13.5px, 2.4vw, 15.5px);
    color: var(--slate);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.section-sub.light { color: rgba(255, 255, 255, 0.55); }

/* Shared container padding */
.container,
.services-section > *:not(.services-section::before):not(.services-section::after),
.academy-section > * {
    max-width: var(--max-width);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

@media (min-width: 480px)  { .section-container { padding: 0 1.25rem; } }
@media (min-width: 640px)  { .section-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .section-container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .section-container { padding: 0 3rem; } }

/* ════════════════════════════════════════════════════════════
   9. SERVICES SECTION
════════════════════════════════════════════════════════════ */
.services-section {
    padding: 88px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -160px; right: -160px;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(30,86,241,0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: bgOrbDrift 14s ease-in-out infinite;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -110px; left: -110px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: bgOrbDrift 18s ease-in-out infinite reverse;
}

@keyframes bgOrbDrift {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(30px, -30px); }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 540px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* Service Card */
.service-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--soft);
    border: 1.5px solid rgba(30, 86, 241, 0.07);
    cursor: pointer;
    transition:
        border-color 0.35s var(--ease),
        background 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        transform 0.35s var(--spring);
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2.1rem 1.9rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,86,241,0.025), rgba(0,212,255,0.025));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    border-radius: inherit;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: width 0.45s var(--ease);
    border-radius: 0 3px 0 var(--radius-lg);
}

.service-card:hover {
    border-color: rgba(30, 86, 241, 0.16);
    background: white;
    box-shadow: 0 18px 52px rgba(30, 86, 241, 0.1);
    transform: translateY(-7px);
}

.service-card:active { transform: translateY(-3px) scale(0.99); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { width: 100%; }

.sc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.3rem;
}

.sc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(30,86,241,0.09), rgba(0,212,255,0.09));
    border: 1.5px solid rgba(30, 86, 241, 0.11);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blue);
    transition: background 0.35s var(--spring), color 0.3s, transform 0.35s var(--spring), box-shadow 0.35s, border-color 0.3s;
    flex-shrink: 0;
}

.service-card:hover .sc-icon {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 22px rgba(30,86,241,0.3);
    border-color: transparent;
}

.sc-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.7rem);
    font-weight: 800;
    color: rgba(30, 86, 241, 0.055);
    line-height: 1;
    transition: color 0.3s;
    user-select: none;
}

.service-card:hover .sc-num { color: rgba(30, 86, 241, 0.09); }

.sc-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.sc-desc {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 1.1rem;
    line-height: 1.65;
}

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(30, 86, 241, 0.055);
}

.sc-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--slate);
    transition: color 0.22s;
}

.service-card:hover .sc-features li { color: var(--dark); }

.sc-features li i {
    width: 16px;
    height: 16px;
    background: var(--green-lt);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8.5px;
    flex-shrink: 0;
    transition: transform 0.3s var(--spring);
}

.service-card:hover .sc-features li i { transform: scale(1.15); }

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.sc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
}

.sc-cta {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s var(--ease), gap 0.3s var(--ease);
    white-space: nowrap;
}

.service-card:hover .sc-cta { color: var(--blue); gap: 9px; }

/* ════════════════════════════════════════════════════════════
   10. DIGITAL STORE SECTION
════════════════════════════════════════════════════════════ */
.store-section {
    padding: 88px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: var(--radius-xl);
}

@media (max-width: 640px) {
    .store-section {
        border-radius: var(--radius-lg);
        margin: 1rem 0;
        padding: 68px 0;
    }
}

@media (max-width: 480px) {
    .store-section {
        border-radius: var(--radius-md);
        margin: 0.75rem 0;
        padding: 56px 0;
    }
}

.store-bg-shape {
    position: absolute;
    top: -180px; right: -180px;
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(0,212,255,0.055) 0%, transparent 65%);
    pointer-events: none;
    animation: bgOrbDrift 16s ease-in-out infinite;
}

.store-bg-shape-2 {
    position: absolute;
    bottom: -190px; left: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 65%);
    pointer-events: none;
    animation: bgOrbDrift 20s ease-in-out infinite reverse;
}

/* Animated noise overlay */
.store-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
}

.store-section .section-head { margin-bottom: 3rem; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 460px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* Product Card */
.product-card {
    background: rgba(255, 255, 255, 0.038);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color 0.35s var(--ease),
        background 0.35s var(--ease),
        transform 0.35s var(--spring),
        box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(0, 212, 255, 0.26);
    background: rgba(255, 255, 255, 0.065);
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0,212,255,0.12);
}

.product-card:active { transform: translateY(-4px) scale(0.99); }

.pc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 460px) { .pc-img-wrap { height: 185px; } }
@media (min-width: 1024px) { .pc-img-wrap { height: 210px; } }

.pc-badge {
    position: absolute;
    top: 11px; left: 11px;
    background: var(--accent);
    color: white;
    font-size: 10.5px;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: var(--radius-xs);
    z-index: 3;
    letter-spacing: 0.04em;
}

.pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.product-card:hover .pc-img { transform: scale(1.08); }

.pc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 2;
}

.product-card:hover .pc-overlay { opacity: 1; }

.pc-quick-view {
    display: flex;
    align-items: center;
    gap: 7px;
    background: white;
    color: var(--dark);
    border: none;
    padding: 10px 19px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(14px);
    transition: transform 0.32s var(--spring), background 0.22s;
    white-space: nowrap;
    min-height: var(--touch-min);
}

.product-card:hover .pc-quick-view { transform: translateY(0); }
.pc-quick-view:hover { background: var(--cyan); color: var(--dark); }

.pc-body {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pc-name {
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.85rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 39px;
}

.pc-pricing {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.pc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.pc-old {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: line-through;
}

.pc-buy {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.28s var(--spring), box-shadow 0.3s var(--ease), color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    white-space: nowrap;
    min-height: var(--touch-min);
    position: relative;
    overflow: hidden;
}

.pc-buy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.pc-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(30, 86, 241, 0.42);
    color: var(--dark);
}

.pc-buy:hover::before { opacity: 1; }
.pc-buy > * { position: relative; z-index: 1; }
.pc-buy:active { transform: scale(0.97); }

/* ════════════════════════════════════════════════════════════
   11. ACADEMY SECTION
════════════════════════════════════════════════════════════ */
.academy-section {
    padding: 88px 0;
    background: var(--soft);
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    bottom: -90px; left: -90px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.055) 0%, transparent 70%);
    pointer-events: none;
    animation: bgOrbDrift 15s ease-in-out infinite;
}

.academy-section::after {
    content: '';
    position: absolute;
    top: -70px; right: -70px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(30, 86, 241, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: bgOrbDrift 19s ease-in-out infinite reverse;
}

/* Academy Tabs */
.academy-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin: 0 auto 2.75rem;
    border: 1px solid rgba(30, 86, 241, 0.07);
    flex-wrap: wrap;
}

.academy-tab {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 800;
    color: var(--slate);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.22s var(--ease), background 0.22s, box-shadow 0.22s, transform 0.2s var(--spring);
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    min-height: var(--touch-min);
}

.academy-tab:hover  { color: var(--purple); }
.academy-tab:active { transform: scale(0.96); }

.tab-active {
    background: linear-gradient(135deg, var(--purple), var(--purple-lt)) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 540px)  { .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .courses-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* Course Card */
.course-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid rgba(124, 58, 237, 0.07);
    cursor: pointer;
    transition:
        transform 0.35s var(--spring),
        box-shadow 0.35s var(--ease),
        border-color 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 26px 54px rgba(124, 58, 237, 0.14);
    border-color: rgba(124, 58, 237, 0.2);
}

.course-card:active { transform: translateY(-4px) scale(0.99); }

.cc-img-wrap {
    position: relative;
    height: 196px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 540px) { .cc-img-wrap { height: 180px; } }

.cc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

.course-card:hover .cc-img { transform: scale(1.07); }

.cc-level {
    position: absolute;
    top: 11px; left: 11px;
    background: rgba(8, 13, 26, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-xs);
}

.cc-type-badge {
    position: absolute;
    top: 11px; right: 11px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-xs);
}

.cc-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cc-name {
    font-family: 'Syne', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.45rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.cc-desc {
    font-size: 12px;
    color: var(--slate);
    margin-bottom: 1.15rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.cc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(124, 58, 237, 0.07);
    padding-top: 0.9rem;
    margin-top: auto;
    gap: 8px;
}

.cc-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple);
    white-space: nowrap;
}

.cc-enroll {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.28s var(--ease), opacity 0.22s;
    white-space: nowrap;
}

.course-card:hover .cc-enroll { gap: 9px; }

/* ════════════════════════════════════════════════════════════
   12. DREAM'S COMPUTER HUB
════════════════════════════════════════════════════════════ */
.hub-section {
    padding: 76px 0;
}

.hub-card {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.045);
}

@media (max-width: 640px) { .hub-card { border-radius: var(--radius-lg); } }
@media (max-width: 480px) { .hub-card { border-radius: var(--radius-md); } }

.hub-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.028) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
}

.hub-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hub-glow-1 {
    width: 480px; height: 480px;
    background: rgba(30, 86, 241, 0.1);
    top: -140px; left: -90px;
    animation: orbFloat 14s ease-in-out infinite;
}

.hub-glow-2 {
    width: 380px; height: 380px;
    background: rgba(0, 212, 255, 0.065);
    bottom: -90px; right: -70px;
    animation: orbFloat 18s ease-in-out infinite reverse;
}

.hub-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 2.25rem 1.5rem;
    align-items: center;
}

@media (min-width: 640px)  { .hub-inner { padding: 2.75rem 2.25rem; gap: 2.5rem; } }
@media (min-width: 768px)  { .hub-inner { padding: 3.25rem 2.75rem; gap: 2.75rem; } }

@media (min-width: 1024px) {
    .hub-inner {
        grid-template-columns: 1fr 1fr;
        padding: 4.5rem 3.75rem;
        gap: 4.5rem;
    }
}

.hub-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.09);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 7px 15px;
    border-radius: 50px;
    margin-bottom: 1.35rem;
}

.hub-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.1rem;
}

.hub-desc {
    font-size: clamp(13.5px, 2.4vw, 15.5px);
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.8;
    margin-bottom: 1.85rem;
    max-width: 480px;
}

.hub-features {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 2rem;
}

.hub-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.66);
    transition: color 0.22s, transform 0.22s var(--spring);
}

.hub-features li:hover { color: rgba(255,255,255,0.9); transform: translateX(4px); }

.hub-features li i {
    color: var(--cyan);
    font-size: 13.5px;
    flex-shrink: 0;
    width: 18px;
}

.hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-hub-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--dark);
    padding: 13px 24px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 800;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
    box-shadow: 0 8px 28px rgba(0, 212, 255, 0.34);
    white-space: nowrap;
    min-height: var(--touch-min);
}

.btn-hub-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.5);
    color: var(--dark);
}

.btn-hub-primary:active { transform: scale(0.97); }

.btn-hub-secondary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.075);
    color: white;
    padding: 13px 21px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s var(--ease), transform 0.25s var(--spring);
    white-space: nowrap;
    min-height: var(--touch-min);
}

.btn-hub-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    color: white;
}

.btn-hub-secondary:active { transform: scale(0.97); }

/* Hub Visual */
.hub-visual {
    position: relative;
}

.hub-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2.5px solid rgba(255, 255, 255, 0.055);
    box-shadow: 0 36px 76px rgba(0, 0, 0, 0.52);
    position: relative;
    z-index: 1;
}

.hub-img {
    width: 100%;
    height: clamp(260px, 50vw, 420px);
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.hub-img-wrap:hover .hub-img { transform: scale(1.03); }

.hub-info-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.13);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 2;
}

.hub-badge-1 { bottom: -16px; left: -16px; }
.hub-badge-2 { top: 16px; right: -16px; }

@media (max-width: 640px) {
    .hub-badge-1 { bottom: 10px; left: 10px; }
    .hub-badge-2 { top: 10px; right: 10px; }
}

@media (max-width: 480px) {
    .hub-badge-1, .hub-badge-2 { display: none; }
}

.hub-info-badge strong {
    color: white;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
    display: block;
}

.hub-info-badge span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10.5px;
    font-weight: 600;
}

.animate-float {
    animation: badgeFloat 5.5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════
   13. FOOTER
════════════════════════════════════════════════════════════ */
.ht-footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    padding: 68px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--container-px);
}

@media (min-width: 480px)  { .footer-grid { padding: 0 1.25rem; } }
@media (min-width: 560px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; padding: 0 2.5rem; margin-bottom: 2.5rem; } }
@media (min-width: 1280px) { .footer-grid { padding: 0 3rem; } }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 1.1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 2px solid rgba(30, 86, 241, 0.2);
    flex-shrink: 0;
}

.footer-logo span {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: -0.03em;
}

.footer-logo span b { color: var(--blue-light); font-weight: 800; }

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.36);
    line-height: 1.8;
    margin-bottom: 1.4rem;
    max-width: 290px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    transition: background 0.25s var(--ease), border-color 0.25s, color 0.22s, transform 0.25s var(--spring);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.footer-social a:active { transform: scale(0.93); }

.footer-links h4,
.footer-contact h4 {
    font-family: 'Syne', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.86);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.36);
    font-weight: 500;
    transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
}

.footer-links li a::before {
    content: '→';
    font-size: 10.5px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: var(--blue-light);
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.36);
    font-weight: 500;
    line-height: 1.55;
}

.footer-contact li i {
    width: 19px;
    color: var(--cyan);
    font-size: 12.5px;
    flex-shrink: 0;
    text-align: center;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.045);
    padding-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.65rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

@media (min-width: 480px)  { .footer-bottom { padding-left: 1.25rem; padding-right: 1.25rem; } }
@media (min-width: 640px)  { .footer-bottom { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .footer-bottom { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (min-width: 1280px) { .footer-bottom { padding-left: 3rem; padding-right: 3rem; } }

.footer-bottom p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.26);
    font-weight: 500;
}

.footer-bottom strong { color: rgba(255, 255, 255, 0.46); }

/* ════════════════════════════════════════════════════════════
   14. MODAL — SERVICE/PRODUCT DETAILS PAGE
════════════════════════════════════════════════════════════ */
.ht-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 6000;
    background: rgba(8, 13, 26, 0.86);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overscroll-behavior: contain;
    animation: overlayFadeIn 0.25s var(--ease) forwards;
}

@media (min-width: 640px) {
    .ht-modal-overlay { align-items: center; padding: 1rem; }
}

@media (min-width: 768px) {
    .ht-modal-overlay { padding: 1.5rem; }
}

.ht-modal {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.065);
    max-height: 92vh;
    max-height: 92dvh;
    animation: modalSlideUp 0.4s var(--spring) forwards;
}

@media (min-width: 640px) {
    .ht-modal {
        border-radius: var(--radius-lg);
        max-height: 88vh;
        max-height: 88dvh;
        animation: modalScaleIn 0.38s var(--spring) forwards;
    }
}

@media (min-width: 768px) {
    .ht-modal {
        flex-direction: row;
        max-height: 85vh;
        max-height: 85dvh;
    }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.94) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.14);
    border: 1.5px solid rgba(255, 51, 102, 0.45);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: background 0.25s var(--ease), transform 0.28s var(--spring), border-color 0.22s;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg) scale(1.12);
    color: white;
}

.modal-close:active { transform: rotate(90deg) scale(0.95); }

/* Modal Left Panel */
.modal-left {
    background: linear-gradient(160deg, var(--purple) 0%, #3B0E8C 100%);
    padding: 40px 1.2rem 1.2rem; /* Reduced top/bottom padding */
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    min-height: auto; /* Remove or reduce fixed min-height */
}

@media (min-width: 768px) {
    .modal-left {
        width: 40%;
        padding: 2.4rem 1.9rem;
        min-height: unset;
    }
}

.modal-left::before {
    content: '';
    position: absolute;
    top: -65px; right: -65px;
    width: 200px; height: 200px;
    background: rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 10s ease-in-out infinite;
}

.modal-left::after {
    content: '';
    position: absolute;
    bottom: -45px; left: -45px;
    width: 165px; height: 165px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 13s ease-in-out infinite reverse;
}

.modal-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.14);
    transition: transform 0.3s var(--spring), background 0.25s;
}

.modal-icon:hover { transform: scale(1.08) rotate(-5deg); background: rgba(255,255,255,0.2); }

.modal-type {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.modal-item-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.modal-price-box {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-sm);
    padding: 6px 10px;         /* ← Reduced padding */
    width: auto;               /* ← No longer full width */
    display: inline-block;     /* ← Shrinks to content */
    margin-bottom: 1rem;       /* ← Less spacing below */
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-price-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;         /* ← Fixed smaller size */
    font-weight: 800;
    color: white;
    line-height: 1;
}

.modal-price-label {
    font-size: 8px;            /* ← Slightly smaller label too */
    margin-bottom: 3px;
}

.modal-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: rgba(255, 255, 255, 0.11);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 13.5px;
    font-weight: 800;
    transition: background 0.28s var(--ease), border-color 0.28s, transform 0.25s var(--spring), box-shadow 0.28s;
    position: relative;
    z-index: 1;
    margin-top: auto;
    cursor: pointer;
    text-decoration: none;
    min-height: var(--touch-min);
}

.modal-order-btn:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 22px rgba(37,211,102,0.35);
}

.modal-order-btn:active { transform: scale(0.97); }

/* Modal Right Panel */
.modal-right {
    background: white;
    padding: 1.4rem 1.15rem;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--purple) transparent;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .modal-right { padding: 2.4rem 1.9rem; }
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.3rem;
}

.modal-section-title span {
    display: block;
    width: 4px;
    height: 21px;
    background: linear-gradient(180deg, var(--purple), var(--purple-lt));
    border-radius: 3px;
    flex-shrink: 0;
}

/* Outline Items */
.modal-outline {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 1.65rem;
}

.modal-outline-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: var(--soft);
    border: 1px solid rgba(124, 58, 237, 0.07);
    border-radius: var(--radius-sm);
    padding: 11px 13px;
    transition: background 0.22s var(--ease), border-color 0.22s, transform 0.22s var(--spring);
}

.modal-outline-item:hover {
    background: var(--purple-xlt);
    border-color: rgba(124, 58, 237, 0.16);
    transform: translateX(3px);
}

.outline-num {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.modal-outline-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.55;
}

/* Description Block */
.modal-desc-text {
    background: var(--soft);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(30, 86, 241, 0.055);
}

.modal-desc-text p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.82;
}

/* Feature List */
.modal-feature-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 1.4rem;
}

.modal-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    padding: 9px 11px;
    border-radius: var(--radius-xs);
    background: var(--soft);
    border: 1px solid rgba(16, 185, 129, 0.07);
    transition: background 0.22s var(--ease), transform 0.2s var(--spring);
}

.modal-feature-item:hover { background: var(--green-lt); transform: translateX(3px); }

.modal-feature-item i {
    color: var(--green);
    font-size: 14.5px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 9px;
    margin-top: 1.4rem;
    align-items: center;
}

.modal-btn-primary {
    flex: 1;
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    color: white;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease), filter 0.25s;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
    display: block;
    min-height: var(--touch-min);
}

.modal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(124, 58, 237, 0.42);
    color: white;
    filter: brightness(1.05);
}

.modal-btn-primary:active { transform: scale(0.97); }

.modal-btn-secondary {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    border-radius: var(--radius-sm);
    color: var(--slate);
    font-size: 16px;
    transition: background 0.22s var(--ease), color 0.22s, border-color 0.22s, transform 0.2s var(--spring);
    flex-shrink: 0;
    border: 1px solid rgba(30,86,241,0.07);
    min-height: var(--touch-min);
}

.modal-btn-secondary:hover {
    background: var(--blue-xlight);
    color: var(--blue);
    border-color: rgba(30,86,241,0.18);
}

.modal-btn-secondary:active { transform: scale(0.9); }

/* ════════════════════════════════════════════════════════════
   15. FLOATING WHATSAPP
════════════════════════════════════════════════════════════ */
.fab-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 1500;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.44);
    transition: transform 0.32s var(--spring), box-shadow 0.3s var(--ease);
}

.fab-whatsapp:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
    color: white;
}

.fab-whatsapp:active { transform: scale(0.95); }

.fab-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: fabPulse 2.6s ease-out infinite;
    z-index: -1;
}

@keyframes fabPulse {
    0%   { transform: scale(1); opacity: 0.65; }
    100% { transform: scale(1.9); opacity: 0; }
}

.fab-tooltip {
    position: absolute;
    right: 66px;
    background: var(--dark);
    color: white;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: var(--radius-xs);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark);
}

.fab-whatsapp:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 480px) {
    .fab-whatsapp { bottom: 16px; right: 14px; width: 50px; height: 50px; font-size: 21px; }
    .fab-tooltip  { display: none; }
}

/* ════════════════════════════════════════════════════════════
   16. SCROLL-TRIGGERED REVEAL ANIMATIONS
════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children reveal */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.stagger-children.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.stagger-children.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.stagger-children.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.stagger-children.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

/* ════════════════════════════════════════════════════════════
   17. UTILITY CLASSES
════════════════════════════════════════════════════════════ */
body.modal-open   { overflow: hidden; }
body.drawer-lock  { overflow: hidden; touch-action: none; }

.text-gradient {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-text { color: var(--purple); }
.cyan-text   { color: var(--cyan); }
.blue-text   { color: var(--blue); }

/* Shimmer loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--soft-2) 25%, var(--soft) 50%, var(--soft-2) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-xs);
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* Pulse dot indicator */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green);
    animation: fabPulse 2s ease-out infinite;
}

/* ════════════════════════════════════════════════════════════
   18. RESPONSIVE — 320px to 479px (Extra Small)
════════════════════════════════════════════════════════════ */
@media (max-width: 479px) {

    :root {
        --nav-height: 62px;
        --announce-height: 32px;
    }

    .hero-section {
        padding: calc(var(--total-offset) + 26px) 1rem 58px;
        min-height: 100svh;
    }

    .slide-title    { font-size: 1.75rem; line-height: 1.1; }
    .slide-desc     { font-size: 13.5px; }
    .slide-img      { max-width: 82vw; }

    .btn-hero-primary   { padding: 12px 20px; font-size: 13.5px; }
    .btn-hero-secondary { padding: 11px 17px; font-size: 12.5px; }

    .trust-item { padding: 11px 12px; gap: 9px; }
    .trust-icon { width: 36px; height: 36px; font-size: 15px; }
    .trust-text strong { font-size: 12px; }
    .trust-text span   { font-size: 10.5px; }

    .section-title { font-size: 1.65rem; }
    .services-section,
    .academy-section { padding: 64px 0; }

    .service-card { padding: 1.4rem 1.2rem; }
    .sc-icon  { width: 48px; height: 48px; font-size: 18px; }
    .sc-title { font-size: 1rem; }
    .sc-num   { font-size: 1.9rem; }

    .pc-img-wrap  { height: 175px; }
    .pc-price     { font-size: 1.3rem; }
    .pc-body      { padding: 1.1rem; }

    .cc-img-wrap  { height: 168px; }
    .cc-body      { padding: 1.1rem; }

    .hub-section  { padding: 56px 0; }
    .hub-inner    { padding: 1.75rem 1.1rem; gap: 1.75rem; }
    .hub-title    { font-size: 1.9rem; }

    .academy-tabs { gap: 4px; }
    .academy-tab  { padding: 9px 14px; font-size: 12.5px; }

    .ht-footer    { padding: 50px 0 26px; }
    .footer-about { max-width: 100%; }
    .footer-grid  { gap: 1.75rem; }

    .ht-modal-overlay { padding: 0; }
    .ht-modal {
        max-height: 90dvh;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .modal-left  { padding: 35px 1rem 1rem; }
    .min-height  { auto; }
    .modal-right { padding: 1rem 0.8rem; }
    .modal-order-btn { padding: 10px;  font-size: 12.5px; }
    .modal-section-title { font-size: 14px; margin-bottom: 1rem; }
    .modal-desc-text { padding: 0.8rem; margin-bottom: 1rem; }
    .modal-desc-text p { font-size: 13px; }
    .modal-feature-item { padding: 7px 9px; font-size: 12px; }
    .modal-icon  { width: 48px; height: 48px; font-size: 19px; }
    .modal-item-title  { font-size: 1.2rem; }
    .modal-price-value { font-size: 1.4rem; }
    .modal-btn-primary { font-size: 13px; padding: 13px; }
}

/* ════════════════════════════════════════════════════════════
   19. RESPONSIVE — 480px to 639px (Small)
════════════════════════════════════════════════════════════ */
@media (min-width: 480px) and (max-width: 639px) {
    .slide-title  { font-size: 2.2rem; }
    .section-title{ font-size: 1.95rem; }

    .service-card { padding: 1.6rem 1.4rem; }

    .ht-modal {
        max-height: 92dvh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

/* ════════════════════════════════════════════════════════════
   20. RESPONSIVE — 640px to 767px (Medium Small)
════════════════════════════════════════════════════════════ */
@media (min-width: 640px) and (max-width: 767px) {
    .slide-title  { font-size: 2.5rem; }
    .section-title{ font-size: 2.1rem; }

    .ht-modal {
        max-height: 90dvh;
        border-radius: var(--radius-lg);
    }
}

/* ════════════════════════════════════════════════════════════
   21. RESPONSIVE — 768px to 1023px (Tablet)
════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {

    .ht-modal {
        flex-direction: row;
        max-height: 88dvh;
        border-radius: var(--radius-lg);
    }

    .modal-left { width: 38%; }

    .hub-inner { padding: 2.75rem 2.25rem; }

    .hub-badge-1 { bottom: 10px; left: 10px; }
    .hub-badge-2 { top: 10px; right: 10px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .courses-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   22. RESPONSIVE — 1024px+ (Desktop)
════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

    .services-section,
    .academy-section { padding: 100px 0; }

    .hub-section { padding: 88px 0; }

    .hub-badge-1 { bottom: -16px; left: -16px; }
    .hub-badge-2 { top: 16px; right: -16px; }

    .slide-title { font-size: clamp(2.75rem, 3.8vw, 4.5rem); }

    /* Better grid hover effects on desktop */
    .service-card:hover { transform: translateY(-8px) rotateX(1.5deg); }
    .course-card:hover  { transform: translateY(-9px); }
    .product-card:hover { transform: translateY(-10px); }
}

/* ════════════════════════════════════════════════════════════
   23. RESPONSIVE — 1280px+ (Large Desktop)
════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .courses-grid  { grid-template-columns: repeat(4, 1fr); }

    .hero-section  { padding: calc(var(--total-offset) + 42px) 3rem 80px; }
}

/* ════════════════════════════════════════════════════════════
   24. PERFORMANCE & ACCESSIBILITY
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration:       0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration:      0.01ms !important;
    }
    .marquee-track { animation: none; }
    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger-children > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .product-card:hover,
    .course-card:hover {
        transform: none;
        box-shadow: none;
    }

    .service-card:active  { transform: scale(0.98); }
    .product-card:active  { transform: translateY(-4px); }
    .course-card:active   { transform: translateY(-4px); }

    .nav-lnk::after       { display: none; }

    /* Increase touch targets */
    .footer-social a      { width: 44px; height: 44px; }
    .footer-links li a    { min-height: 40px; display: flex; align-items: center; }
}

/* Print */
@media print {
    .announcement-bar,
    .ht-nav,
    .mobile-drawer,
    .drawer-overlay,
    .fab-whatsapp,
    .ht-modal-overlay,
    .scroll-hint,
    .orb,
    .hero-grid-bg { display: none !important; }
    body { background: white !important; color: black !important; }
    .hero-section { padding-top: 1rem !important; min-height: auto; }
}

/* High Contrast Mode */
@media (forced-colors: active) {
    .service-card,
    .product-card,
    .course-card      { border: 2px solid ButtonText; }
    .nav-cta,
    .btn-hero-primary,
    .pc-buy,
    .modal-btn-primary,
    .btn-hub-primary  { forced-color-adjust: none; }
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

@media (min-width: 480px)  { .container { padding: 0 1.25rem; } }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 3rem; } }