/* ==========================================================================
   Laptrix Systems & Service — Stylesheet
   Simple, responsive, no frameworks.
   ========================================================================== */

:root {
  --blue:        #1e63d0;
  --blue-dark:   #0f2747;
  --blue-deep:   #0a1c34;
  --accent:      #22c55e;   /* WhatsApp / success green */
  --accent-dark: #16a34a;
  --ink:         #16233a;
  --muted:       #5b6b82;
  --line:        #e4e9f2;
  --bg:          #f7f9fc;
  --white:       #ffffff;
  --radius:      14px;
  --shadow-sm:   0 2px 8px rgba(15, 39, 71, .06);
  --shadow-md:   0 10px 30px rgba(15, 39, 71, .10);
  --max:         1160px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; color: var(--blue-dark); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.section { padding: 76px 0; }
.section--tight { padding: 54px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 2px;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  background: rgba(30, 99, 208, .09); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(30,99,208,.28); }
.btn--primary:hover { background: #1a56b8; }
.btn--wa { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(34,197,94,.30); }
.btn--wa:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 13px; font-weight: 800; color: var(--blue-dark); }
.brand:hover { text-decoration: none; }
.brand .logo-mark {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), #3b82f6); color: #fff;
  font-family: "Poppins", var(--font); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(30, 99, 208, .30);
}
.brand-name {
  font-family: "Poppins", var(--font);
  font-weight: 800; font-size: 1.85rem; line-height: 1; letter-spacing: -.5px;
  background: linear-gradient(120deg, #1e63d0 18%, #3b82f6 55%, #22c55e 125%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.menu a { color: var(--ink); font-weight: 500; font-size: .98rem; }
.menu a:hover, .menu a.active { color: var(--blue); text-decoration: none; }
.menu a.active { font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 20px; font-size: .95rem; }

.hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-dark); margin: 5px auto; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(59,130,246,.35), transparent 60%),
    linear-gradient(160deg, var(--blue-deep), var(--blue-dark) 55%, #143a72);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .6; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 84px 0 92px; max-width: 720px; }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.82); margin-bottom: 30px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.8); font-size: .95rem; }
.hero .trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero .trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3ddf0; }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(30, 99, 208, .10); color: var(--blue);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Feature / why ---------- */
.why { background: var(--white); }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(34,197,94,.12); color: var(--accent-dark);
}
.feature .tick svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat .lab { color: var(--muted); font-size: .95rem; margin-top: 6px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue), #2f74e0);
  color: #fff; border-radius: 20px; padding: 46px; text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 26px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(30,99,208,.10); color: var(--blue); }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row .lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 700; }
.info-row .val { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.info-row .val a { color: var(--ink); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue-dark));
  color: #fff; padding: 56px 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.8); margin: 0; }
.crumbs { font-size: .9rem; color: rgba(255,255,255,.65); margin-top: 12px; }
.crumbs a { color: rgba(255,255,255,.85); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-deep); color: rgba(255,255,255,.72); padding: 56px 0 26px; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.footer a { color: rgba(255,255,255,.72); }
.footer a:hover { color: #fff; text-decoration: none; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand small { color: rgba(255,255,255,.6); }
.footer .brand .brand-name { font-size: 1.7rem; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.09); color: #fff; transition: transform .2s ease, background .2s ease; }
.socials a:hover { background: var(--blue); transform: translateY(-3px); text-decoration: none; }
.socials a.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.socials a.fb:hover { background: #1877f2; }
.socials a.wa:hover { background: var(--accent); }
.socials svg { width: 21px; height: 21px; }
.socials--light a { background: rgba(30, 99, 208, .10); color: var(--blue); }
.socials--light a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.foot-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .95rem; }
.foot-line svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: #6ea8ff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 40px; padding-top: 22px; text-align: center; font-size: .88rem; color: rgba(255,255,255,.55); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(34,197,94,.45);
  color: #fff; transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); text-decoration: none; }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .hamburger { display: block; }
  .brand-name { font-size: 1.5rem; }
  .brand .logo-mark { width: 42px; height: 42px; font-size: 1.3rem; border-radius: 11px; }
  .brand small { font-size: .6rem; letter-spacing: 2px; }
  .nav-cta .btn { padding: 9px 16px; font-size: .9rem; }
  .menu {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 0; box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .3s ease; align-items: stretch;
  }
  .menu.open { transform: translateY(0); }
  .menu li { width: 100%; }
  .menu a { display: block; padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav-cta .btn.desktop-only { display: none; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 22px; }
}
