:root {
    --turquoise-50: #DAEEF3;
    --turquoise-100: #B7DEE8;
    --turquoise-200: #92CDDC;
    --turquoise-400: #31869B;
    --turquoise-600: #31869B;
    --turquoise-700: #215967;
    --turquoise-800: #1a4550;
    --turquoise-900: #1a4550;
    
    --coral: #D07876;
    --cream: #FFF2D1;
    
    
    --neon-violet: #9B7CFF;
    --neon-pink: #FF6FB1;
    --neon-cyan: #3EF2D0;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1a1a1a;
    --gray-900: #1c1c20;
    
    --font-display: 'Rubik', sans-serif;
    --font-body: 'Heebo', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 60%, #ffffff 100%);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ========== LIGHT NAVIGATION ========== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 74px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gray-800);
    flex-shrink: 0;
}

.mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--turquoise-400), var(--turquoise-700));
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.brand .name {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.05;
    font-size: 21px;
    color: var(--gray-800);
    flex-shrink: 0;
}

.brand .name .plus { color: var(--turquoise-600); }
.brand .tagline { font-size: 12.5px; margin-top: 2px; font-weight: 500; font-family: 'Rubik', sans-serif; letter-spacing: 0.5px; } .tg-dark { color: var(--gray-800); } .tg-turq { color: var(--turquoise-600); }

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--turquoise-600);
    background: var(--turquoise-50);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    border-color: var(--turquoise-200);
    background: var(--turquoise-50);
}

.btn-nav.primary {
    background: var(--turquoise-600);
    color: white;
    border-color: var(--turquoise-600);
}

.btn-nav.primary:hover {
    background: var(--turquoise-700);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100%; background: white; z-index: 1000; padding: 80px 24px 24px; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); overflow-y: auto; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { display: block; padding: 14px 0; color: var(--gray-700); text-decoration: none; font-weight: 500; font-size: 16px; border-bottom: 1px solid var(--gray-100); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--turquoise-600); }
.mobile-menu .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .mobile-cta a { text-align: center; padding: 12px; border-radius: 8px; border-bottom: none; }
.mobile-menu .mobile-cta a.primary { background: var(--turquoise-600); color: white; }
.mobile-menu-close { position: absolute; top: 20px; left: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-600); }

/* ========== HERO SECTION — FUTURISTIC ========== */
.hero {
    position: relative;
    padding: clamp(40px, 7vw, 90px) 0 44px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(49,134,155,0.12), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(146,205,220,0.18), transparent 50%),
        radial-gradient(ellipse 90% 60% at 50% 110%, rgba(33,89,103,0.06), transparent 50%);
    z-index: -2;
}

/* Animated grid background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(49,134,155,0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49,134,155,0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black, transparent);
    animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(18px, 4vw, 52px);
    align-items: center;
}

/* Hero text entrance animations */
.hero-text-col { position: relative; }
.hero-text-col h1     { opacity:0; transform:translateY(22px); animation: heroUp .7s ease-out .15s forwards; }
.hero-text-col .lead   { opacity:0; transform:translateY(22px); animation: heroUp .7s ease-out .35s forwards; }
.hero-text-col .hero-actions { opacity:0; transform:translateY(22px); animation: heroUp .7s ease-out .5s forwards; }
.hero-text-col .trust  { opacity:0; transform:translateY(22px); animation: heroUp .7s ease-out .65s forwards; }
@keyframes heroUp { to { opacity:1; transform:translateY(0); } }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.08;
    margin: 14px 0 10px;
    letter-spacing: 0.2px;
}

.accent {
    background: linear-gradient(135deg, var(--turquoise-200), var(--turquoise-400), var(--turquoise-700));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lead {
    margin: 0 0 18px;
    color: var(--gray-700);
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.75;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid var(--turquoise-400);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--turquoise-400), var(--turquoise-700));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 40px rgba(33,89,103,0.22), 0 0 20px rgba(49,134,155,0.15);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(33,89,103,0.28), 0 0 30px rgba(49,134,155,0.25);
}

.btn-ghost {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    color: var(--turquoise-700);
    border-color: var(--turquoise-200);
}
.btn-ghost:hover {
    background: rgba(218,238,243,0.5);
    border-color: var(--turquoise-400);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--turquoise-600);
    border-color: var(--turquoise-400);
}
.btn-outline:hover {
    background: var(--turquoise-600);
    color: white;
}

.trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 13px;
}
.trust span {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(146,205,220,0.3);
    padding: 9px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(49,134,155,0.08);
    transition: all .3s ease;
}
.trust span:hover {
    border-color: var(--turquoise-400);
    box-shadow: 0 4px 20px rgba(49,134,155,0.15);
    transform: translateY(-1px);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.badge-item img {
    width: 100px; height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}
.badge-item:hover img { transform: translateY(-6px) scale(1.08); }
.badge-label {
    font-weight: 700; font-size: 0.9rem; color: white;
    font-family: var(--font-display);
}
.badge-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
    .badges-grid { gap: 1.5rem; }
    .badge-item img { width: 90px; }
    .badge-label { font-size: 0.78rem; }
    .badge-desc { font-size: 0.68rem; }
}

/* ========== HERO VISUAL — TRANSPARENT IMAGE ========== */
.visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    width: 115%;
    max-width: 580px;
    margin: -5% -7.5%;
}

.hero-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    filter: brightness(1.15) saturate(1.15);
    opacity: 0;
    animation: heroImgIn 1s ease-out .3s forwards;
    transition: transform .4s ease-out;
}

@keyframes heroImgIn {
    from { opacity: 0; transform: scale(.95) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ======= HERO UPGRADE: NEON FUTURISTIC (DARK) ======= */
.hero{
    background:
        radial-gradient(900px 500px at 30% 30%, rgba(49,134,155,0.22), transparent 55%),
        radial-gradient(800px 450px at 75% 60%, rgba(146,205,220,0.16), transparent 55%),
        linear-gradient(180deg, #050B16 0%, #060F1C 55%, #071226 100%);
    color: rgba(255,255,255,0.92);
}
.hero .lead{ color: rgba(255,255,255,0.78); }
.hero .brand, .hero h1{ color: rgba(255,255,255,0.95); }
.hero .trust{ color: rgba(255,255,255,0.72); }
.hero .trust span{
    background: rgba(255,255,255,0.06);
    border-color: rgba(146,205,220,0.22);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

/* Extra layers */
.hero-stars, .hero-aurora, .hero-noise{
    position:absolute; inset:0; pointer-events:none;
}
.hero-stars{
    z-index:-1;
    opacity:0.55;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.85) 50%, transparent 52%),
        radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.75) 50%, transparent 52%),
        radial-gradient(1px 1px at 55% 35%, rgba(255,255,255,0.65) 50%, transparent 52%),
        radial-gradient(1px 1px at 75% 15%, rgba(255,255,255,0.85) 50%, transparent 52%),
        radial-gradient(1px 1px at 88% 72%, rgba(255,255,255,0.75) 50%, transparent 52%),
        radial-gradient(1px 1px at 15% 55%, rgba(255,255,255,0.55) 50%, transparent 52%),
        radial-gradient(1px 1px at 42% 10%, rgba(255,255,255,0.55) 50%, transparent 52%);
    filter: drop-shadow(0 0 10px rgba(146,205,220,0.10));
}
.hero-aurora{
    z-index:-1;
    opacity:0.70;
    background:
        radial-gradient(700px 380px at 15% 40%, rgba(49,134,155,0.35), transparent 60%),
        radial-gradient(650px 420px at 85% 35%, rgba(146,205,220,0.28), transparent 62%),
        radial-gradient(650px 520px at 55% 85%, rgba(208,120,118,0.20), transparent 60%),
        radial-gradient(720px 420px at 65% 20%, rgba(155,124,255,0.22), transparent 62%),
        radial-gradient(720px 460px at 35% 70%, rgba(255,111,177,0.18), transparent 65%);
    filter: blur(20px) saturate(1.15);
    animation: auroraMove 12s ease-in-out infinite alternate;
}
@keyframes auroraMove{
    from{ transform: translateY(0) translateX(0) scale(1); }
    to  { transform: translateY(-14px) translateX(10px) scale(1.03); }
}
.hero-noise{
    z-index:-1;
    opacity:0.10;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0.06) 1px, transparent 1px, transparent 3px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 4px);
    mix-blend-mode: overlay;
}




/* ======= HERO ENHANCEMENTS v4 (KEEP DARK, MORE FUTURISTIC) ======= */
.hero::before{
    content:'';
    position:absolute;
    inset:-2px;
    pointer-events:none;
    z-index:-1;
    opacity:.22;
    background:
        radial-gradient(ellipse 70% 50% at 60% 35%, rgba(62,242,208,0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 30% 65%, rgba(155,124,255,0.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.02) 45%, rgba(255,255,255,0.00) 100%);
    mix-blend-mode: screen;
}
.hero::after{
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index:-1;
    opacity:.20;
    background:
        repeating-linear-gradient(0deg, rgba(146,205,220,0.10) 0px, rgba(146,205,220,0.10) 1px, transparent 1px, transparent 10px);
    mask-image: none;
    -webkit-mask-image: none;
    animation: scanDrift 9s ease-in-out infinite;
}
@keyframes scanDrift{
    0%,100%{ transform: translateY(0); opacity:.18; }
    50%{ transform: translateY(-10px); opacity:.24; }
}










/* ======= ORBIT RINGS (LASERS) — exact from orbits-demo ======= */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid transparent;
    box-shadow: 0 0 28px rgba(49,134,155,0.10);
}
.orbit-ring-1 {
    inset: 6%;
    border-color: rgba(146,205,220,0.25);
    border-top-color: rgba(49,134,155,0.6);
    border-right-color: rgba(49,134,155,0.4);
    animation: spin 14s linear infinite;
}
.orbit-ring-2 {
    inset: -1%;
    border-color: rgba(146,205,220,0.12);
    border-bottom-color: rgba(49,134,155,0.45);
    border-left-color: rgba(49,134,155,0.25);
    animation: spin 20s linear infinite reverse;
}
.orbit-ring-3 {
    inset: -8%;
    border-color: rgba(146,205,220,0.06);
    border-top-color: rgba(208,120,118,0.25);
    border-left-color: rgba(49,134,155,0.15);
    animation: spin 28s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Orbiting glowing dots */
.orb-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 4;
}
.orb-dot-1 {
    width: 10px; height: 10px;
    background: var(--turquoise-400);
    box-shadow: 0 0 14px rgba(49,134,155,0.8), 0 0 28px rgba(49,134,155,0.3);
    top: 6%; left: 48%;
    animation: spin 14s linear infinite;
    transform-origin: 2px 220px;
}
.orb-dot-2 {
    width: 7px; height: 7px;
    background: var(--coral);
    box-shadow: 0 0 12px rgba(208,120,118,0.7), 0 0 24px rgba(208,120,118,0.2);
    bottom: -1%; right: 48%;
    animation: spin 20s linear infinite reverse;
    transform-origin: 2px -200px;
}
.orb-dot-3 {
    width: 5px; height: 5px;
    background: var(--cream);
    box-shadow: 0 0 10px rgba(255,242,209,0.8);
    top: 25%; left: -6%;
    animation: spin 28s linear infinite;
    transform-origin: 280px 130px;
}

/* ======= IMAGE ALIVE EFFECTS ======= */
.hero-img-wrap {
    animation: imgFloat 6s ease-in-out 1.3s infinite;
}
@keyframes imgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Ambient glow behind image */
.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 10% 5%;
    border-radius: 30%;
    background:
        radial-gradient(ellipse at 40% 40%, rgba(49,134,155,0.25), transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(62,242,208,0.15), transparent 55%);
    filter: blur(30px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: .6; transform: scale(1); }
    50% { opacity: .9; transform: scale(1.04); }
}

/* Sparkle particles around image */
.hero-sparkle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: sparkleFloat var(--dur, 7s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(.4); }
    25% { opacity: .8; }
    50% { opacity: .4; transform: translateY(var(--ty, -50px)) scale(1); }
    75% { opacity: .7; }
}

/* Glint sweep across image */
.hero-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(146,205,220,0.08) 45%, rgba(255,255,255,0.12) 50%, rgba(146,205,220,0.08) 55%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    animation: glintSweep 8s ease-in-out 2s infinite;
}
@keyframes glintSweep {
    0%, 100% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 180%; opacity: 1; }
    60%, 100% { opacity: 0; }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
    .hero *{ animation: none !important; transition: none !important; }
    .hero-grid-bg{ animation: none !important; }
}


/* ========== WHY CLINIKA+ - LIGHT FUTURISTIC ========== */
.why-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f0f4f5 0%, #e8eef3 50%, #f0f4f5 100%);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.03);
    top: -200px; right: -200px;
    animation: spin 50s linear infinite;
}
.why-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.03);
    bottom: -150px; left: -100px;
    animation: spin 35s linear infinite reverse;
}

.why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.why-content h2 span { color: var(--turquoise-600); }

.why-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(49,134,155,0.12);
    box-shadow: 0 4px 20px rgba(49,134,155,0.06);
    transition: all 0.3s ease;
}
.stat-item:hover {
    border-color: var(--turquoise-400);
    box-shadow: 0 8px 30px rgba(49,134,155,0.15);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--turquoise-400), var(--turquoise-700), var(--turquoise-400));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statShimmer 3s ease-in-out infinite;
}
@keyframes statShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-top: 0.25rem;
}

.why-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-circle {
    position: relative;
    width: 380px;
    height: 380px;
}

.why-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--turquoise-400), var(--turquoise-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(49,134,155,0.35), 0 0 0 8px rgba(49,134,155,0.08);
    z-index: 2;
    animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(49,134,155,0.35), 0 0 0 8px rgba(49,134,155,0.08); }
    50% { box-shadow: 0 10px 50px rgba(49,134,155,0.45), 0 0 0 14px rgba(49,134,155,0.12); }
}
.why-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    color: white;
    line-height: 1;
}
.why-logo-plus { color: rgba(255,255,255,0.7); }

/* Orbit rings */
.why-circle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 280px; height: 280px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(49,134,155,0.28);
    z-index: 0;
    pointer-events: none;
    animation: dashSpin 30s linear infinite;
}
.why-circle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 340px; height: 340px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(49,134,155,0.18);
    z-index: 0;
    pointer-events: none;
    animation: dashSpin 45s linear infinite reverse;
}
@keyframes dashSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Extra orbit rings around why circle */
.why-orbit-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 480px; height: 480px;
    pointer-events: none;
}
.why-orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.why-orbit-ring:nth-child(1) {
    width: 420px; height: 420px;
    border: 1.5px solid rgba(49,134,155,0.16);
    animation: dashSpin 50s linear infinite;
}
/* Dots on orbit rings */
.why-orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--turquoise-400);
    box-shadow: 0 0 8px rgba(49,134,155,0.5);
}
.why-orbit-ring:nth-child(1) .why-orbit-dot:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.why-orbit-ring:nth-child(1) .why-orbit-dot:nth-child(2) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.why-orbit-ring:nth-child(1) .why-orbit-dot:nth-child(3) { top: 50%; left: 0; transform: translate(-50%, -50%); }
.why-orbit-ring:nth-child(1) .why-orbit-dot:nth-child(4) { top: 50%; right: 0; transform: translate(50%, -50%); }

.why-item {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49,134,155,0.15);
    box-shadow: 0 4px 20px rgba(49,134,155,0.08);
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: center;
    padding: 8px;
    top: 50%;
    left: 50%;
    cursor: pointer;
    z-index: 1;
    opacity: 1;
}

.why-item:hover {
    border-color: var(--turquoise-400);
    box-shadow: 0 8px 30px rgba(49,134,155,0.25), 0 0 0 4px rgba(49,134,155,0.08);
    z-index: 3;
    background: linear-gradient(135deg, #fff, #f0fafb);
}
.why-item:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(49,134,155,0.5));
}

.why-item i { color: var(--turquoise-600); margin-bottom: 4px; transition: all 0.3s ease; }
.why-item span { font-size: 10px; font-weight: 600; color: var(--gray-700); line-height: 1.2; }

/* Tooltip on hover */
.why-item::after {
    content: attr(data-tip);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: var(--gray-900);
    color: white;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}
.why-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.why-item:nth-child(1) { transform: translate(-50%, -50%) translate(0, -140px); }
.why-item:nth-child(2) { transform: translate(-50%, -50%) translate(99px, -99px); }
.why-item:nth-child(3) { transform: translate(-50%, -50%) translate(140px, 0); }
.why-item:nth-child(4) { transform: translate(-50%, -50%) translate(99px, 99px); }
.why-item:nth-child(5) { transform: translate(-50%, -50%) translate(0, 140px); }
.why-item:nth-child(6) { transform: translate(-50%, -50%) translate(-99px, 99px); }
.why-item:nth-child(7) { transform: translate(-50%, -50%) translate(-140px, 0); }
.why-item:nth-child(8) { transform: translate(-50%, -50%) translate(-99px, -99px); }

.why-item:nth-child(1):hover { transform: translate(-50%, -50%) translate(0, -140px) scale(1.1); }
.why-item:nth-child(2):hover { transform: translate(-50%, -50%) translate(99px, -99px) scale(1.1); }
.why-item:nth-child(3):hover { transform: translate(-50%, -50%) translate(140px, 0) scale(1.1); }
.why-item:nth-child(4):hover { transform: translate(-50%, -50%) translate(99px, 99px) scale(1.1); }
.why-item:nth-child(5):hover { transform: translate(-50%, -50%) translate(0, 140px) scale(1.1); }
.why-item:nth-child(6):hover { transform: translate(-50%, -50%) translate(-99px, 99px) scale(1.1); }
.why-item:nth-child(7):hover { transform: translate(-50%, -50%) translate(-140px, 0) scale(1.1); }
.why-item:nth-child(8):hover { transform: translate(-50%, -50%) translate(-99px, -99px) scale(1.1); }

/* ========== TOOLS SECTION - DARK HERO STYLE WITH LASERS ========== */
.tools {
    padding: 5rem 2rem;
    background:
        radial-gradient(900px 500px at 30% 30%, rgba(49,134,155,0.22), transparent 55%),
        radial-gradient(800px 450px at 75% 60%, rgba(146,205,220,0.16), transparent 55%),
        linear-gradient(180deg, #050B16 0%, #060F1C 55%, #071226 100%);
    position: relative;
    overflow: hidden;
}
/* Stars */
.tools-stars {
    position: absolute; inset: 0; pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    background:
        radial-gradient(1px 1px at 12% 25%, rgba(255,255,255,0.8) 50%, transparent 52%),
        radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,0.7) 50%, transparent 52%),
        radial-gradient(1px 1px at 58% 15%, rgba(255,255,255,0.6) 50%, transparent 52%),
        radial-gradient(1px 1px at 80% 55%, rgba(255,255,255,0.8) 50%, transparent 52%),
        radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.5) 50%, transparent 52%),
        radial-gradient(1px 1px at 22% 60%, rgba(255,255,255,0.5) 50%, transparent 52%);
}
/* Aurora glow */
.tools-aurora {
    position: absolute; inset: 0; pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    background:
        radial-gradient(600px 350px at 20% 40%, rgba(49,134,155,0.30), transparent 60%),
        radial-gradient(550px 380px at 80% 50%, rgba(146,205,220,0.22), transparent 62%);
    filter: blur(25px);
    animation: toolsAurora 10s ease-in-out infinite alternate;
}
@keyframes toolsAurora {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-10px) scale(1.02); }
}
/* Scan lines */
.tools-scan {
    position: absolute; inset: 0; pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background: repeating-linear-gradient(0deg, rgba(146,205,220,0.08) 0px, rgba(146,205,220,0.08) 1px, transparent 1px, transparent 8px);
    animation: scanDrift 9s ease-in-out infinite;
}
/* Orbit rings for tools */
.tools-orbit-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.tools-orbit {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.tools-orbit:nth-child(1) {
    width: 500px; height: 500px;
    border: 1.5px solid rgba(146,205,220,0.12);
    border-top-color: rgba(49,134,155,0.45);
    border-right-color: rgba(49,134,155,0.25);
    animation: spin 18s linear infinite;
}
.tools-orbit:nth-child(2) {
    width: 700px; height: 700px;
    border: 1px solid rgba(146,205,220,0.06);
    border-bottom-color: rgba(49,134,155,0.3);
    border-left-color: rgba(49,134,155,0.15);
    animation: spin 26s linear infinite reverse;
}
.tools-orbit:nth-child(3) {
    width: 900px; height: 900px;
    border: 1px solid rgba(146,205,220,0.04);
    border-top-color: rgba(208,120,118,0.15);
    animation: spin 35s linear infinite;
}
/* Orbit dots */
.tools-orb-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.tools-orbit:nth-child(1) .tools-orb-dot {
    width: 8px; height: 8px;
    background: var(--turquoise-400);
    box-shadow: 0 0 12px rgba(49,134,155,0.7), 0 0 24px rgba(49,134,155,0.25);
    top: 0; left: 50%; transform: translate(-50%, -50%);
}
.tools-orbit:nth-child(2) .tools-orb-dot {
    width: 6px; height: 6px;
    background: rgba(146,205,220,0.8);
    box-shadow: 0 0 10px rgba(146,205,220,0.6);
    bottom: 0; left: 50%; transform: translate(-50%, 50%);
}
.tools-orbit:nth-child(3) .tools-orb-dot {
    width: 5px; height: 5px;
    background: rgba(208,120,118,0.7);
    box-shadow: 0 0 8px rgba(208,120,118,0.5);
    top: 50%; right: 0; transform: translate(50%, -50%);
}

.section-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.section-header p { font-size: 1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.tools .section-header h2 { color: rgba(255,255,255,0.95); }
.tools .section-header p { color: rgba(255,255,255,0.6); }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Card wrapper — no longer needs gradient border */
.tool-card-wrap {
    cursor: pointer;
}

/* Inner card — glass on dark */
.tool-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(49,134,155,0.20);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--turquoise-400), var(--turquoise-200), var(--turquoise-400));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    animation: shimmerBar 3s ease-in-out infinite;
}
@keyframes shimmerBar { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.tool-card-wrap:hover .tool-card::before,
.tool-card:hover::before { transform: scaleX(1); transform-origin: left; }
.tool-card-wrap:hover .tool-card,
.tool-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--turquoise-400);
    box-shadow: 0 12px 35px rgba(49,134,155,0.25);
    transform: translateY(-5px);
}

.tool-icon {
    width: 56px;
    height: 56px;
    background: rgba(49,134,155,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--turquoise-200);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(49,134,155,0.20);
}

.tool-card-wrap:hover .tool-icon,
.tool-card:hover .tool-icon {
    background: var(--turquoise-400);
    color: white;
    border-color: transparent;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 4px 20px rgba(49,134,155,0.4);
}
.tool-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: white; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Folder styles */
.folders-grid { grid-template-columns: repeat(4, 1fr); }

.folder-contents {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(49,134,155,0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.folder-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--turquoise-200);
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.folder-back:hover { background: rgba(49,134,155,0.15); }

.folder-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(49,134,155,0.20);
}

.folder-contents .tools-grid { grid-template-columns: repeat(4, 1fr); }
.folder-contents .tool-card { text-decoration: none; padding: 1rem; }
.folder-contents .tool-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 0.6rem; }
.folder-contents .tool-card h3 { font-size: 0.85rem; }
.folder-contents .tool-card p { font-size: 0.75rem; }

.empty-folder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: rgba(255,255,255,0.3);
    gap: 1rem;
}
.empty-folder p { font-size: 1rem; }

@media (max-width: 900px) {
    .folders-grid { grid-template-columns: repeat(2, 1fr); }
    .folder-contents .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .folders-grid { grid-template-columns: repeat(2, 1fr); }
    .folder-contents .tools-grid { grid-template-columns: 1fr; }
}

/* ========== CTA SECTION - LIGHT FUTURISTIC ========== */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--turquoise-600), var(--turquoise-700));
    position: relative;
    overflow: hidden;
}
/* Orbit ring 1 */
.cta-section::before {
    content: '';
    position: absolute;
    width: 450px; height: 450px;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.18);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaSpin 30s linear infinite;
}
/* Orbit ring 2 */
.cta-section::after {
    content: '';
    position: absolute;
    width: 650px; height: 650px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaSpin 45s linear infinite reverse;
}
@keyframes ctaSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
/* Additional rings via cta-orbits container */
.cta-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-orbit-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.cta-orbit-ring:nth-child(1) {
    width: 350px; height: 350px;
    border: 1px solid rgba(255,255,255,0.12);
    animation: ctaSpin 25s linear infinite;
}
.cta-orbit-ring:nth-child(2) {
    width: 550px; height: 550px;
    border: 1.5px dashed rgba(255,255,255,0.08);
    animation: ctaSpin 35s linear infinite reverse;
}
.cta-orbit-ring:nth-child(3) {
    width: 800px; height: 800px;
    border: 1px solid rgba(255,255,255,0.05);
    animation: ctaSpin 55s linear infinite;
}
/* Glowing dots on rings */
.cta-orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.cta-orbit-ring:nth-child(1) .cta-orbit-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
.cta-orbit-ring:nth-child(2) .cta-orbit-dot { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.cta-orbit-ring:nth-child(3) .cta-orbit-dot { top: 50%; right: 0; transform: translate(50%, -50%); }

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-box h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary {
    background: white;
    color: var(--turquoise-700);
    border-color: white;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-section .btn-primary:hover {
    background: var(--turquoise-50);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.cta-section .btn-ghost { border-color: rgba(255,255,255,0.4); color: white; background: transparent; }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 50%, #ffffff 100%);
    position: relative;
}
.testimonials-container { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.testimonials-header p { font-size: 1rem; color: var(--gray-600); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(49,134,155,0.10);
    position: relative;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    border-color: rgba(49,134,155,0.25);
    box-shadow: 0 12px 35px rgba(49,134,155,0.10);
    transform: translateY(-3px);
}
/* Quote mark */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 20px;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--turquoise-200);
    opacity: 0.4;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise-400), var(--turquoise-700));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    flex-shrink: 0;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--gray-700);
}
/* Stars */
.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 3rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0fafb 50%, #ffffff 100%);
}
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 1.75rem; }
.faq-header h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.4rem; }
.faq-header p { font-size: 0.9rem; color: var(--gray-600); }

.faq-item {
    border: 1px solid rgba(49,134,155,0.12);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}
.faq-item:hover { border-color: rgba(49,134,155,0.25); }
.faq-item.active { border-color: var(--turquoise-400); box-shadow: 0 4px 20px rgba(49,134,155,0.08); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.88rem;
    gap: 1rem;
    user-select: none;
}
.faq-question:hover { color: var(--turquoise-600); }
.faq-item.active .faq-question { color: var(--turquoise-600); }

.faq-toggle {
    width: 24px; height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(49,134,155,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--turquoise-600);
    transition: all 0.3s ease;
}
.faq-item.active .faq-toggle {
    background: var(--turquoise-600);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.25rem;
    color: var(--gray-600);
    font-size: 0.84rem;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}

/* ========== FOOTER - FUTURISTIC ========== */
footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.72);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(49,134,155,0.12);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; text-decoration: none; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand .logo-plus { color: var(--turquoise-400); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    background: var(--turquoise-600);
    border-color: var(--turquoise-600);
    color: white;
    box-shadow: 0 4px 15px rgba(49,134,155,0.3);
}
.footer-social a.whatsapp-link:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.footer-column h4 { color: white; font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s ease; font-size: 0.9rem; }
.footer-column a:hover { color: var(--turquoise-400); }

.footer-contact h4 { color: white; font-family: var(--font-display); font-weight: 600; margin-bottom: 1rem; font-size: 0.95rem; }

.footer-form { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.footer-form input, .footer-form textarea {
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: white;
    color: var(--gray-800);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.2s;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: var(--gray-600); }
.footer-form input:focus, .footer-form textarea:focus { outline: none; border-color: var(--turquoise-500); box-shadow: 0 0 0 3px rgba(49, 134, 155, 0.1); }
.footer-form textarea { resize: none; min-height: 50px; }
.footer-form button {
    padding: 0.6rem 1rem;
    background: var(--turquoise-600);
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}
.footer-form button:hover { background: var(--turquoise-700); }




.footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--gray-800); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-bottom a { color: var(--turquoise-400); text-decoration: none; transition: all 0.2s ease; } .footer-bottom a:hover { color: #5BC4D6; text-shadow: 0 0 8px rgba(49,134,155,0.6); }
.footer-heart { color: inherit; font-size: inherit; }
.footer-heart span { color: #e25555; font-size: 1.4em; vertical-align: -0.05em; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .visual { justify-content: center; }
    .hero-img-wrap { width: 100%; max-width: 480px; margin: 0 auto; }
    
    
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu, .mobile-menu-overlay { display: block; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .why-content { text-align: center; }
    .why-circle { width: 340px; height: 340px; }
    .why-item { width: 80px; height: 80px; }
    .why-center { width: 100px; height: 100px; }
    .why-item:nth-child(1) { transform: translate(-50%, -50%) translate(0, -125px); }
    .why-item:nth-child(2) { transform: translate(-50%, -50%) translate(88px, -88px); }
    .why-item:nth-child(3) { transform: translate(-50%, -50%) translate(125px, 0); }
    .why-item:nth-child(4) { transform: translate(-50%, -50%) translate(88px, 88px); }
    .why-item:nth-child(5) { transform: translate(-50%, -50%) translate(0, 125px); }
    .why-item:nth-child(6) { transform: translate(-50%, -50%) translate(-88px, 88px); }
    .why-item:nth-child(7) { transform: translate(-50%, -50%) translate(-125px, 0); }
    .why-item:nth-child(8) { transform: translate(-50%, -50%) translate(-88px, -88px); }
}

@media (max-width: 768px) {
    .hero-img-wrap { max-width: 400px; }
    .tools-grid { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .footer-social { justify-content: center; }
    .how-section [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .pricing-preview [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .footer-form { max-width: 300px; margin: 0 auto 1rem; }
    
    .footer-brand p { max-width: 300px; margin: 0 auto 1rem; }
    .folder-contents .tools-grid { grid-template-columns: 1fr 1fr; }
    .why-stats { grid-template-columns: 1fr; gap: 1rem; }
    .why-circle { width: 300px; height: 300px; }
    .why-item { width: 70px; height: 70px; padding: 6px; }
    .why-item span { font-size: 9px; }
    .why-center { width: 85px; height: 85px; }
    .why-item:nth-child(1) { transform: translate(-50%, -50%) translate(0, -105px); }
    .why-item:nth-child(2) { transform: translate(-50%, -50%) translate(74px, -74px); }
    .why-item:nth-child(3) { transform: translate(-50%, -50%) translate(105px, 0); }
    .why-item:nth-child(4) { transform: translate(-50%, -50%) translate(74px, 74px); }
    .why-item:nth-child(5) { transform: translate(-50%, -50%) translate(0, 105px); }
    .why-item:nth-child(6) { transform: translate(-50%, -50%) translate(-74px, 74px); }
    .why-item:nth-child(7) { transform: translate(-50%, -50%) translate(-105px, 0); }
    .why-item:nth-child(8) { transform: translate(-50%, -50%) translate(-74px, -74px); }
}

@media (max-width: 520px) {
    .hero-img-wrap { max-width: 340px; }
    
    
    
    
    
    
    
    
    
    
}
    
/* ========== MEGA MENU ========== */
        .nav-tools-wrap { position: relative; }
.nav-tools-wrap > a { cursor: pointer; }
.tools-dropdown {
    display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: white; border-radius: 14px; padding: 1.5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    min-width: 480px; z-index: 2000;
    opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(6px);
}
.tools-dropdown.show {
    display: block; opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.tools-dropdown::before {
    content: ''; position: absolute; top: -6px; left: 50%;
    width: 12px; height: 12px; background: white;
    box-shadow: -1px -1px 2px rgba(0,0,0,0.04);
    transform: translateX(-50%) rotate(-45deg);
}
.tools-mega {
    min-width: min(920px, calc(100vw - 40px)); left: 50%; transform: translateX(-50%);
    padding: 1.5rem 1.75rem;
}
.tools-mega.show { transform: translateX(-50%) translateY(0); }
.tools-mega::before { left: 50%; transform: translateX(-50%) rotate(-45deg); }
.td-header {
    font-size: 0.9rem; font-weight: 600;
    color: var(--gray-800); margin-bottom: 1rem; padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--turquoise-50);
    display: flex; align-items: center; gap: 4px;
}
.td-header span { color: var(--turquoise-600); }
.td-count { font-size: 0.65rem; font-weight: 500; background: var(--turquoise-50); color: var(--turquoise-600); padding: 2px 8px; border-radius: 20px; margin-right: auto; }
.td-mega-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0 1rem; }
.td-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.td-category { margin-bottom: 0.5rem; }
.td-cat-title {
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.2px; color: var(--turquoise-700); margin-bottom: 2px;
    padding: 2px 6px 1px; border-bottom: 1px solid var(--turquoise-200);
    line-height: 1.3;
}
.tools-mega .td-item {
    display: block;
    padding: 0 6px; border-radius: 3px;
    text-decoration: none; color: var(--gray-600); font-size: 12px;
    font-weight: 400; transition: all 0.15s ease; cursor: pointer; white-space: nowrap;
    line-height: 1.4; margin: 0;
}
.tools-mega .td-item:hover { background: var(--turquoise-50); color: var(--turquoise-700); }
.tools-mega .td-item:hover
.td-soon {
    font-size: 0.6rem; background: var(--gray-100); color: var(--gray-600);
    padding: 1px 6px; border-radius: 4px; margin-right: 4px;
}
.td-footer {
    margin-top: 0.75rem; padding-top: 0.6rem;
    border-top: 1px solid var(--gray-200); text-align: center;
}
.td-footer a {
    color: var(--turquoise-600); text-decoration: none; font-size: 0.78rem;
    font-weight: 600; transition: color 0.2s;
}
.td-footer a:hover { color: var(--turquoise-700); }
@media (max-width: 1024px) {
    .tools-mega { min-width: min(700px, calc(100vw - 40px)); padding: 1.25rem; }
    .td-mega-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem 1rem; }
}
@media (max-width: 768px) {
    .tools-dropdown, .tools-mega { min-width: min(340px, calc(100vw - 40px)); right: -10px; left: auto; transform: translateX(0); padding: 1rem; }
    .tools-dropdown.show, .tools-mega.show { transform: translateX(0) translateY(0); }
    .tools-dropdown::before, .tools-mega::before { right: 20px; left: auto; transform: rotate(-45deg); }
    .td-mega-grid { grid-template-columns: 1fr 1fr; max-height: 400px; overflow-y: auto; }
    .td-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .td-mega-grid { grid-template-columns: 1fr; }
}

