:root {
    --bg-deep: #060609;
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f16;
    --bg-card: #13131d;
    --bg-card-hover: #181827;
    --text-primary: #eaeaef;
    --text-secondary: #9a9ab0;
    --text-muted: #6b6b80;
    --accent: #7c5cfc;
    --accent-light: #a78bfa;
    --accent-glow: rgba(124, 92, 252, 0.35);
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #a855f7 70%, #c084fc 100%);
    --accent-gradient-subtle: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(168, 85, 247, 0.04) 100%);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-card: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --glass-bg: rgba(18, 18, 30, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(24px);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(124, 92, 252, 0.15), 0 0 120px rgba(99, 102, 241, 0.06);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #1a1a28 #060609;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #060609; }
::-webkit-scrollbar-thumb { background: #1a1a28; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a3a; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
    position: relative;
    min-height: 100vh;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    background: transparent;
}
.cursor-ring.hovering {
    width: 68px;
    height: 68px;
    border-color: var(--accent-light);
    background: rgba(124, 92, 252, 0.08);
    box-shadow: 0 0 40px rgba(124, 92, 252, 0.3);
}
.cursor-dot.clicking {
    width: 4px;
    height: 4px;
    background: var(--accent-light);
}
@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* Background Grid */
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 30%, transparent 70%);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .container { padding: 0 18px; }
}

/* Section Spacing */
.section {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .section { padding: 70px 0; }
}

/* Section Header (fixed stacking) */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(124, 92, 252, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(124, 92, 252, 0.18);
    position: relative;
    overflow: hidden;
}
.section-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}
.section-tag:hover::before { opacity: 0.15; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    /* Removed display: inline-block to stack above subtitle */
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    opacity: 0.8;
}
.section-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 20px auto 0;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .section-subtitle { font-size: 0.95rem; max-width: 100%; }
}

/* Header / Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
}
.site-header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}
@media (max-width: 768px) { .header-inner { padding: 0 18px; } }
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 1002;
}
.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 0 20px var(--accent-glow);
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: color var(--transition-fast);
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
    transition: width var(--transition-smooth);
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { width: 100%; }
.btn-nav {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: none;
    border: none;
    font-family: var(--font-body);
}
.btn-primary-nav {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary-nav:hover { box-shadow: 0 6px 32px rgba(124, 92, 252, 0.5); transform: translateY(-2px); }
@media (max-width: 1024px) { .desktop-nav { display: none; } }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
    z-index: 1002;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 32px;
    justify-content: center;
    align-items: center;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 1024px) { .hamburger { display: flex; } }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(4, 4, 10, 0.96);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    overflow-y: auto;
}
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.mobile-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
    z-index: 1002;
}
.mobile-close-btn:hover { background: rgba(255,255,255,0.08); }
.mobile-nav { padding: 20px 24px; flex: 1; }
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}
.mobile-menu-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-menu-overlay.active .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(6) { transition-delay: 0.36s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(7) { transition-delay: 0.42s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(8) { transition-delay: 0.48s; }
.mobile-menu-overlay.active .mobile-menu-links li:nth-child(9) { transition-delay: 0.54s; }
.mobile-menu-links a,
.menu-parent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    transition: color var(--transition-fast);
    cursor: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.menu-parent .toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.has-submenu.open > .menu-parent .toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-light);
}
.submenu {
    list-style: none;
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.has-submenu.open > .submenu { max-height: 400px; }
.submenu li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
}
.submenu li a:hover { color: #fff; }
@media (max-width: 768px) {
    .mobile-menu-links a, .menu-parent { font-size: 1.3rem; }
    .submenu li a { font-size: 1rem; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 80px;
    overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .container { z-index: 2; }
.hero-content { max-width: 720px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 92, 252, 0.07);
    border: 1px solid rgba(124, 92, 252, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease forwards;
}
.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 22px;
    animation: fadeInUp 0.7s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeInUp 0.7s ease 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: none;
    border: none;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 6px 28px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 10px 40px rgba(124, 92, 252, 0.5); transform: translateY(-3px); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.04); transform: translateY(-2px); }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.7s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}
.hero-stat h4 { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 768px) { .hero-stats { gap: 24px; flex-wrap: wrap; } .hero-stat h4 { font-size: 1.5rem; } .hero-description { font-size: 1rem; } }
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounce-down 2s infinite;
    opacity: 0.6;
}
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.scroll-indicator .chevron { font-size: 1.2rem; color: var(--text-muted); }
@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
@media (max-width: 768px) { .scroll-indicator { bottom: 20px; } }

/* Why Me Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient-subtle);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: inherit;
    z-index: 0;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.why-card:hover::before { opacity: 1; }
.why-card>* { position: relative; z-index: 1; }
.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(124, 92, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}
.why-card:hover .why-icon { background: var(--accent-gradient); color: #fff; box-shadow: 0 8px 24px var(--accent-glow); }
.why-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; color: #fff; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all var(--transition-smooth);
}
.service-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-card:hover::after { top: -30%; right: -30%; width: 280px; height: 280px; }
.service-card .service-icon { font-size: 2rem; color: var(--accent-light); transition: transform var(--transition-bounce); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: #fff; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.service-card .service-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap var(--transition-fast);
}
.service-card .service-link:hover { gap: 10px; }

/* Portfolio Grid (3 columns) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.portfolio-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-smooth);
}
.portfolio-card:hover .portfolio-thumb { transform: scale(1.04); }
.portfolio-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.portfolio-body h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.portfolio-body .short-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 6px; }
.portfolio-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.portfolio-features li { font-size: 0.8rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.portfolio-features li i { color: #10b981; font-size: 0.8rem; flex-shrink: 0; }
.portfolio-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap var(--transition-fast);
}
.portfolio-link:hover { gap: 10px; }
.portfolio-cta { text-align: center; margin-top: 36px; }

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 38px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pricing-card.featured {
    border-color: rgba(124, 92, 252, 0.4);
    background: linear-gradient(180deg, rgba(124, 92, 252, 0.06) 0%, var(--bg-card) 30%);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    z-index: 2;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    color: #fff;
    align-self: flex-start;
}
.pricing-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff; }
.pricing-price { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.pricing-price .currency { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); vertical-align: super; }
.pricing-price .period { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.pricing-features li { font-size: 0.88rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pricing-features li i { color: #10b981; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-muted); text-decoration: line-through; opacity: 0.5; }
.pricing-features li.disabled i { color: var(--text-muted); }
.btn-pricing {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all var(--transition-smooth);
    cursor: none;
    border: none;
    font-family: var(--font-body);
}
.btn-pricing-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.25); }
.btn-pricing-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }
.btn-pricing-primary { background: var(--accent-gradient); color: #fff; box-shadow: 0 4px 20px var(--accent-glow); }
.btn-pricing-primary:hover { box-shadow: 0 8px 32px rgba(124, 92, 252, 0.5); }
@media (max-width: 768px) { .pricing-card.featured { transform: scale(1); } .pricing-card.featured:hover { transform: translateY(-4px); } }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-md); overflow: hidden; transition: all var(--transition-smooth); }
.faq-item.active { border-color: var(--border-hover); box-shadow: 0 0 32px rgba(124, 92, 252, 0.06); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    text-align: left;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
    gap: 16px;
}
.faq-item.active .faq-question { color: var(--accent-light); }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(124, 92, 252, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all var(--transition-smooth);
    color: var(--accent-light);
}
.faq-item.active .faq-icon { background: var(--accent-gradient); color: #fff; transform: rotate(45deg); box-shadow: 0 0 16px var(--accent-glow); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.45s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* About Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; max-height: 500px; }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform var(--transition-smooth); }
.about-image-wrapper:hover img { transform: scale(1.04); }
.about-image-wrapper::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 9, 0.5) 100%); pointer-events: none; }
.about-glow { position: absolute; top: -30px; right: -30px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(124, 92, 252, 0.2) 0%, transparent 70%); border-radius: 50%; pointer-events: none; z-index: -1; }
.about-content h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; color: #fff; }
.about-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }
.about-stats-row { display: flex; gap: 30px; margin-top: 24px; }
.about-stat h4 { font-size: 1.8rem; font-weight: 800; color: var(--accent-light); letter-spacing: -0.02em; }
.about-stat span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } .about-image-wrapper { aspect-ratio: 3/4; max-height: 380px; } }

/* Blog Section */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.blog-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition-smooth); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-thumb-wrapper { position: relative; overflow: hidden; }
.blog-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform var(--transition-smooth); }
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-thumb-overlay { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; align-items: center; pointer-events: none; z-index: 2; }
.blog-category { background: var(--accent-gradient); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-comments { background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); color: #fff; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-body { padding: 22px 20px; flex-grow: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-date { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.blog-body h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.3; }
.blog-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; flex-grow: 1; }
.blog-link { font-weight: 600; font-size: 0.85rem; color: var(--accent-light); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition-fast); margin-top: 4px; }
.blog-link:hover { gap: 10px; }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0a0a12 0%, #050510 100%);
    border-top: 1px solid var(--border-subtle);
    padding: 0;
    position: relative;
    z-index: 1;
}
.footer-top {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-cta-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.footer-cta-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-newsletter {
    display: flex;
    gap: 8px;
    min-width: 280px;
}
.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: border var(--transition-fast);
    font-size: 0.85rem;
}
.footer-newsletter input:focus { border-color: var(--accent-light); }
.footer-newsletter button {
    padding: 12px 22px;
    border-radius: 50px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.footer-newsletter button:hover { box-shadow: 0 4px 24px var(--accent-glow); transform: translateY(-2px); }
.footer-main { padding: 50px 0 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-smooth);
    font-size: 1rem;
}
.footer-socials a:hover { background: var(--accent-gradient); color: #fff; box-shadow: 0 4px 20px var(--accent-glow); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-newsletter { width: 100%; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Utility */
.text-accent { color: var(--accent-light); }
@media (max-width: 1024px) { .desktop-nav { display: none; } }