:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --secondary: #6366F1;
    --accent: #10B981;
    --dark: #0F172A;
    --grey-900: #020617;
    --grey-800: #1E293B;
    --grey-600: #475569;
    --grey-400: #94A3B8;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #0066FF 0%, #6366F1 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --container: 1280px;
    /* Widened for more breath */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--grey-800);
    background-color: var(--white);
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
    line-height: 1.7;
    /* Increased for readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Animated Grid */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

@keyframes pan {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 4rem;
    /* Increased from 3rem */
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    /* More horizontal breathing for grids */
}

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

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

.text-center {
    text-align: center;
}

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

.text-white {
    color: var(--white);
}

.mb-20 {
    margin-bottom: 3rem;
}

.mb-60 {
    margin-bottom: 7.5rem;
}

.mt-20 {
    margin-top: 3rem;
}

.mt-60 {
    margin-top: 7.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    /* Snappier button feel */
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0, 102, 255, 0.5);
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

.btn-secondary {
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.btn-secondary:hover {
    background: #D1E4FF;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.85rem;
    /* Slightly larger */
    font-weight: 900;
    letter-spacing: -1.5px;
    /* Cleaned up spacing */
    color: var(--grey-900);
    text-decoration: none;
    margin-right: 4rem;
    /* Direct separation from links */
    flex-shrink: 0;
}

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

.nav-links {
    display: flex;
    gap: 4rem;
    /* More space between each link */
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6rem;
    /* significantly more space between links and CTA */
}

.nav-links a {
    text-decoration: none;
    color: var(--grey-600);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    /* Snappier text hover */
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
    /* Snappier underline */
    transform: translateX(-50%);
}

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

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

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

.hero h1 {
    font-size: 4.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    color: var(--grey-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    /* More space after badge */
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.hero-bullets {
    list-style: none;
    margin-bottom: 3rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--grey-800);
}

.hero-bullets i {
    color: var(--accent);
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
}

.hero-visual {
    position: relative;
}

.visual-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.section {
    padding: 160px 0;
    /* Even more space between major sections */
}

.problem-solution {
    background: var(--light);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    /* More space before the content starts */
    line-height: 1.2;
}

.problem-card,
.solution-card {
    padding: 4.5rem;
    /* More internal padding */
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.problem-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 40px 80px -20px rgba(0, 102, 255, 0.3);
}

.solution-card h3 {
    color: var(--white);
}

.list-problem li i {
    color: #EF4444;
}

.list-solution li i {
    color: var(--accent);
}

/* Benefits Grid */
.benefits-bg {
    background: var(--grey-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem 3rem;
    /* More internal padding */
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease-out;
    /* Faster card reaction */
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    margin-bottom: 2rem;
}

.benefit-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--grey-400);
    font-size: 0.95rem;
}

/* Mini Features */
.mini-feature {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.mini-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.mini-feature i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 102, 255, 0.05);
}

.form-group label {
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--grey-800);
}

.form-group input,
.form-group textarea {
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.05);
}

/* Stats Section */
.social-proof {
    background: var(--dark);
    padding: 100px 0;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.reveal-stagger.revealed>* {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed>*:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal-stagger.revealed>*:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-stagger.revealed>*:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal-stagger.revealed>*:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal-stagger.revealed>*:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal-stagger.revealed>*:nth-child(6) {
    transition-delay: 0.6s;
}

/* Mesh Gradient Effect for Hero */
.hero::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 102, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.03) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
    filter: blur(80px);
    z-index: -2;
}

/* Footer Improvements */
.footer {
    padding: 120px 0 60px;
    /* More padding for footer */
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand .logo {
    letter-spacing: -1.5px;
}

.footer h6 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--grey-900);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    text-decoration: none;
    color: var(--grey-600);
    transition: all 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--grey-800);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    color: var(--grey-400);
    font-size: 0.875rem;
}

/* Utils */
.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}

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

.text-white {
    color: var(--white) !important;
}

.mb-20 {
    margin-bottom: 2.5rem;
    /* Increased for air */
}

.mb-60 {
    margin-bottom: 6rem;
    /* Increased for air */
}

.mt-20 {
    margin-top: 2.5rem;
}

.mt-60 {
    margin-top: 6rem;
}

/* Responsive */
@media (max-width: 991px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .nav-links {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        gap: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .problem-card,
    .solution-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 1.5rem;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }
}