:root {
    --font-body: "DM Sans", sans-serif;
    --font-display: "Outfit", sans-serif;
    --primary: #020617; /* Blue darker from React version */
    --primary-blue: #1e4a91;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.5;
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 992px) {
    .grid { grid-template-columns: 1fr 1fr; }
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.300s;
    background: transparent;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
    transition: all 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img { 
    height: 40px; 
    object-fit: contain;
}

.logo span {
    color: var(--primary-blue);
    display: none;
}

@media (min-width: 640px) {
    .logo span { display: block; }
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-links .btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.25);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary-blue);
}

.close-menu {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
}

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

/* Old mobile nav cleanup */
.mobile-nav { display: none !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary { background: var(--primary-blue); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }

.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3); }

.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-outline:hover { background: #f8fafc; }

.btn-lg { padding: 0.75rem 2rem; font-size: 1.0rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
    padding: 10rem 0 5rem;
    background: radial-gradient(circle at top right, #f0f9ff, transparent 50%);
}

.badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid #dbeafe;
    margin-bottom: 1.5rem;
}

.ping {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    position: relative;
}

.ping::after {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    animation: ping 1.5s infinite;
}

@keyframes ping { 75%, 100% { transform: scale(3); opacity: 0; } }

.badge { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

h1 { font-family: 'Outfit', sans-serif; font-size: 3.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; }
h1 span { color: var(--secondary); background: none; -webkit-background-clip: initial; background-clip: initial; }

.hero p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; }

.hero-stats { 
    display: grid; 
    grid-template-columns: 1fr;
    gap: 1rem; 
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.stat { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    font-size: 0.9375rem; 
    font-weight: 500; 
    color: var(--text-muted); 
}

.stat i { 
    color: var(--secondary); 
    width: 20px; 
    height: 20px; 
    flex-shrink: 0;
}

/* Hero Image Container */
.hero-image-container { position: relative; display: flex; justify-content: center; }
.blob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: radial-gradient(circle, rgba(14, 165, 233, 0.1), rgba(249, 115, 22, 0.1)); blur: 60px; border-radius: 50%; z-index: -1; }

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    position: relative;
    max-width: 500px;
}

.glass-panel img { width: 100%; border-radius: 1rem; }

.floating { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    z-index: 10;
}

.top-right { top: -1rem; right: -1.5rem; }
.bottom-left { bottom: -2rem; left: -1.5rem; }

.icon-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.bg-green { background: #22c55e; }
.bg-orange { background: var(--secondary); }

.floating-badge small { display: block; font-size: 0.625rem; color: var(--text-muted); font-weight: 700; }
.floating-badge strong { font-size: 0.875rem; }

/* Features */
.features { padding: 8rem 0; background: #f8fafc; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 5rem; }
.tag { color: var(--secondary); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; display: block; margin-bottom: 1rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; }
.section-header p { color: var(--text-muted); font-size: 1.125rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card { background: white; padding: 2.5rem; border-radius: 1.5rem; border: 1px solid var(--border); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05); }

.icon-box { width: 56px; height: 56px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.bg-blue { background: rgba(14, 165, 233, 0.1); color: var(--primary); }
.bg-orange { background: rgba(249, 115, 22, 0.1); color: var(--secondary); }
.bg-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.bg-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.bg-pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.bg-cyan { background: rgba(6, 182, 212, 0.1); color: #06b6d4; }

.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }

/* About */
.about { padding: 8rem 0; }
.about-visual { position: relative; height: 500px; }
.about-bg { position: absolute; inset: 0; background: rgba(249, 115, 22, 0.05); border-radius: 2rem; transform: rotate(-3deg); }
.about-card { position: relative; height: 100%; background: linear-gradient(135deg, var(--primary), #1d4ed8); border-radius: 2rem; padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; color: white; overflow: hidden; box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3); }
.about-card::after { content: ""; position: absolute; inset: 0; opacity: 0.1; background: radial-gradient(circle at center, white 1px, transparent 1px); background-size: 20px 20px; }

.main-icon { width: 80px; height: 80px; opacity: 0.8; margin-bottom: 2rem; }
.about-content h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-content p { color: #e0f2fe; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mini-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); }
.mini-stat strong { display: block; font-size: 2rem; margin-bottom: 0.25rem; }
.mini-stat small { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; opacity: 0.8; }

.about-features { margin-top: 3rem; display: grid; gap: 2rem; }
.about-item { display: flex; gap: 1.5rem; }
.icon-sm { width: 48px; height: 48px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bg-blue-soft { background: #eff6ff; color: var(--primary); }
.bg-orange-soft { background: #fff7ed; color: var(--secondary); }
.about-item h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-item p { color: var(--text-muted); font-size: 0.9375rem; }

/* Contact */
.contact { padding: 8rem 0; position: relative; overflow: hidden; }
.contact::after { content: ""; position: absolute; top: 0; right: 0; width: 30%; height: 100%; background: #eff6ff; transform: skewX(-12deg) translateX(50%); z-index: -1; }

.benefits-box { background: rgba(14, 165, 233, 0.05); padding: 2rem; border-radius: 1.5rem; border: 1px solid rgba(14, 165, 233, 0.1); margin-top: 2rem; }
.benefits-box h3 { font-size: 1.125rem; color: var(--primary); font-weight: 700; margin-bottom: 1rem; }
.benefits-box ul { list-style: none; display: grid; gap: 0.75rem; }
.benefits-box li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.9375rem; color: var(--text-muted); }
.dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px rgba(249, 115, 22, 0.5);
    display: inline-block;
    flex-shrink: 0;
}

.contact-form-container { background: white; padding: 3rem; border-radius: 2rem; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid var(--border); }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
input, textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border); outline: none; transition: all 0.3s; font-family: inherit; }
input:focus, textarea:focus { border-color: var(--primary); ring: 2px solid rgba(14,165,233,0.1); }


.form-success-message {
    display: none;
    align-items: center;
    gap: 1.5rem;
    background: #ecfdf5;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #10b981;
    margin-top: 1.5rem;
    animation: slideUp 0.4s ease-out;
}

.form-success-message.show {
    display: flex;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-success-message h4 {
    color: #065f46;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.form-success-message p {
    color: #065f46;
    font-size: 0.875rem;
    margin: 0;
}

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


/* Footer */
.footer {
    padding: 5rem 0 3rem;
    background: white;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--secondary);
}

.footer-contact i {
    color: var(--primary-blue);
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.social-link i {
    width: 20px;
    height: 20px;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(220, 39, 67, 0.3);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 119, 181, 0.3);
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero { padding-top: 8rem; }
    .navbar { background: white; padding: 1rem 0; }
}
