:root {
    --blue: #5B8BD0;
    --purple: #7C5EB1;
    --pink: #E91E63;
    --orange: #F47C3C;
    --yellow: #FFC107;
    --dark: #1e272e;
    --light: #f1f2f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1140px; margin: auto; padding: 0 20px; }

/* Header */
header { padding: 15px 0; background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 2rem; font-weight: 700; line-height: 1; }
.logo small { display: block; font-size: 0.7rem; color: #777; letter-spacing: 2px; }
.logo .m { color: var(--blue); } .logo .d { color: var(--purple); } .logo .x { color: var(--orange); }

.desktop-nav a { text-decoration: none; color: var(--dark); margin-left: 20px; font-weight: 600; font-size: 0.9rem; }
.nav-phone { background: var(--dark); color: white !important; padding: 10px 20px; border-radius: 50px; }

/* Hero */
.hero { padding: 120px 0; background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); text-align: center; }
.location-badge { background: var(--pink); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.hero h1 { font-size: 3.5rem; margin: 25px 0; line-height: 1.1; }
.hero h1 span { background: linear-gradient(to right, var(--blue), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.2rem; color: #57606f; max-width: 700px; margin: 0 auto 40px; }

.btn-main { background: var(--blue); color: white; padding: 18px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 20px rgba(91, 139, 208, 0.3); transition: 0.3s; }
.btn-wa { background: #25d366; color: white; padding: 18px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; margin-left: 10px; transition: 0.3s; }

/* Industries */
.industries { padding: 100px 0; background: #fff; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { padding: 40px; background: var(--light); border-radius: 25px; transition: 0.4s; border-bottom: 5px solid transparent; }
.card:hover { transform: translateY(-10px); border-bottom: 5px solid var(--purple); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-icon { font-size: 3rem; color: var(--orange); margin-bottom: 20px; }

/* Tech Section */
.tech-section { padding: 100px 0; background: var(--dark); color: white; }
.tech-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.tech-image { flex: 1; min-width: 300px; }
.tech-image img { width: 100%; filter: drop-shadow(0 0 20px var(--blue)); }
.tech-text { flex: 1; min-width: 300px; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-size: 1.1rem; }
.check-list i { color: var(--yellow); margin-right: 10px; }

/* Contact Form */
.contact { padding: 100px 0; background: var(--light); }
.contact-box { max-width: 800px; margin: auto; background: white; padding: 50px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.main-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.main-form input, .main-form textarea { width: 100%; padding: 15px; border-radius: 10px; border: 1px solid #ddd; margin-bottom: 20px; font-family: inherit; }
.form-btns { display: flex; gap: 15px; }
.btn-submit { flex: 1; background: var(--pink); color: white; border: none; padding: 15px; border-radius: 10px; font-weight: 700; cursor: pointer; }
.btn-wa-big { flex: 1; background: #25d366; color: white; text-decoration: none; text-align: center; padding: 15px; border-radius: 10px; font-weight: 700; }

footer { background: #111; color: #777; text-align: center; padding: 50px 0; }
.footer-logo { color: white; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; }
.social-icons a { color: var(--blue); font-size: 2rem; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .main-form .row { grid-template-columns: 1fr; }
    .form-btns { flex-direction: column; }
}