:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --dark: #050505;
    --light: #f8fafc;
    --gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    position: relative;
}

/* ===== IMPROVEMENT 1: Animated Gradient Mesh Background ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background:
        radial-gradient(ellipse 600px 600px at 20% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 60% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    animation: meshFloat 20s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% {
        background:
            radial-gradient(ellipse 600px 600px at 20% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
            radial-gradient(ellipse 500px 500px at 80% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 400px 400px at 60% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    }

    50% {
        background:
            radial-gradient(ellipse 700px 700px at 40% 50%, rgba(99, 102, 241, 0.10) 0%, transparent 70%),
            radial-gradient(ellipse 600px 600px at 70% 20%, rgba(236, 72, 153, 0.10) 0%, transparent 70%),
            radial-gradient(ellipse 500px 500px at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    }

    100% {
        background:
            radial-gradient(ellipse 500px 500px at 70% 60%, rgba(99, 102, 241, 0.14) 0%, transparent 70%),
            radial-gradient(ellipse 600px 600px at 20% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 400px 400px at 50% 10%, rgba(99, 102, 241, 0.10) 0%, transparent 70%);
    }
}

/* ===== IMPROVEMENT 4: Noise Texture Overlay ===== */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

/* ===== IMPROVEMENT 5: Cursor Glow Effect ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ===== IMPROVEMENT 9: Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 10000;
    transition: width 0.1s linear;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Header & Nav ===== */
header {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* IMPROVEMENT 9: Header enhanced on scroll */
header.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #6b5cf6, #c026d3, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    /* gradient is applied on parent .logo — span inherits it */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

/* IMPROVEMENT 10: Animated underline on nav links */
.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: var(--light);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light);
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
}

.mobile-link {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    transition: 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-link:hover {
    color: var(--primary);
}

/* ===== Buttons ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* IMPROVEMENT 2: Pulse glow on CTA button */
.hero-btns .btn-primary {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.5), 0 0 80px rgba(236, 72, 153, 0.2);
    }
}

/* IMPROVEMENT 10: Ripple effect on button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: var(--light) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--glass);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Hero Section ===== */
.hero {
    padding: 180px 0 100px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* IMPROVEMENT 8: More aggressive letter-spacing on hero title */
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2.5px;
}

.hero h1 span {
    background: linear-gradient(to right, #818cf8, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* IMPROVEMENT 8: Lighter weight on subtitle */
.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* ===== Advanced SEO Widget ===== */
/* IMPROVEMENT 2: Ambient glow on widget */
.score-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 80px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
    animation: widgetFloat 6s ease-in-out infinite;
}

@keyframes widgetFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Ambient glow ring around widget */
.score-widget::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), transparent, rgba(236, 72, 153, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.score-widget:hover::before {
    opacity: 1;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.widget-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.widget-body {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: var(--secondary);
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.score-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

.metrics {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--light);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transform-origin: left;
    animation: barFill 1.5s ease-out forwards;
}

@keyframes barFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.widget-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-footer i {
    color: var(--secondary);
}

/* ===== IMPROVEMENT 7: Stats Counter Section ===== */
.stats {
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 100px 0;
    position: relative;
}

.why-content {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(5, 5, 5, 0.4) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.why-text h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1.5px;
}

.benefit-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.benefit-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-box {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(79, 70, 229, 0.2);
    transition: 0.3s;
}

.benefit-list li:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.benefit-list h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.benefit-list p {
    color: var(--light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.benefit-list .detail-text {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

/* IMPROVEMENT 8: Gradient text on section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.section-header p {
    font-weight: 300;
    color: var(--gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: 0.4s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* IMPROVEMENT 2: Hover glow on service cards */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(79, 70, 229, 0.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

/* IMPROVEMENT 10: Bounce animation on service icons */
.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: 0.4s;
    display: inline-block;
}

.service-card:hover i {
    animation: iconBounce 0.6s ease;
    color: var(--secondary);
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-12px);
    }

    50% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(-8px);
    }
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ===== Guarantees Section ===== */
.guarantees {
    padding: 120px 0;
    background: rgba(5, 5, 5, 0.6);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.guarantee-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.4s;
}

.guarantee-card.highlight {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(5, 5, 5, 0.4) 100%);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-15px);
}

.guarantee-card.highlight::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.guarantee-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.guarantee-card.highlight:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.2);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light);
    border: 1px solid var(--glass-border);
    transition: 0.4s;
}

.guarantee-card.highlight .guarantee-icon {
    background: var(--primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1);
}

.guarantee-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.guarantee-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== IMPROVEMENT 6: Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: -1rem;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    color: var(--light);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ===== Process Section ===== */
.process {
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: 0.4s;
    z-index: 2;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px -10px rgba(236, 72, 153, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: 0.4s;
}

.step:hover .step-number {
    -webkit-text-stroke: 1px var(--secondary);
    color: rgba(236, 72, 153, 0.1);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
}

.line-connector {
    flex: 0 0 50px;
    height: 2px;
    background: var(--glass-border);
    margin-top: 5rem;
    position: relative;
    border: none;
    padding: 0;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method strong {
    font-size: 1.1rem;
    color: var(--light);
}

.glass-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
}

/* IMPROVEMENT 10: Floating labels on inputs */
.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

input,
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
    background: #020202;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--gray);
    margin: 1.5rem 0;
    max-width: 400px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: 0.3s;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method strong {
    font-size: 1.1rem;
    color: var(--light);
}

.glass-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
}

/* IMPROVEMENT 10: Floating labels on inputs */
.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

input,
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ===== Footer ===== */
footer {
    background: #020202;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--gray);
    margin: 1.5rem 0;
    max-width: 400px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: 0.3s;
}

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

/* ===== IMPROVEMENT 3: Staggered Entrance Animations ===== */
.observe-me {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.observe-me.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered children */
.stagger-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-child.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
        margin-top: 100px;
        align-items: start;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }

    .hero p {
        margin: 0 auto 2.5rem;
        font-size: 0.95rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    nav .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .line-connector {
        width: 2px;
        height: 50px;
        margin: 1rem 0;
        flex: none;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }

    .why-content {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links a {
        display: block;
        margin: 0.5rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .cursor-glow {
        display: none;
    }
}

/* ===== Chat Widget Styles ===== */
#chatbot-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    font-family: 'Outfit', sans-serif;
}

#chatbot-toggle-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathingGlow 3s infinite alternate;
}

@keyframes breathingGlow {
    0% { box-shadow: 0 0 15px rgba(99, 102, 241, 0.4), 0 0 30px rgba(236, 72, 153, 0.2); transform: scale(1); }
    100% { box-shadow: 0 0 25px rgba(99, 102, 241, 0.8), 0 0 50px rgba(236, 72, 153, 0.6); transform: scale(1.05); }
}

#chatbot-toggle-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.7);
    animation: none;
}

#chatbot-window {
    display: none;
    flex-direction: column;
    width: 330px;
    height: 480px;
    max-height: calc(100vh - 150px); 
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
    position: absolute;
    bottom: 80px;
    right: 0;
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chatPopIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

#chatbot-header {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.05));
    color: white;
    padding: 20px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

#chatbot-close-btn {
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 22px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

#chatbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

#chatbot-messages {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#chatbot-messages::-webkit-scrollbar {
    width: 5px;
}
#chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.chat-message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.3s ease-out;
}

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

.bot-message {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom-left-radius: 4px;
}

.user-message {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-bottom-right-radius: 4px;
    margin-right: 5px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

#chatbot-input-area {
    display: flex;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

#chatbot-input {
    flex-grow: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
}

#chatbot-input:focus {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.1);
}

#chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#chatbot-send-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}

#chatbot-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

.loading-indicator {
    display: none;
    align-self: flex-start;
    color: var(--gray);
    font-size: 0.8rem;
    font-style: italic;
    padding: 0 15px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ===== Mobile Fixes ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .hero h1, .contact-info h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }
    .contact-method strong {
        word-break: break-word;
        font-size: 0.9rem;
    }
    .glass-form {
        padding: 1.5rem;
    }
    #chatbot-widget {
        bottom: 15px;
        right: 15px;
    }
    #chatbot-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    #chatbot-window {
        width: calc(100vw - 30px);
        max-height: calc(100vh - 100px);
        bottom: 60px;
        right: 0;
    }
    .why-content {
        padding: 2rem 1rem !important;
    }
    .why-text h2 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        margin-bottom: 2rem;
    }
    .benefit-list {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .benefit-list li {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .benefit-list p {
        font-size: 0.9rem;
    }
}