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

     /* =========================
   VARIABLES
========================= */

     :root {
         --navy: #0a1628;
         --blue: #1a3a6b;
         --electric: #2d8cf0;
         --cyan: #00d4ff;
         --orange: #ff6b35;
         --light: #f0f6ff;
         --white: #ffffff;
         --gray: #8a9bb5;
         --card-bg: #111d35;
     }

    /* =========================
   BASE
========================= */
  html {
  scroll-behavior: smooth;
}

     body {
         font-family: 'DM Sans', sans-serif;
         background: var(--navy);
         color: var(--white);
         overflow-x: hidden;
     }

/* =========================
   NAVBAR
========================= */
     nav {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         z-index: 100;
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 1rem 1.5rem;
         background: rgba(10, 22, 40, 0.92);
         backdrop-filter: blur(12px);
         border-bottom: 1px solid rgba(45, 140, 240, 0.15);
     }

     .nav-logo {
         font-family: 'Syne', sans-serif;
         font-weight: 800;
         font-size: 1.25rem;
         color: var(--white);
         text-decoration: none;
         display: flex;
         align-items: center;
         gap: 0.5rem;
     }

     .nav-logo span {
         color: var(--cyan);
     }

     .nav-logo .dot {
         width: 8px;
         height: 8px;
         border-radius: 50%;
         background: var(--orange);
         display: inline-block;
     }

     .nav-links {
         display: flex;
         gap: 1.5rem;
         list-style: none;
     }

     .nav-links a {
         color: var(--gray);
         text-decoration: none;
         font-size: 0.85rem;
         font-weight: 500;
         transition: color 0.2s;
     }

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

     .nav-cta {
         background: var(--electric);
         color: #fff;
         padding: 0.5rem 1.1rem;
         border-radius: 50px;
         text-decoration: none;
         font-size: 0.85rem;
         font-weight: 600;
         transition: background 0.2s, transform 0.2s;
     }

     .nav-cta:hover {
         background: var(--cyan);
         transform: scale(1.04);
     }

     @media(max-width: 600px) {
         .nav-links {
             display: none;
         }
     }

   /* =========================
   HERO
========================= */
     .hero {
         min-height: 100svh;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         text-align: center;
         padding: 6rem 1.5rem 3rem;
         position: relative;
         overflow: hidden;
     }

     .hero-bg {
         position: absolute;
         inset: 0;
         z-index: 0;
         background:
             radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 140, 240, 0.18) 0%, transparent 70%),
             radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
             var(--navy);
     }

     .hero-grid {
         position: absolute;
         inset: 0;
         z-index: 0;
         background-image:
             linear-gradient(rgba(45, 140, 240, 0.06) 1px, transparent 1px),
             linear-gradient(90deg, rgba(45, 140, 240, 0.06) 1px, transparent 1px);
         background-size: 40px 40px;
         mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
     }

     .hero-badge {
         display: inline-flex;
         align-items: center;
         gap: 0.4rem;
         background: rgba(45, 140, 240, 0.12);
         border: 1px solid rgba(45, 140, 240, 0.3);
         color: var(--cyan);
         font-size: 0.75rem;
         font-weight: 600;
         padding: 0.35rem 0.9rem;
         border-radius: 50px;
         margin-bottom: 1.5rem;
         position: relative;
         z-index: 1;
         animation: fadeUp 0.6s ease both;
     }

     .hero-badge .blink {
         width: 6px;
         height: 6px;
         border-radius: 50%;
         background: var(--cyan);
         animation: blink 1.4s infinite;
     }

     @keyframes blink {

         0%,
         100% {
             opacity: 1
         }

         50% {
             opacity: 0.2
         }
     }

     .hero h1 {
         font-family: 'Syne', sans-serif;
         font-size: clamp(2.4rem, 8vw, 4.5rem);
         font-weight: 800;
         line-height: 1.05;
         position: relative;
         z-index: 1;
         animation: fadeUp 0.7s 0.1s ease both;
     }

     .hero h1 em {
         font-style: normal;
         color: var(--cyan);
     }

     .hero h1 .accent {
         color: var(--orange);
     }

     .hero-sub {
         margin: 1rem 0 2rem;
         font-size: clamp(0.95rem, 3vw, 1.15rem);
         color: var(--gray);
         max-width: 500px;
         line-height: 1.6;
         position: relative;
         z-index: 1;
         animation: fadeUp 0.7s 0.2s ease both;
     }

     .hero-btns {
         display: flex;
         flex-wrap: wrap;
         gap: 0.75rem;
         justify-content: center;
         position: relative;
         z-index: 1;
         animation: fadeUp 0.7s 0.3s ease both;
     }

     .btn-primary {
         background: linear-gradient(135deg, var(--electric), var(--cyan));
         color: #fff;
         padding: 0.85rem 1.8rem;
         border-radius: 50px;
         text-decoration: none;
         font-weight: 700;
         font-size: 0.95rem;
         box-shadow: 0 4px 24px rgba(45, 140, 240, 0.4);
         transition: transform 0.2s, box-shadow 0.2s;
         display: flex;
         align-items: center;
         gap: 0.5rem;
     }

     .btn-primary:hover {
         transform: translateY(-2px);
         box-shadow: 0 8px 32px rgba(45, 140, 240, 0.5);
     }

     .btn-secondary {
         background: transparent;
         border: 1.5px solid rgba(255, 255, 255, 0.2);
         color: var(--white);
         padding: 0.85rem 1.8rem;
         border-radius: 50px;
         text-decoration: none;
         font-weight: 600;
         font-size: 0.95rem;
         transition: border-color 0.2s, background 0.2s;
         display: flex;
         align-items: center;
         gap: 0.5rem;
     }

     .btn-secondary:hover {
         border-color: var(--cyan);
         background: rgba(45, 140, 240, 0.08);
     }

     .hero-stats {
         display: flex;
         gap: 2rem;
         flex-wrap: wrap;
         justify-content: center;
         margin-top: 3rem;
         position: relative;
         z-index: 1;
         animation: fadeUp 0.7s 0.4s ease both;
     }

     .stat {
         text-align: center;
     }

     .stat-num {
         font-family: 'Syne', sans-serif;
         font-size: 1.7rem;
         font-weight: 800;
         color: var(--white);
     }

     .stat-num span {
         color: var(--cyan);
     }

     .stat-label {
         font-size: 0.75rem;
         color: var(--gray);
         margin-top: 0.15rem;
     }

     @keyframes fadeUp {
         from {
             opacity: 0;
             transform: translateY(20px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

  /* =========================
   SECTION BASE
========================= */
section {
  padding: 4rem 1.5rem;
}

     .section-label {
         display: inline-block;
         font-size: 0.7rem;
         font-weight: 700;
         letter-spacing: 0.12em;
         text-transform: uppercase;
         color: var(--cyan);
         margin-bottom: 0.6rem;
     }

     .section-title {
         font-family: 'Syne', sans-serif;
         font-size: clamp(1.6rem, 5vw, 2.4rem);
         font-weight: 800;
         line-height: 1.15;
         margin-bottom: 0.75rem;
     }

     .section-title em {
         font-style: normal;
         color: var(--cyan);
     }

     .section-desc {
         color: var(--gray);
         font-size: 0.95rem;
         line-height: 1.65;
         max-width: 560px;
     }

.container {
  width: min(900px, 100%);
  margin: 0 auto;
}

    /* =========================
   SERVICES
========================= */
     #services {
         background: var(--navy);
     }

     .services-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
         gap: 1rem;
         margin-top: 2.5rem;
     }

     .service-card {
         background: var(--card-bg);
         border: 1px solid rgba(45, 140, 240, 0.12);
         border-radius: 16px;
         padding: 1.5rem;
         transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
         position: relative;
         overflow: hidden;
     }

     .service-card::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         height: 2px;
         background: linear-gradient(90deg, var(--electric), var(--cyan));
         opacity: 0;
         transition: opacity 0.3s;
     }

     .service-card:hover {
         transform: translateY(-4px);
         border-color: rgba(45, 140, 240, 0.3);
         box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
     }

     .service-card:hover::before {
         opacity: 1;
     }

     .service-icon {
         width: 46px;
         height: 46px;
         border-radius: 12px;
         background: rgba(45, 140, 240, 0.12);
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.4rem;
         margin-bottom: 1rem;
     }

     .service-card h3 {
         font-family: 'Syne', sans-serif;
         font-weight: 700;
         font-size: 1rem;
         margin-bottom: 0.4rem;
     }

     .service-card p {
         color: var(--gray);
         font-size: 0.85rem;
         line-height: 1.55;
     }

     .service-tag {
         display: inline-block;
         margin-top: 0.8rem;
         font-size: 0.68rem;
         font-weight: 700;
         letter-spacing: 0.08em;
         text-transform: uppercase;
         padding: 0.2rem 0.6rem;
         border-radius: 50px;
     }

     .tag-product {
         background: rgba(45, 140, 240, 0.15);
         color: var(--electric);
     }

     .tag-repair {
         background: rgba(255, 107, 53, 0.15);
         color: var(--orange);
     }

   /* =========================
   WHY US
========================= */
     #why {
         background: rgba(255, 255, 255, 0.02);
     }

     .why-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
         gap: 1rem;
         margin-top: 2.5rem;
     }

     .why-card {
         background: var(--card-bg);
         border-radius: 14px;
         padding: 1.4rem;
         border: 1px solid rgba(255, 255, 255, 0.05);
         display: flex;
         flex-direction: column;
         gap: 0.5rem;
     }

     .why-icon {
         font-size: 1.5rem;
     }

     .why-card h4 {
         font-family: 'Syne', sans-serif;
         font-weight: 700;
         font-size: 0.95rem;
     }

     .why-card p {
         color: var(--gray);
         font-size: 0.82rem;
         line-height: 1.5;
     }

   /* =========================
   REVIEWS
========================= */
     #reviews {
         background: var(--navy);
     }

     .reviews-scroll {
         display: flex;
         gap: 1rem;
         overflow-x: auto;
         padding-bottom: 0.5rem;
         scroll-snap-type: x mandatory;
         margin-top: 2rem;
         -webkit-overflow-scrolling: touch;
     }

     .reviews-scroll::-webkit-scrollbar {
         height: 4px;
     }

     .reviews-scroll::-webkit-scrollbar-thumb {
         background: rgba(45, 140, 240, 0.3);
         border-radius: 4px;
     }

     .review-card {
         min-width: 280px;
         max-width: 280px;
         background: var(--card-bg);
         border: 1px solid rgba(45, 140, 240, 0.1);
         border-radius: 14px;
         padding: 1.3rem;
         scroll-snap-align: start;
         flex-shrink: 0;
     }

     .stars {
         color: #fbbf24;
         font-size: 0.85rem;
         margin-bottom: 0.6rem;
         letter-spacing: 2px;
     }

     .review-text {
         color: #c8d8f0;
         font-size: 0.85rem;
         line-height: 1.6;
         margin-bottom: 0.8rem;
     }

     .reviewer {
         font-size: 0.78rem;
         color: var(--gray);
         font-weight: 600;
     }

     .rating-banner {
         display: flex;
         align-items: center;
         gap: 1.5rem;
         background: var(--card-bg);
         border: 1px solid rgba(45, 140, 240, 0.15);
         border-radius: 14px;
         padding: 1.2rem 1.5rem;
         margin-top: 2rem;
     }

     .rating-big {
         font-family: 'Syne', sans-serif;
         font-size: 2.8rem;
         font-weight: 800;
         color: var(--white);
         line-height: 1;
     }

     .rating-info {
         flex: 1;
     }

     .rating-stars {
         color: #fbbf24;
         font-size: 1.1rem;
         letter-spacing: 2px;
     }

     .rating-info p {
         color: var(--gray);
         font-size: 0.8rem;
         margin-top: 0.2rem;
     }

/* =========================
   CONTACT
========================= */
     #contact {
         background: linear-gradient(180deg, var(--navy) 0%, #0d1f3a 100%);
     }

     .contact-grid {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 1.5rem;
         margin-top: 2.5rem;
     }

     @media(max-width: 640px) {
         .contact-grid {
             grid-template-columns: 1fr;
         }
     }

     .contact-card {
         background: var(--card-bg);
         border: 1px solid rgba(45, 140, 240, 0.12);
         border-radius: 16px;
         padding: 1.5rem;
         text-decoration: none;
         color: inherit;
         display: flex;
         align-items: center;
         gap: 1rem;
         transition: transform 0.2s, border-color 0.2s;
         cursor: default;
     }

.contact-card:hover {
  border-color: var(--electric);
}

     .contact-icon-wrap {
         width: 48px;
         height: 48px;
         border-radius: 12px;
         flex-shrink: 0;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.3rem;
     }

     .ci-phone {
         background: rgba(45, 140, 240, 0.15);
     }

     .ci-wa {
         background: rgba(37, 211, 102, 0.15);
     }

     .ci-map {
         background: rgba(255, 107, 53, 0.15);
     }

     .ci-hours {
         background: rgba(0, 212, 255, 0.1);
     }

     .contact-label {
         font-size: 0.72rem;
         color: var(--gray);
         font-weight: 600;
         text-transform: uppercase;
         letter-spacing: 0.08em;
         margin-bottom: 0.2rem;
     }

     .contact-value {
         font-weight: 600;
         font-size: 0.9rem;
     }

     .contact-sub {
         font-size: 0.78rem;
         color: var(--gray);
         margin-top: 0.1rem;
         line-height: 1.4;
     }

.map-link {
  background: var(--card-bg);
  border: 1px solid rgba(45,140,240,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}

.map-link:hover {
  border-color: var(--electric);
}

     .map-link span {
         font-size: 0.9rem;
         font-weight: 600;
     }

     .map-link small {
         display: block;
         color: var(--gray);
         font-size: 0.78rem;
         margin-top: 0.15rem;
     }

    /* =========================
   FOOTER
========================= */
     footer {
         background: #060f1e;
         border-top: 1px solid rgba(255, 255, 255, 0.06);
         padding: 2rem 1.5rem;
         text-align: center;
     }

     .footer-logo {
         font-family: 'Syne', sans-serif;
         font-weight: 800;
         font-size: 1.3rem;
         color: var(--white);
         margin-bottom: 0.4rem;
     }

     .footer-logo span {
         color: var(--cyan);
     }

     footer p {
         color: var(--gray);
         font-size: 0.78rem;
     }

     .footer-tagline {
         font-size: 0.7rem;
         letter-spacing: 0.12em;
         text-transform: uppercase;
         color: rgba(255, 255, 255, 0.2);
         margin-top: 0.2rem;
     }

   /* =========================
   WHATSAPP FLOAT BUTTON
========================= */
     .wa-float {
         position: fixed;
         bottom: 1.5rem;
         right: 1.5rem;
         z-index: 99;
         background: #25d366;
         color: #fff;
         width: 54px;
         height: 54px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.5rem;
         box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
         text-decoration: none;
         transition: transform 0.2s;
     }

     .wa-float:hover {
         transform: scale(1.1);
     }

     .wa-pulse {
         position: absolute;
         inset: -4px;
         border-radius: 50%;
         border: 2px solid rgba(37, 211, 102, 0.5);
         animation: pulse-ring 2s infinite;
     }

     @keyframes pulse-ring {
         0% {
             transform: scale(1);
             opacity: 1;
         }

         100% {
             transform: scale(1.4);
             opacity: 0;
         }
     }
/* =========================
   SCROLL REVEAL
========================= */
     .reveal {
         opacity: 0;
         transform: translateY(24px);
         transition: opacity 0.55s ease, transform 0.55s ease;
     }

     .reveal.visible {
         opacity: 1;
         transform: none;
     }

     /* =========================
   CALLBACK MODAL
========================= */

.callback-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1.5rem;
}

.callback-modal.active {
  display: flex;
}

.callback-box {
  background: var(--card-bg);
  border: 1px solid rgba(45,140,240,0.15);
  border-radius: 18px;
  padding: 2rem;
  width: min(100%, 420px);
  position: relative;
}

.callback-box h3 {
  font-family: 'Syne', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.callback-box form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callback-box input,
.callback-box textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.callback-box input:focus,
.callback-box textarea:focus {
  outline: none;
  border-color: var(--electric);
}

.callback-submit {
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
}