/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

:root {
    --purple: #7C3AED;
    --purple-light: #A78BFA;
    --purple-dark: #6D28D9;
    --blue: #3B82F6;
    --green: #10B981;
    --hero-bg: #0F0A1A;
    --dark-footer: #0F172A;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --gradient: linear-gradient(135deg, var(--purple), var(--blue));
    --gradient-subtle: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(59,130,246,0.08));
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-purple: 0 10px 40px -10px rgba(124,58,237,0.25);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
}

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

.logo-img {
    width: 38px; height: 38px; border-radius: 10px; object-fit: contain;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--white);
    transition: color 0.4s ease;
}

.navbar.scrolled .logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex; gap: 32px; align-items: center;
}

.nav-links a {
    font-size: 0.9rem; font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition); position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-500);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gray-900);
}

.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--gradient);
    transition: var(--transition); border-radius: 1px;
}

.nav-links a:hover::after { width: 100%; }

.nav-course-link {
    color: #FBBF24 !important;
    font-weight: 600 !important;
}

.navbar.scrolled .nav-course-link {
    color: #D97706 !important;
}

.nav-cta {
    padding: 10px 24px; border-radius: 50px;
    background: var(--gradient); color: var(--white);
    font-size: 0.85rem; font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(124,58,237,0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}

.hamburger span {
    width: 22px; height: 2px; background: var(--white);
    transition: var(--transition); border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--gray-700);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; position: relative;
    padding: 120px 24px 80px; overflow: hidden;
    background: var(--hero-bg);
}

.hero-bg-elements {
    position: absolute; inset: 0; pointer-events: none;
}

.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px; height: 600px; top: -150px; right: -150px;
    background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 70%);
}

.orb-2 {
    width: 500px; height: 500px; bottom: -100px; left: -150px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    animation-delay: -7s;
}

.orb-3 {
    width: 350px; height: 350px; top: 35%; left: 45%;
    background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
    max-width: 800px; text-align: center; position: relative; z-index: 1;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 50px; font-size: 0.85rem;
    color: var(--purple-light); margin-bottom: 28px;
    opacity: 0; animation: fadeInUp 0.7s ease 0.1s forwards;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800; line-height: 1.08;
    margin-bottom: 24px; color: var(--white);
    letter-spacing: -0.02em;
    opacity: 0; animation: fadeInUp 0.7s ease 0.2s forwards;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--gray-400); max-width: 560px;
    margin: 0 auto 36px; line-height: 1.7;
    opacity: 0; animation: fadeInUp 0.7s ease 0.35s forwards;
}

.hero-actions {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 56px;
    opacity: 0; animation: fadeInUp 0.7s ease 0.5s forwards;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient); color: var(--white);
    box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.btn-outline {
    background: rgba(255,255,255,0.06); color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
    border-color: rgba(124,58,237,0.5);
    background: rgba(124,58,237,0.08);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* Light section button overrides */
.pricing .btn-outline,
.contact .btn-outline {
    color: var(--gray-700);
    border-color: var(--gray-300);
    background: var(--white);
}

.pricing .btn-outline:hover,
.contact .btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(124,58,237,0.04);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 40px;
    opacity: 0; animation: fadeInUp 0.7s ease 0.65s forwards;
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem; font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    display: block; font-size: 0.8rem;
    color: var(--gray-500); margin-top: 4px;
}

.stat-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center; margin-bottom: 64px;
}

.section-tag {
    display: inline-block; padding: 6px 18px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 50px; font-size: 0.8rem;
    color: var(--purple); margin-bottom: 16px;
    font-weight: 600; letter-spacing: 0.02em;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700; margin-bottom: 14px;
    color: var(--gray-900); letter-spacing: -0.02em;
}

.section-header p {
    color: var(--gray-500); font-size: 1.1rem;
    max-width: 520px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 24px; max-width: 1200px; margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 28px; transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(124,58,237,0.08);
}

.card-glow {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient); opacity: 0;
    transition: var(--transition);
}

.service-card:hover .card-glow { opacity: 1; }

.card-icon {
    font-size: 2rem; margin-bottom: 14px;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-xs);
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
    color: var(--gray-900);
}

.card-tagline {
    color: var(--purple); font-size: 0.82rem;
    font-style: italic; margin-bottom: 18px;
    opacity: 0.8;
}

.card-examples {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
}

.card-examples li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.82rem; color: var(--gray-500); line-height: 1.5;
}

.example-icon { flex-shrink: 0; font-size: 0.9rem; }

.card-pricing {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 16px; padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.price-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-type {
    font-size: 0.8rem; color: var(--gray-400);
}

.card-cta {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--purple); font-size: 0.9rem; font-weight: 600;
    transition: var(--transition);
}

.card-cta:hover {
    color: var(--purple-dark);
    gap: 8px;
}

/* ===== WHY US ===== */
.why-us {
    padding: 100px 24px;
    background: var(--gray-50);
}

.founder-card {
    max-width: 800px; margin: 0 auto 48px;
    display: flex; gap: 28px; align-items: center;
    background: var(--white);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius); padding: 36px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,58,237,0.05);
}

.founder-avatar {
    width: 110px; height: 110px;
    border-radius: 50%; flex-shrink: 0;
    object-fit: cover;
    border: 3px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 0 30px rgba(124,58,237,0.1);
}

.founder-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 2px;
    color: var(--gray-900);
}

.founder-role {
    font-size: 0.85rem; color: var(--purple);
    font-weight: 600; display: block; margin-bottom: 14px;
}

.founder-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}

.founder-tags span {
    font-size: 0.8rem; color: var(--gray-600);
    background: var(--gray-50); padding: 5px 14px;
    border-radius: 50px; border: 1px solid var(--gray-200);
}

.founder-quote {
    font-size: 0.92rem; color: var(--gray-500);
    font-style: italic; line-height: 1.7;
    border-left: 3px solid var(--purple);
    padding-left: 16px; margin-top: 4px;
}

.team-card {
    max-width: 800px; margin: 0 auto 32px;
    display: flex; gap: 20px; align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow-sm);
}

.team-icon {
    font-size: 2.2rem; width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%; flex-shrink: 0;
}

.team-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 700; margin-bottom: 6px;
    color: var(--gray-900);
}

.team-info p {
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.7;
}

.team-info strong {
    color: var(--purple); font-weight: 600;
}

.trust-line {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    margin-top: 32px; padding: 20px 28px;
    background: rgba(124, 58, 237, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-sm);
    max-width: 800px; margin-left: auto; margin-right: auto;
    font-size: 0.88rem; color: var(--gray-600);
}

.trust-divider {
    color: var(--gray-300);
}

.why-grid {
    max-width: 1200px; margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px; transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 1.8rem; margin-bottom: 16px;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-subtle);
    border-radius: var(--radius-xs);
}

.why-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; font-weight: 600; margin-bottom: 10px;
    color: var(--gray-900);
}

.why-card p {
    color: var(--gray-500); font-size: 0.9rem; line-height: 1.7;
}

/* ===== INDUSTRIES ===== */
.industries {
    padding: 80px 24px; max-width: 1200px; margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px; margin-bottom: 24px;
}

.industry-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm); padding: 22px;
    text-align: center; font-size: 0.95rem; font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.industries-note {
    text-align: center; font-size: 0.9rem; color: var(--gray-500);
}

.industries-note a {
    color: var(--purple); font-weight: 600;
    transition: var(--transition);
}

.industries-note a:hover { color: var(--purple-dark); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 24px; background: var(--gray-50);
}

.steps-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gradient); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(124,58,237,0.25);
}

.step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600; margin-bottom: 8px;
    color: var(--gray-900);
}

.step p {
    font-size: 0.85rem; color: var(--gray-500); line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 24px; max-width: 1200px; margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: start;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px; transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2px solid var(--purple);
    transform: scale(1.04);
    box-shadow: var(--shadow-purple);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: var(--shadow-purple), var(--shadow-xl);
}

.pricing-badge {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 24px; background: var(--gradient);
    border-radius: 50px; font-size: 0.78rem;
    font-weight: 700; color: var(--white); white-space: nowrap;
    letter-spacing: 0.03em; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}

.pricing-header {
    text-align: center; margin-bottom: 28px;
    padding-bottom: 28px; border-bottom: 1px solid var(--gray-100);
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--gray-600); margin-bottom: 12px;
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-period {
    font-size: 0.85rem; color: var(--gray-400);
}

.pricing-features {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 28px;
}

.pricing-features li {
    font-size: 0.9rem; color: var(--gray-600);
}

.pricing-card .btn {
    width: 100%; justify-content: center;
}

.pricing-trust {
    max-width: 700px; margin: 48px auto 0;
    text-align: center; padding: 28px;
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-sm);
}

.pricing-trust p {
    font-size: 0.95rem; color: var(--gray-500);
    margin-bottom: 14px; line-height: 1.6;
}

.pricing-trust strong { color: var(--gray-800); }

.pricing-guarantees {
    display: flex; gap: 24px; justify-content: center;
    flex-wrap: wrap; font-size: 0.88rem; color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 24px; max-width: 800px; margin: 0 auto;
}

.faq-list {
    display: flex; flex-direction: column; gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(124,58,237,0.15);
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 600;
    padding: 20px 24px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--gray-800);
    transition: var(--transition);
}

.faq-item h3::after {
    content: '+'; font-size: 1.4rem; font-weight: 400;
    color: var(--purple); transition: var(--transition);
    flex-shrink: 0; margin-left: 16px;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item.active h3 {
    color: var(--purple);
}

.faq-item p {
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.7;
    padding: 0 24px 20px;
    display: none;
}

.faq-item.active p {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 24px;
    background: var(--gray-50);
}

.contact-container {
    max-width: 1000px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}

.contact-info {
    display: flex; flex-direction: column; gap: 24px;
}

.contact-item {
    display: flex; align-items: flex-start; gap: 16px;
}

.contact-icon {
    font-size: 1.3rem; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-xs); flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 2px;
    color: var(--gray-800);
}

.contact-item p {
    font-size: 0.9rem; color: var(--gray-500);
}

.contact-trust {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 22px; margin-top: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-trust h4 {
    font-size: 0.9rem; margin-bottom: 12px;
    color: var(--purple); font-weight: 600;
}

.contact-trust li {
    font-size: 0.85rem; color: var(--gray-500);
    margin-bottom: 6px;
}

.contact-form {
    display: flex; flex-direction: column; gap: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem; font-weight: 500; color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius-xs);
    color: var(--gray-800); font-size: 0.9rem;
    font-family: inherit; transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.btn-arrow { transition: var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ===== FOOTER ===== */
.footer {
    padding: 64px 24px 24px;
    background: var(--dark-footer);
    color: var(--gray-300);
}

.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; margin-bottom: 40px;
}

.footer-logo {
    width: 38px; height: 38px; border-radius: 10px;
    margin-bottom: 14px; object-fit: contain;
}

.footer-brand p {
    color: var(--gray-400); font-size: 0.9rem;
    max-width: 300px; line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.9rem; font-weight: 600;
    margin-bottom: 16px; color: var(--gray-200);
}

.footer-links a {
    display: block; font-size: 0.85rem;
    color: var(--gray-400); margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem; color: var(--gray-500);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366; color: white;
    padding: 14px 22px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999; transition: var(--transition);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-text { display: none; }

@media (min-width: 768px) {
    .whatsapp-text { display: inline; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
    opacity: 1; transform: translateY(0);
}

/* ===== FORM SUCCESS ===== */
.form-success {
    text-align: center; padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.form-success .success-icon {
    font-size: 3rem; margin-bottom: 16px;
}

.form-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; margin-bottom: 8px;
    color: var(--gray-900);
}

.form-success p {
    color: var(--gray-500); font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }

    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px; gap: 20px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active a {
        color: var(--gray-600) !important;
        font-size: 1rem;
    }

    .nav-links.active a:hover {
        color: var(--purple) !important;
    }

    .hamburger { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }

    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.1); }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .founder-card, .team-card {
        flex-direction: column; text-align: center;
    }

    .founder-quote {
        border-left: none; padding-left: 0;
        border-top: 2px solid var(--purple); padding-top: 12px;
    }

    .trust-line { flex-direction: column; gap: 8px; }
    .trust-divider { display: none; }

    .contact-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .hero-actions { flex-direction: column; align-items: center; }

    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .service-card { padding: 20px; }
    .pricing-card { padding: 28px; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}

/* ===== SRIJANIX CHATBOT ===== */
#srijanix-bot {
    position: fixed; bottom: 24px; right: 200px; z-index: 9998;
    font-family: 'Inter', -apple-system, sans-serif;
}

#bot-toggle {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #EF4444); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(245,158,11,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: botPulse 3s ease-in-out infinite;
}

#bot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(245,158,11,0.55);
    animation: none;
}

@keyframes botPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.45); }
    50% { box-shadow: 0 4px 28px rgba(245,158,11,0.65), 0 0 0 8px rgba(245,158,11,0.1); }
}

#bot-window {
    position: absolute; bottom: 70px; right: 0;
    width: 370px; max-height: 520px;
    background: #fff; border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    display: flex; flex-direction: column;
    overflow: hidden;
    animation: botSlideUp 0.3s ease;
}

@keyframes botSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

#bot-header {
    background: var(--gradient); color: white;
    padding: 14px 16px; display: flex;
    align-items: center; justify-content: space-between;
    flex-shrink: 0;
}

#bot-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
    max-height: 300px; min-height: 180px;
    scroll-behavior: smooth;
}

#bot-messages::-webkit-scrollbar { width: 4px; }
#bot-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.bot-msg, .user-msg {
    max-width: 85%; padding: 10px 14px;
    border-radius: 14px; font-size: 0.88rem;
    line-height: 1.55; word-wrap: break-word;
    animation: msgFade 0.25s ease;
}

@keyframes msgFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-msg {
    background: var(--gray-100); color: var(--gray-800);
    align-self: flex-start; border-bottom-left-radius: 4px;
}

.bot-msg a {
    color: var(--purple); font-weight: 600;
    text-decoration: underline;
}

.user-msg {
    background: var(--gradient); color: white;
    align-self: flex-end; border-bottom-right-radius: 4px;
}

.bot-typing {
    align-self: flex-start; padding: 10px 18px;
    background: var(--gray-100); border-radius: 14px;
    border-bottom-left-radius: 4px;
    display: flex; gap: 5px; align-items: center;
}

.bot-typing span {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gray-400);
    animation: typingDot 1.2s ease-in-out infinite;
}

.bot-typing span:nth-child(2) { animation-delay: 0.15s; }
.bot-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

#bot-suggestions {
    padding: 0 16px 8px; display: flex;
    flex-wrap: wrap; gap: 6px;
    flex-shrink: 0;
}

#bot-suggestions:empty { padding: 0; }

.bot-chip {
    padding: 6px 14px; border-radius: 50px;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.18);
    color: var(--purple); font-size: 0.78rem;
    font-weight: 500; cursor: pointer;
    transition: all 0.2s ease; white-space: nowrap;
}

.bot-chip:hover {
    background: rgba(124,58,237,0.12);
    border-color: var(--purple);
    transform: translateY(-1px);
}

#bot-input-area {
    display: flex; gap: 8px; padding: 12px 16px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0; background: #fff;
}

#bot-input {
    flex: 1; padding: 10px 14px; border: 1px solid var(--gray-200);
    border-radius: 50px; font-size: 0.88rem;
    outline: none; font-family: inherit;
    transition: border-color 0.2s ease;
}

#bot-input:focus { border-color: var(--purple); }

#bot-send {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gradient); border: none;
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

#bot-send:hover { transform: scale(1.08); }

/* WhatsApp link inside bot */
.bot-wa-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: #25D366; color: white !important;
    border-radius: 50px; font-size: 0.82rem; font-weight: 600;
    text-decoration: none !important; margin-top: 6px;
    transition: all 0.2s ease;
}

.bot-wa-link:hover { background: #1fb855; transform: translateY(-1px); }

@media (max-width: 480px) {
    #srijanix-bot { bottom: 16px; right: 16px; }
    #bot-window {
        position: fixed;
        bottom: 80px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: 75vh;
    }
    .whatsapp-float { padding: 14px; }
    .whatsapp-float .whatsapp-text { display: none; }
}

@media (max-width: 768px) {
    #srijanix-bot { right: 90px; }
    #bot-window {
        position: fixed;
        bottom: 80px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: 75vh;
    }
}
