/* ============================================================
   E-BOOK PUBLISHERS CO. — FULL STYLESHEET
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #8B5CF6;
    --primary-d: #6D28D9;
    --primary-l: #7C3AED;
    --secondary: #0EA5E9;
    --accent: #F97316;
    --dark: #FFFFFF;
    --dark2: #F5F3FF;
    --dark3: #FFFFFF;
    --dark4: #EDE9FE;
    --dark-border: rgba(139,92,246,0.18);
    --light: #FAFAFA;
    --light2: #F0EEFF;
    --text: #2D2350;
    --text-m: #7564A8;
    --text-d: #1A1333;
    --grad: linear-gradient(135deg, #8B5CF6, #0EA5E9);
    --grad2: linear-gradient(135deg, #F97316, #F59E0B);
    --shadow: 0 20px 60px rgba(139,92,246,0.1);
    --shadow-d: 0 25px 80px rgba(139,92,246,0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark2); }
.gtext {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin: 12px 0 16px;
    color: var(--text-d);
}
.sec-head p {
    max-width: 580px;
    margin: 0 auto;
    color: var(--text-m);
    font-size: 1.05rem;
}
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139,92,246,0.12);
    border: 1px solid var(--dark-border);
    color: var(--primary-l);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 8px 30px rgba(139,92,246,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.55);
}
.btn-outline {
    background: transparent;
    color: var(--primary-l);
    border: 1.5px solid var(--primary);
}
.btn-outline:hover {
    background: rgba(139,92,246,0.12);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(139,92,246,0.08);
    color: var(--primary-d);
    border: 1.5px solid rgba(139,92,246,0.25);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: rgba(139,92,246,0.15);
    transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    background: #0F0A22;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-book {
    width: 60px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    perspective: 200px;
}
.pre-page {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: var(--primary);
    border-radius: 0 8px 8px 0;
    transform-origin: left center;
    animation: pageFlip 1.2s ease-in-out infinite;
}
.pre-page.p1 { animation-delay: 0s; opacity: 0.5; }
.pre-page.p2 { animation-delay: 0.2s; opacity: 0.7; }
.pre-page.p3 { animation-delay: 0.4s; opacity: 1; }
@keyframes pageFlip {
    0%,100% { transform: rotateY(0deg); }
    50% { transform: rotateY(-160deg); }
}
.pre-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}
.pre-logo span { color: var(--primary-l); }
.pre-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.pre-bar-fill {
    height: 100%;
    width: 0;
    background: var(--grad);
    transition: width 0.1s ease;
}

/* ---------- Scroll Progress ---------- */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad);
    z-index: 9998;
    transition: width 0.1s linear;
}

/* ---------- Custom Cursor ---------- */
#cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.3s ease;
}
#cursorTrail {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9996;
    transform: translate(-50%, -50%);
    transition: left 0.12s ease, top 0.12s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}
body.cursor-hover #cursor { transform: translate(-50%, -50%) scale(2); background: var(--accent); }
body.cursor-hover #cursorTrail { transform: translate(-50%, -50%) scale(1.5); opacity: 0.3; }

/* ---------- Navbar ---------- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--nav-h);
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 4px 30px rgba(139,92,246,0.1);
}
.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-d);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-logo i { color: var(--primary-l); }
.nav-logo span { color: var(--primary-l); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.nav-link {
    color: var(--text-m);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--grad);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary-d); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.nav-phone {
    color: var(--text-m);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}
.nav-phone:hover { color: var(--primary-l); }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-d);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-top: var(--nav-h);
}
#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 8s ease-in-out infinite alternate;
}
.b1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #8B5CF6, transparent);
    top: -200px; right: -100px;
    animation-duration: 10s;
}
.b2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #0EA5E9, transparent);
    bottom: 0; left: -100px;
    animation-duration: 8s; animation-delay: -3s;
}
.b3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #F97316, transparent);
    top: 40%; left: 40%;
    animation-duration: 12s; animation-delay: -5s;
}
@keyframes blobFloat {
    from { transform: scale(1) translate(0,0); }
    to { transform: scale(1.1) translate(30px, -30px); }
}
.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.3);
    color: var(--primary-l);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.badge-pulse {
    width: 8px; height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-d);
    margin-bottom: 20px;
}
.typed-wrap {
    display: inline-flex;
    align-items: baseline;
    color: var(--primary-l);
}
#typed { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.typed-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
    -webkit-text-fill-color: var(--primary);
    margin-left: 2px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-m);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.ht-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-m);
}
.ht-stars { display: flex; gap: 2px; color: #FCD34D; font-size: 0.75rem; }
.ht-item i { color: var(--primary-l); }
.ht-sep { width: 1px; height: 20px; background: var(--dark4); }

/* 3D Book */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.book-stage {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-3d {
    width: 200px;
    height: 280px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(8deg);
    animation: bookFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.5s ease;
}
.book-3d:hover { transform: rotateY(-15deg) rotateX(4deg) scale(1.05); }
@keyframes bookFloat {
    0%,100% { transform: rotateY(-25deg) rotateX(8deg) translateY(0); }
    50% { transform: rotateY(-25deg) rotateX(8deg) translateY(-15px); }
}
.b-front, .b-spine, .b-back, .b-top, .b-bottom {
    position: absolute;
    backface-visibility: hidden;
}
.b-front {
    width: 200px; height: 280px;
    border-radius: 2px 8px 8px 2px;
    transform: translateZ(20px);
    overflow: hidden;
}
.b-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px 8px 8px 2px;
}
.b-cover-art {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: linear-gradient(135deg, #2D1070, #6D28D9, #1E1060);
}
.b-cover-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px 0;
    opacity: 0.15;
}
.b-cover-lines span {
    display: block;
    height: 1px;
    background: white;
    margin: 0 16px;
}
.b-cover-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFD700;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.b-cover-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}
.b-spine {
    width: 40px; height: 280px;
    background: linear-gradient(180deg, #4C1D95, #2D0A6E, #4C1D95);
    left: -40px;
    top: 0;
    transform: rotateY(-90deg) translateZ(0px);
    transform-origin: right center;
    border-radius: 8px 0 0 8px;
}
.b-back {
    width: 200px; height: 280px;
    background: #2D0A6E;
    transform: translateZ(-20px) rotateY(180deg);
}
.b-top {
    width: 200px; height: 40px;
    background: linear-gradient(90deg, #3B1A7A, #6D28D9);
    top: 0;
    transform: rotateX(90deg) translateZ(-1px);
    transform-origin: top center;
}
.b-bottom {
    width: 200px; height: 40px;
    background: #3B1A7A;
    bottom: 0;
    transform: rotateX(-90deg) translateZ(-1px);
    transform-origin: bottom center;
}
.book-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: rgba(139,92,246,0.3);
    filter: blur(20px);
    border-radius: 50%;
    animation: shadowPulse 4s ease-in-out infinite;
}
@keyframes shadowPulse {
    0%,100% { opacity: 0.4; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 0.2; transform: translateX(-50%) scaleX(0.8); }
}
.float-tag {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--dark-border);
    color: var(--text-d);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: floatTag 3s ease-in-out infinite alternate;
    box-shadow: var(--shadow);
}
.float-tag i { color: var(--accent); }
.tag-top { top: 20px; right: 0; }
.tag-bottom { bottom: 40px; left: 0; animation-delay: -1.5s; }
.book-particles { position: absolute; inset: 0; pointer-events: none; }
.bp {
    position: absolute;
    font-size: 0.7rem;
    color: var(--primary-l);
    animation: particleFloat 3s ease-in-out infinite;
    opacity: 0.5;
}
.bp1 { top: 10%; left: 10%; animation-delay: 0s; }
.bp2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.bp3 { bottom: 30%; left: 5%; animation-delay: 1s; }
.bp4 { bottom: 10%; right: 15%; animation-delay: 1.5s; }
.bp5 { top: 50%; right: 0; animation-delay: 2s; }
@keyframes particleFloat {
    0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 1; }
}
@keyframes floatTag {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    color: var(--text-m);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease infinite;
}
.sh-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(139,92,246,0.5);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.sh-wheel {
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: wheelScroll 1.5s ease infinite;
}
@keyframes wheelScroll {
    0%,100% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* ---------- Scroll Reveal ---------- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-in { opacity: 1; transform: translateY(0); }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-up.vis { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s; }
.reveal-right.vis { opacity: 1; transform: translateX(0); }

/* ---------- Stats ---------- */
#stats {
    background: linear-gradient(135deg, var(--dark3), var(--dark2));
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 60px 0;
}
.stats-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suf {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-lbl { display: block; font-size: 0.85rem; color: var(--text-m); margin-top: 6px; font-weight: 500; }
.stat-div { width: 1px; height: 60px; background: var(--dark-border); flex-shrink: 0; }

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.svc-card {
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform-style: preserve-3d;
    will-change: transform;
}
.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.08), transparent);
    opacity: 0;
    transition: var(--transition);
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.4); box-shadow: var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-featured {
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.1));
    border-color: rgba(139,92,246,0.5);
}
.svc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.svc-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-d); margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: var(--text-m); line-height: 1.6; margin-bottom: 16px; }
.svc-list { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 0.82rem; color: var(--text-m); display: flex; align-items: center; gap: 8px; }
.svc-list li i { color: #4ADE80; font-size: 0.7rem; }
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-l);
    transition: gap 0.3s ease, color 0.3s ease;
}
.svc-link:hover { gap: 10px; color: var(--primary-d); }

/* ---------- Process ---------- */
.process-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    margin-top: 20px;
}
.process-line {
    position: absolute;
    top: 52px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: rgba(139,92,246,0.2);
    z-index: 0;
}
.pl-fill {
    height: 100%;
    width: 0;
    background: var(--grad);
    transition: width 1.5s ease;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.ps-num {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-l);
    letter-spacing: 0.08em;
}
.ps-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(139,92,246,0.08);
    border: 2px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-l);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.process-step.aos-in .ps-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(139,92,246,0.3);
    color: white;
}
.ps-body h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--text-d); margin-bottom: 10px; }
.ps-body p { font-size: 0.85rem; color: var(--text-m); line-height: 1.6; }

/* ---------- Why Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-content .sec-tag { margin-bottom: 16px; display: inline-block; }
.why-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-d);
    margin-bottom: 16px;
    line-height: 1.25;
}
.why-sub { color: var(--text-m); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.feat-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(139,92,246,0.15);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-l);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.feat-item:hover .feat-icon { background: var(--primary); color: white; }
.feat-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-d); margin-bottom: 4px; }
.feat-item p { font-size: 0.85rem; color: var(--text-m); line-height: 1.5; }

/* Achievement Hub */
.why-visual { display: flex; justify-content: center; }
.ach-hub {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ach-center {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 40px rgba(139,92,246,0.4);
    animation: hubPulse 2s ease-in-out infinite;
}
@keyframes hubPulse {
    0%,100% { box-shadow: 0 0 40px rgba(139,92,246,0.4); }
    50% { box-shadow: 0 0 60px rgba(139,92,246,0.7); }
}
.ach-center i { font-size: 1.5rem; color: white; }
.ach-center span { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.ach-card {
    position: absolute;
    width: 100px;
    height: 90px;
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
    box-shadow: var(--shadow-d);
}
.ach-card:hover { transform: scale(1.1); border-color: var(--primary); }
.ach-card i { font-size: 1.2rem; color: var(--primary-l); }
.ach-card strong { font-size: 0.95rem; color: var(--text-d); font-weight: 800; line-height: 1; }
.ach-card span { font-size: 0.7rem; color: var(--text-m); }
.ac1 { top: 20px; left: 50%; transform: translateX(-50%); }
.ac2 { top: 50%; right: 10px; transform: translateY(-50%); }
.ac3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.ac4 { top: 50%; left: 10px; transform: translateY(-50%); }
.ach-lines { position: absolute; inset: 0; pointer-events: none; width: 100%; height: 100%; }

/* ---------- Portfolio Marquee ---------- */
.marquee-outer { overflow: hidden; padding: 20px 0; }
.marquee-row {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 25s linear infinite;
    padding: 10px 0;
}
.row-bwd { animation-direction: reverse; }
.marquee-row:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.book-tile {
    width: 180px;
    height: 240px;
    border-radius: 10px;
    background: var(--bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.book-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
}
.book-tile:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); }
.bt-genre {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    display: inline-block;
}
.bt-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; overflow: hidden; }
.testi-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
    min-width: 100%;
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.tc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.tc-stars { color: #FCD34D; display: flex; gap: 4px; font-size: 0.9rem; }
.tc-quote { color: var(--primary); font-size: 2rem; opacity: 0.5; }
.testi-card p { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}
.tc-info { display: flex; flex-direction: column; }
.tc-info strong { color: var(--text-d); font-size: 0.95rem; }
.tc-info span { color: var(--text-m); font-size: 0.8rem; }
.tc-book {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-l);
    font-size: 0.8rem;
    font-style: italic;
}
.tc-book i { font-size: 0.75rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.tc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    color: var(--text-m);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.tc-btn:hover { background: var(--primary); border-color: var(--primary); color: white; }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dark4);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    transition: var(--transition);
}
.tc-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ---------- Pricing ---------- */
.price-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    font-size: 0.9rem;
    color: var(--text-m);
    font-weight: 500;
}
.save-pill {
    background: rgba(74,222,128,0.15);
    color: #4ADE80;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(74,222,128,0.3);
    font-style: normal;
}
.pswitch { position: relative; display: inline-block; width: 48px; height: 26px; }
.pswitch input { opacity: 0; width: 0; height: 0; }
.pslider {
    position: absolute;
    inset: 0;
    background: var(--dark4);
    border-radius: 13px;
    cursor: pointer;
    border: 1px solid var(--dark-border);
    transition: 0.3s;
}
.pslider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: var(--primary-l);
    border-radius: 50%;
    transition: 0.3s;
}
.pswitch input:checked + .pslider { background: rgba(139,92,246,0.2); }
.pswitch input:checked + .pslider::before { transform: translateX(22px); background: var(--primary); }
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.4); }
.pc-popular {
    background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(14,165,233,0.06));
    border-color: var(--primary);
    transform: scale(1.04);
}
.pc-popular:hover { transform: scale(1.04) translateY(-4px); }
.pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
}
.pc-head { text-align: center; margin-bottom: 24px; }
.pc-icon {
    width: 54px;
    height: 54px;
    background: rgba(139,92,246,0.15);
    border: 1px solid var(--dark-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-l);
    margin: 0 auto 16px;
}
.pc-popular .pc-icon { background: var(--grad); color: white; border: none; box-shadow: 0 8px 20px rgba(139,92,246,0.3); }
.pc-head h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-d); margin-bottom: 6px; }
.pc-head p { font-size: 0.83rem; color: var(--text-m); }
.pc-price { text-align: center; margin-bottom: 28px; display: flex; align-items: flex-start; justify-content: center; gap: 2px; }
.pc-cur { color: var(--primary-l); font-size: 1.2rem; font-weight: 700; margin-top: 8px; }
.pc-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-d);
    line-height: 1;
    transition: var(--transition);
}
.pc-popular .pc-num { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pc-per { color: var(--text-m); font-size: 0.85rem; margin-top: 12px; }
.pc-feats { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pc-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text);
}
.pc-feats li.off { color: var(--text-m); text-decoration: line-through; opacity: 0.5; }
.pc-feats li i { font-size: 0.75rem; flex-shrink: 0; }
.pc-feats li.on i { color: #4ADE80; }
.pc-feats li.off i { color: var(--text-m); }
.price-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-m);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.price-note i { color: var(--primary-l); }
.price-note strong { color: var(--text-d); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(139,92,246,0.4); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    color: var(--text-d);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s ease;
}
.faq-q:hover { color: var(--primary-l); }
.faq-ico { color: var(--primary-l); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.35s ease; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-a p { padding: 0 24px 20px; color: var(--text-m); font-size: 0.9rem; line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.ct-info .sec-tag { margin-bottom: 16px; display: inline-block; }
.ct-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-d);
    margin-bottom: 16px;
    line-height: 1.25;
}
.ct-info > p { color: var(--text-m); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.ct-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ct-detail { display: flex; align-items: center; gap: 16px; }
.ct-d-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(139,92,246,0.15);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-l);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.ct-detail div { display: flex; flex-direction: column; }
.ct-detail span { font-size: 0.78rem; color: var(--text-m); }
.ct-detail a, .ct-detail strong { color: var(--text-d); font-size: 0.95rem; font-weight: 600; transition: color 0.3s; }
.ct-detail a:hover { color: var(--primary-l); }
.discount-box {
    background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(245,158,11,0.1));
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.discount-box i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }
.discount-box div { display: flex; flex-direction: column; }
.discount-box strong { color: var(--text-d); font-size: 0.95rem; }
.discount-box span { color: var(--text-m); font-size: 0.82rem; }

/* Form */
.ct-form-wrap {
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 36px 32px;
}
.ct-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-d);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .fg { margin-bottom: 0; }
.fg label { font-size: 0.82rem; font-weight: 600; color: var(--text-m); }
.fg input, .fg select, .fg textarea {
    background: var(--dark4);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text-d);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-m); opacity: 0.6; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.fg input.error, .fg select.error, .fg textarea.error { border-color: #EF4444; }
.fe { font-size: 0.75rem; color: #EF4444; min-height: 16px; }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--dark3); }
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-m);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-note i { color: #4ADE80; }

/* ---------- Footer ---------- */
#footer { background: var(--dark2); border-top: 1px solid var(--dark-border); }
.footer-body { padding: 72px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-d);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.footer-logo i { color: var(--primary-l); }
.footer-logo span { color: var(--primary-l); }
.fg-brand p { font-size: 0.87rem; color: var(--text-m); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-m);
    transition: var(--transition);
}
.socials a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.fg-links h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-d); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.fg-links ul { display: flex; flex-direction: column; gap: 10px; }
.fg-links li a { font-size: 0.87rem; color: var(--text-m); transition: color 0.3s; }
.fg-links li a:hover { color: var(--primary-l); }
.fg-newsletter h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-d); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.fg-newsletter p { font-size: 0.85rem; color: var(--text-m); margin-bottom: 16px; line-height: 1.6; }
.nl-form { display: flex; gap: 0; margin-bottom: 20px; }
.nl-form input {
    flex: 1;
    padding: 11px 14px;
    background: var(--dark4);
    border: 1px solid var(--dark-border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text-d);
    font-size: 0.85rem;
    outline: none;
}
.nl-form input::placeholder { color: var(--text-m); opacity: 0.6; }
.nl-form button {
    padding: 11px 16px;
    background: var(--grad);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: white;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}
.nl-form button:hover { opacity: 0.85; }
.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-pills span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-m);
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    padding: 4px 10px;
    border-radius: 20px;
}
.trust-pills i { color: #FCD34D; }
.footer-bar {
    border-top: 1px solid var(--dark-border);
    padding: 20px 0;
}
.footer-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bar span { font-size: 0.82rem; color: var(--text-m); }
.fb-links { display: flex; gap: 20px; }
.fb-links a { font-size: 0.82rem; color: var(--text-m); transition: color 0.3s; }
.fb-links a:hover { color: var(--primary-l); }

/* ---------- Back to Top ---------- */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--grad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    z-index: 800;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(139,92,246,0.4);
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); }

/* ---------- Toast ---------- */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #1A2F1A;
    border: 1px solid rgba(74,222,128,0.4);
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ADE80;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9990;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#toast i { font-size: 1rem; }

/* ---------- Live Chat ---------- */
.live-chat { position: fixed; bottom: 28px; right: 28px; z-index: 800; }
.lc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--grad);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(139,92,246,0.5);
    transition: var(--transition);
    position: relative;
    user-select: none;
}
.lc-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(139,92,246,0.65); }
.lc-btn i { font-size: 1rem; }
.lc-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #4ADE80;
    border-radius: 50%;
    border: 2px solid var(--dark);
    animation: chatPulse 1.5s infinite;
}
@keyframes chatPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.lc-popup {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 300px;
    background: var(--dark3);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-d);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    transition: var(--transition);
    pointer-events: none;
}
.lc-popup.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.lcp-head {
    background: var(--grad);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.lcp-avatar {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}
.lcp-head strong { color: white; font-size: 0.9rem; display: block; }
.lcp-head span { color: rgba(255,255,255,0.75); font-size: 0.75rem; }
.lcp-close { margin-left: auto; color: rgba(255,255,255,0.7); font-size: 0.85rem; cursor: pointer; transition: color 0.2s; padding: 4px; }
.lcp-close:hover { color: white; }
.lcp-body { padding: 20px; }
.lcp-msg {
    background: var(--dark4);
    border-radius: 12px 12px 12px 0;
    padding: 12px 14px;
    font-size: 0.87rem;
    color: var(--text);
    line-height: 1.5;
}
.lcp-foot {
    padding: 0 16px 16px;
    display: flex;
    gap: 10px;
}

/* ---------- Animations & AOS Delays ---------- */
[data-aos]:nth-child(2) { transition-delay: 0.1s; }
[data-aos]:nth-child(3) { transition-delay: 0.2s; }
[data-aos]:nth-child(4) { transition-delay: 0.3s; }
[data-aos]:nth-child(5) { transition-delay: 0.4s; }
[data-aos]:nth-child(6) { transition-delay: 0.1s; }
[data-aos]:nth-child(7) { transition-delay: 0.2s; }
[data-aos]:nth-child(8) { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .why-grid { gap: 48px; }
}
@media (max-width: 900px) {
    .hero-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-text { order: 1; }
    .hero-visual { order: 0; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-badge { justify-content: center; display: flex; }
    .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: rgba(245,243,255,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 24px; z-index: 850; }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.2rem; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .nav-wrap { gap: 16px; }
    .process-wrap { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-line { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .ach-hub { width: 300px; height: 300px; }
    .price-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pc-popular { transform: scale(1); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stats-wrap { flex-wrap: wrap; }
    .stat-div { display: none; }
    .stat-item { min-width: 120px; }
}
@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process-wrap { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .book-stage { transform: scale(0.85); }
    .testi-card { padding: 24px 20px; }
    .tc-author { flex-wrap: wrap; gap: 10px; }
    .tc-book { margin-left: 0; width: 100%; }
    .ct-form-wrap { padding: 24px 20px; }
    .footer-bar .container { flex-direction: column; text-align: center; }
    .hero-trust { gap: 12px; }
    .ht-sep { display: none; }
    .discount-box { flex-direction: column; text-align: center; }
}
@media (hover: none) {
    #cursor, #cursorTrail { display: none; }
    body { cursor: auto; }
    button { cursor: pointer; }
}
