:root {
    --clr-bg: #0a0f1d;
    --clr-bg-alt: #0f1629;
    --clr-surface: #131b30;
    --clr-surface-hover: #1a2440;
    --clr-border: rgba(126, 217, 87, 0.12);
    --clr-border-hover: rgba(126, 217, 87, 0.3);
    --clr-green: #7ed957;
    --clr-green-dim: rgba(126, 217, 87, 0.1);
    --clr-green-glow: rgba(126, 217, 87, 0.25);
    --clr-cyan: #00b8d4;
    --clr-purple: #9333ea;
    --clr-blue: #3b82f6;
    --clr-text: #f0f4f8;
    --clr-text-secondary: #94a3b8;
    --clr-text-muted: #64748b;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(126, 217, 87, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-sans);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Text Utilities */
.text-green { color: var(--clr-green); }
.text-white { color: #fff; }

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(12px) saturate(1.3);
}

.navbar.scrolled {
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-container { padding: 14px 40px; }
}

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

.nav-logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(3);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-logo-sub {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: var(--clr-green);
    font-weight: 500;
    margin-top: 2px;
}

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

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text-secondary);
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--clr-text);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 15, 29, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-120%);
    transition: var(--transition);
    border-bottom: 1px solid var(--clr-border);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-text-secondary);
    padding: 8px 0;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--clr-text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 15px; }

.btn-primary {
    background: var(--clr-green);
    color: #0a0f1d;
}

.btn-primary:hover {
    background: #6bc84a;
    box-shadow: 0 0 30px var(--clr-green-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--clr-border-hover);
    color: var(--clr-text);
}

.btn-outline:hover {
    border-color: var(--clr-green);
    color: var(--clr-green);
    box-shadow: 0 0 20px var(--clr-green-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-text-secondary);
    padding: 12px 20px;
}

.btn-ghost:hover {
    color: var(--clr-text);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(126, 217, 87, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(0, 184, 212, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(147, 51, 234, 0.04) 0%, transparent 70%);
}

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

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 60px;
}

@media (min-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--clr-green-dim);
    border: 1px solid var(--clr-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-green);
    width: fit-content;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-green), var(--clr-cyan));
    border-radius: 2px;
}

.hero-desc {
    font-size: 16px;
    color: var(--clr-text-secondary);
    line-height: 1.7;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .globe-container {
        width: 440px;
        height: 440px;
    }
}

.globe-orbits {
    position: absolute;
    inset: 0;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1.5px solid rgba(126, 217, 87, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spin linear infinite;
}

.orbit-1 {
    width: 100%;
    height: 100%;
    animation-duration: 20s;
}

.orbit-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(0, 184, 212, 0.15);
    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(147, 51, 234, 0.12);
    animation-duration: 10s;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.globe-glow-pulse {
    position: absolute;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 217, 87, 0.15) 0%, rgba(0, 184, 212, 0.05) 40%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 1; }
}

.globe-img {
    position: relative;
    z-index: 1;
    width: 220px;
    height: auto;
    animation: float-g 6s ease-in-out infinite;
    filter: brightness(1.8) contrast(1.2) saturate(1.5);
}

@media (min-width: 768px) {
    .globe-img { width: 260px; }
}

@keyframes float-g {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.robot-hand-img {
    position: absolute;
    bottom: -10px;
    left: -30px;
    width: 150px;
    height: auto;
    z-index: 2;
    animation: float-g 6s ease-in-out infinite;
    animation-delay: -3s;
    filter: brightness(1.3) contrast(1.1);
}

@media (min-width: 768px) {
    .robot-hand-img {
        bottom: -5px;
        left: -40px;
        width: 170px;
    }
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(15, 22, 41, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-text);
    animation: float-badge 6s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}

.floating-badge i {
    font-size: 12px;
    color: var(--clr-green);
}

.badge-1 { top: 2%; right: 5%; animation-delay: 0s; }
.badge-2 { bottom: 30%; right: -5px; animation-delay: -2s; }
.badge-3 { bottom: 30%; left: -5px; animation-delay: -4s; }
.badge-4 { top: 25%; left: 2%; animation-delay: -1s; }
.badge-5 { top: 2%; left: 10%; animation-delay: -3s; }
.badge-6 { bottom: 5%; right: 10%; animation-delay: -5s; }
.badge-7 { bottom: 5%; left: 10%; animation-delay: -1.5s; }
.badge-8 { top: 50%; right: 0; animation-delay: -3.5s; }
.badge-9 { top: 50%; left: 0; animation-delay: -0.5s; }
.badge-10 { bottom: 55%; left: 50%; animation-delay: -4.5s; }

@media (min-width: 768px) {
    .badge-1 { top: 3%; right: 10%; }
    .badge-2 { bottom: 28%; right: 5%; }
    .badge-3 { bottom: 28%; left: 5%; }
    .badge-4 { top: 22%; left: 5%; }
    .badge-5 { top: 3%; left: 12%; }
    .badge-6 { bottom: 5%; right: 15%; }
    .badge-7 { bottom: 5%; left: 15%; }
    .badge-8 { top: 48%; right: 5%; }
    .badge-9 { top: 48%; left: 5%; }
    .badge-10 { bottom: 55%; left: 50%; }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Stats */
.stats {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    background: rgba(15, 22, 41, 0.3);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-text);
    letter-spacing: -0.03em;
    display: inline;
}

@media (min-width: 768px) {
    .stat-number { font-size: 48px; }
}

.stat-plus,
.stat-percent {
    font-size: 40px;
    font-weight: 800;
    color: var(--clr-green);
    letter-spacing: -0.03em;
    display: inline;
}

@media (min-width: 768px) {
    .stat-plus,
    .stat-percent { font-size: 48px; }
}

.stat-label {
    font-size: 13px;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-tag {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--clr-green-dim);
    border: 1px solid var(--clr-border);
    font-size: 12px;
    font-weight: 600;
    color: var(--clr-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: var(--clr-text-secondary);
    max-width: 540px;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--clr-surface-hover);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.service-icon--green {
    color: var(--clr-green);
    background: rgba(126, 217, 87, 0.12);
    border: 1px solid rgba(126, 217, 87, 0.2);
}

.service-icon--purple {
    color: var(--clr-purple);
    background: rgba(147, 51, 234, 0.12);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.service-icon--blue {
    color: var(--clr-blue);
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
}

.service-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.service-list li {
    font-size: 14px;
    color: var(--clr-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    font-size: 12px;
    color: var(--clr-green);
    flex-shrink: 0;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: rgba(15, 22, 41, 0.3);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.why-card:hover {
    border-color: var(--clr-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--clr-green-dim);
    color: var(--clr-green);
    border: 1px solid rgba(126, 217, 87, 0.15);
}

.why-title {
    font-size: 20px;
    font-weight: 700;
}

.why-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 280px;
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr 1fr;
        padding: 56px 56px;
    }
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-content .section-title {
    text-align: left;
}

.contact-content .section-desc {
    text-align: left;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(10, 15, 29, 0.4);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--clr-border-hover);
    background: rgba(10, 15, 29, 0.6);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--clr-green-dim);
    color: var(--clr-green);
    flex-shrink: 0;
}

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

.contact-method-label {
    font-size: 12px;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-method-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text);
}

.contact-visual {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.contact-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 217, 87, 0.08) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.contact-code {
    position: relative;
    z-index: 1;
    background: rgba(10, 15, 29, 0.6);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', 'Fira Mono', monospace;
    font-size: 14px;
    line-height: 1.8;
    width: 100%;
    max-width: 340px;
}

.code-line { color: var(--clr-text-secondary); }
.code-indent { padding-left: 20px; }
.code-indent-2 { padding-left: 40px; }
.code-keyword { color: #c084fc; }
.code-fn { color: #60a5fa; }
.code-str { color: var(--clr-green); }

/* Footer */
.footer {
    border-top: 1px solid var(--clr-border);
    padding-top: 60px;
    background: rgba(15, 22, 41, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.6;
    max-width: 300px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--clr-text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 14px;
}

.footer-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--clr-green);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--clr-text-muted);
    transition: var(--transition);
    position: relative;
    width: fit-content;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--clr-green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-green);
}

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

.footer-contact-link i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    transition: var(--transition);
    font-size: 14px;
}

.footer-social-link:hover {
    color: var(--clr-green);
    border-color: var(--clr-green);
    background: var(--clr-green-dim);
}

.footer-bottom {
    padding: 24px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--clr-green);
    border-radius: 1px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--clr-text-muted);
    text-align: center;
}

/* Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-divider {
        margin: 0 auto;
    }

    .hero-desc {
        max-width: 100%;
    }

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

    .hero-badge {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .globe-container {
        width: 280px;
        height: 280px;
    }

    .globe-img {
        width: 160px;
    }

    .robot-hand-img {
        width: 110px;
        bottom: -5px;
        left: -20px;
    }

    .floating-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    .floating-badge i {
        font-size: 12px;
    }

    .badge-1 { top: 2%; right: 2%; }
    .badge-2 { bottom: 25%; right: -5px; }
    .badge-3 { bottom: 25%; left: -5px; }
    .badge-4 { top: 22%; left: 0; }
    .badge-5 { top: 2%; left: 5%; }
    .badge-6 { bottom: 5%; right: 5%; }
    .badge-7 { bottom: 5%; left: 5%; }
    .badge-8 { top: 48%; right: -5px; }
    .badge-9 { top: 48%; left: -5px; }
    .badge-10 { bottom: 52%; left: 50%; }

    .stats {
        padding: 40px 0;
    }

    .stats-container {
        gap: 24px;
    }

    .stat-number,
    .stat-plus,
    .stat-percent {
        font-size: 32px;
    }

    .services,
    .why-us,
    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .footer {
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .nav-container {
        padding: 10px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .service-card {
        padding: 24px;
    }
}
