/* ============================================================
   PARRBOY IT SUPPORT
   Site by Baha Connect  (bahaconnect.com)
   Hand-crafted CSS. No framework. Self-contained.
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette (exact spec values) */
  --primary: #0B5FFF;
  --primary-rgb: 11, 95, 255;
  --primary-600: #094ACC;
  --primary-050: #EAF1FF;

  --secondary: #101828;
  --secondary-rgb: 16, 24, 40;

  --accent: #2ED3B7;
  --accent-rgb: 46, 211, 183;
  --accent-600: #16A897;

  --bg: #F8FAFC;
  --card: #FFFFFF;

  --text: #131A2A;
  --text-2: #47506A;
  --text-3: #7B879C;
  --border: #E4E9F1;
  --border-strong: #D3DBE8;

  --whatsapp: #25D366;

  /* Type scale */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-44: 2.75rem;
  --fs-60: 3.75rem;

  /* Spacing (4pt grid) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  /* Radii */
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 28px; --r-pill: 999px;

  /* Shadows (z-axis system, tinted) */
  --sh-xs: 0 1px 2px rgba(16,24,40,0.05);
  --sh-sm: 0 2px 8px rgba(16,24,40,0.06);
  --sh-md: 0 10px 24px rgba(16,24,40,0.08);
  --sh-lg: 0 22px 48px rgba(16,24,40,0.12);
  --sh-xl: 0 40px 80px rgba(16,24,40,0.16);
  --sh-primary: 0 16px 40px rgba(var(--primary-rgb), 0.32);

  --container: 1200px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: var(--fs-16);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid rgba(var(--primary-rgb), 0.45); outline-offset: 2px; border-radius: 6px; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-6); }
.section { padding-block: var(--s-24); position: relative; }
.section-sm { padding-block: var(--s-16); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-14); font-weight: 600; letter-spacing: 0.02em;
  color: var(--primary); text-transform: none;
  background: var(--primary-050); padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(var(--primary-rgb), 0.14);
}
.eyebrow.on-dark {
  color: #BFD5FF; background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.section-head { max-width: 640px; margin-bottom: var(--s-12); }
.section-head.center { margin-inline: auto; text-align: center; }
h2.section-title {
  font-size: var(--fs-44); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin-top: var(--s-4); color: var(--secondary);
}
.section-sub { margin-top: var(--s-4); font-size: var(--fs-18); color: var(--text-2); }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-size: var(--fs-16); font-weight: 600; line-height: 1;
  padding: 15px 24px; border-radius: var(--r-pill);
  transition: transform 0.12s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--sh-primary); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 20px 44px rgba(var(--primary-rgb),0.4); }
.btn-primary:active { transform: translateY(1px); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 14px 34px rgba(37,211,102,0.34); }
.btn-whatsapp:hover { background: #1FB958; transform: translateY(-2px); }
.btn-whatsapp:active { transform: translateY(1px); }

.btn-ghost { background: #fff; color: var(--secondary); border: 1px solid var(--border-strong); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn-ghost:active { transform: translateY(1px); }

.btn-outline-light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--primary); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 30px; font-size: var(--fs-18); }

/* ---------- 5. SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 200; transition: width 0.05s linear;
}

/* ---------- 6. NAV ---------- */
.nav {
  position: fixed; top: 0; inset-inline: 0; height: var(--nav-h);
  display: flex; align-items: center; z-index: 150;
  background: rgba(248,250,252,0.72);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,0.86); border-color: var(--border); box-shadow: var(--sh-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: var(--s-3); font-weight: 800; letter-spacing: -0.02em; color: var(--secondary); }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--primary), #1E7BFF 60%, var(--accent));
  box-shadow: 0 6px 16px rgba(var(--primary-rgb),0.35);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-size: var(--fs-18); line-height: 1; }
.brand-name span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-3); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: var(--s-2); }
.nav-link { position: relative; font-size: var(--fs-14); font-weight: 500; color: var(--text-2); padding: 8px 12px; border-radius: 8px; transition: color 0.2s var(--ease); }
.nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); border-radius: 2px; }
.nav-link:hover { color: var(--secondary); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--s-3); }
.nav-cta .btn { padding: 11px 18px; font-size: var(--fs-14); }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: #fff; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 2px; background: var(--secondary); position: relative; transition: transform 0.25s var(--ease), opacity 0.2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--secondary); transition: transform 0.25s var(--ease); }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translateY(6px) rotate(45deg); }
.burger.open span::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 140;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: var(--s-4) var(--s-6) var(--s-8);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  box-shadow: var(--sh-lg);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link { display: block; padding: 14px 8px; font-size: var(--fs-18); font-weight: 600; color: var(--secondary); border-bottom: 1px solid var(--border); }
.mobile-menu .m-actions { display: grid; gap: var(--s-3); margin-top: var(--s-6); }

/* ---------- 7. HERO ---------- */
.hero { position: relative; padding-top: calc(var(--nav-h) + var(--s-16)); padding-bottom: var(--s-20); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.hero-bg .g1 { width: 620px; height: 620px; top: -220px; right: -140px; background: radial-gradient(circle, rgba(var(--primary-rgb),0.5), transparent 70%); animation: drift 18s var(--ease) infinite alternate; }
.hero-bg .g2 { width: 460px; height: 460px; bottom: -200px; left: -120px; background: radial-gradient(circle, rgba(var(--accent-rgb),0.42), transparent 70%); animation: drift 22s var(--ease) infinite alternate-reverse; }
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(16,24,40,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16,24,40,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}
@keyframes drift { to { transform: translate(40px, 40px) scale(1.08); } }

.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-16); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--fs-14); font-weight: 600;
  color: var(--text-2); background: #fff; border: 1px solid var(--border); padding: 7px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-xs);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb),0.2); }
h1.hero-title {
  font-size: var(--fs-60); font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
  margin-top: var(--s-5); color: var(--secondary);
}
h1.hero-title .grad { background: linear-gradient(100deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: var(--fs-20); color: var(--text-2); margin-top: var(--s-5); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8); }
.hero-note { margin-top: var(--s-5); font-size: var(--fs-14); color: var(--text-3); display: flex; align-items: center; gap: var(--s-2); }

/* Hero visual: glass support console */
.hero-visual { position: relative; }
.console {
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-xl); box-shadow: var(--sh-xl);
  padding: var(--s-5); position: relative; z-index: 2;
}
.console-top { display: flex; align-items: center; gap: var(--s-2); padding-bottom: var(--s-4); border-bottom: 1px solid var(--border); }
.console-top .dots { display: flex; gap: 6px; }
.console-top .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.console-top .dots i:nth-child(1){ background:#FF5F57;} .console-top .dots i:nth-child(2){ background:#FEBC2E;} .console-top .dots i:nth-child(3){ background:#28C840;}
.console-top .title { margin-left: auto; font-size: var(--fs-12); font-weight: 600; color: var(--text-3); letter-spacing: 0.02em; }
.console-body { padding-top: var(--s-5); display: grid; gap: var(--s-3); }
.c-row { display: flex; align-items: center; gap: var(--s-3); padding: 12px 14px; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--border); box-shadow: var(--sh-xs); }
.c-ico { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; color: var(--primary); background: var(--primary-050); }
.c-ico svg { width: 18px; height: 18px; }
.c-ico.green { color: var(--accent-600); background: rgba(var(--accent-rgb),0.14); }
.c-txt { flex: 1; min-width: 0; }
.c-txt b { display: block; font-size: var(--fs-14); color: var(--secondary); }
.c-txt small { color: var(--text-3); font-size: var(--fs-12); }
.c-status { font-size: var(--fs-12); font-weight: 700; color: var(--accent-600); display: flex; align-items: center; gap: 6px; }
.c-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.55);} 70%{ box-shadow: 0 0 0 8px rgba(var(--accent-rgb),0);} 100%{ box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0);} }
.c-bar { height: 6px; border-radius: 4px; background: var(--border); overflow: hidden; }
.c-bar i { display: block; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); animation: fill 2.4s var(--ease) forwards; }
@keyframes fill { from { width: 0; } to { width: 86%; } }

/* Floating stat chips */
.stat-chip {
  position: absolute; z-index: 3; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: var(--s-3);
  animation: float 6s ease-in-out infinite;
}
.stat-chip .n { font-size: var(--fs-20); font-weight: 800; color: var(--secondary); letter-spacing: -0.02em; }
.stat-chip .l { font-size: var(--fs-12); color: var(--text-3); font-weight: 500; }
.stat-chip .badge { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: var(--primary); }
.stat-chip .badge.g { background: var(--accent-600); }
.stat-chip.c1 { top: -26px; left: -34px; animation-delay: 0s; }
.stat-chip.c2 { bottom: 40px; right: -40px; animation-delay: 1.5s; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* Hero floating stats row (below hero) */
.hero-stats { position: relative; z-index: 1; margin-top: var(--s-16); }
.hero-stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.stat-card .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--primary); background: var(--primary-050); margin-bottom: var(--s-4); }
.stat-card .icon svg { width: 22px; height: 22px; }
.stat-card .num { font-size: var(--fs-32); font-weight: 800; letter-spacing: -0.03em; color: var(--secondary); }
.stat-card .label { color: var(--text-2); font-size: var(--fs-14); margin-top: 2px; }

/* ---------- 8. TRUST STRIP ---------- */
.trust { border-block: 1px solid var(--border); background: #fff; }
.trust .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--s-6) var(--s-12); padding-block: var(--s-6); }
.trust-item { display: flex; align-items: center; gap: var(--s-3); color: var(--text-2); font-weight: 600; font-size: var(--fs-14); }
.trust-item svg { width: 20px; height: 20px; color: var(--accent-600); flex: none; }

/* ---------- 9. SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.svc {
  position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s-6); box-shadow: var(--sh-xs); overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.svc::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(var(--primary-rgb),0.06), transparent 60%); opacity: 0; transition: opacity 0.25s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(var(--primary-rgb),0.35); }
.svc:hover::before { opacity: 1; }
.svc .svc-ico { position: relative; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--primary); background: var(--primary-050); margin-bottom: var(--s-4); transition: transform 0.25s var(--ease); }
.svc:hover .svc-ico { transform: scale(1.06) rotate(-3deg); }
.svc .svc-ico svg { width: 23px; height: 23px; }
.svc h3 { position: relative; font-size: var(--fs-18); font-weight: 700; letter-spacing: -0.01em; color: var(--secondary); }
.svc p { position: relative; margin-top: 6px; font-size: var(--fs-14); color: var(--text-2); }
.svc .learn { position: relative; display: inline-flex; align-items: center; gap: 5px; margin-top: var(--s-4); font-size: var(--fs-14); font-weight: 600; color: var(--primary); }
.svc .learn svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.svc:hover .learn svg { transform: translateX(4px); }

/* ---------- 10. WHY US ---------- */
.why { background: var(--secondary); color: #fff; border-radius: 0; }
.why .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-16); align-items: center; }
.why .section-title { color: #fff; }
.why .section-sub { color: #AEB7CA; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.why-item { display: flex; align-items: flex-start; gap: var(--s-3); padding: var(--s-4); border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.why-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-item .tick { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; color: var(--secondary); background: var(--accent); }
.why-item .tick svg { width: 17px; height: 17px; }
.why-item b { display: block; font-size: var(--fs-16); }
.why-item span { font-size: var(--fs-14); color: #AEB7CA; }
.why-visual { position: relative; }

/* ---------- 11. SPLIT SECTIONS (Business / Residential) ---------- */
.split .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-16); align-items: center; }
.split.reverse .split-media { order: 2; }
.pill-list { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-6); }
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-14); font-weight: 500; color: var(--text-2); background: #fff; border: 1px solid var(--border); padding: 8px 14px; border-radius: var(--r-pill); box-shadow: var(--sh-xs); transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease); }
.pill svg { width: 15px; height: 15px; color: var(--primary); }
.pill:hover { transform: translateY(-2px); border-color: rgba(var(--primary-rgb),0.4); color: var(--secondary); }
.split .btn { margin-top: var(--s-8); }

/* Illustration cards */
.illus { position: relative; border-radius: var(--r-xl); padding: var(--s-8); overflow: hidden; box-shadow: var(--sh-lg); }
.illus.biz { background: linear-gradient(155deg, #0C2E6E, #0B5FFF 55%, #1E8BFF); color: #fff; }
.illus.home { background: linear-gradient(155deg, #0B3B34, #16A897 55%, #2ED3B7); color: #fff; }
.illus .illus-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%); }
.illus-inner { position: relative; z-index: 1; display: grid; gap: var(--s-3); }
.illus-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--r-md); padding: var(--s-4); backdrop-filter: blur(6px); display: flex; align-items: center; gap: var(--s-3); }
.illus-card .ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,0.9); color: var(--secondary); }
.illus-card .ic svg { width: 20px; height: 20px; }
.illus-card b { display: block; font-size: var(--fs-14); }
.illus-card small { color: rgba(255,255,255,0.78); font-size: var(--fs-12); }
.illus-card.wide { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
.illus-card .meter { width: 100%; height: 8px; border-radius: 5px; background: rgba(255,255,255,0.25); overflow: hidden; }
.illus-card .meter i { display: block; height: 100%; background: #fff; border-radius: 5px; }

/* ---------- 12. PROCESS TIMELINE ---------- */
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-4); margin-top: var(--s-12); }
.timeline::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num { width: 54px; height: 54px; margin: 0 auto var(--s-4); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: var(--fs-18); color: #fff; background: var(--primary); box-shadow: 0 8px 20px rgba(var(--primary-rgb),0.35); border: 4px solid var(--bg); transition: transform 0.25s var(--ease); }
.step:hover .num { transform: scale(1.08); }
.step h4 { font-size: var(--fs-16); font-weight: 700; color: var(--secondary); }
.step p { font-size: var(--fs-14); color: var(--text-2); margin-top: 4px; }

/* ---------- 13. TESTIMONIALS ---------- */
.testi-wrap { position: relative; }
.testi-track { display: flex; gap: var(--s-5); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--s-4); scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 calc(33.333% - var(--s-4)); scroll-snap-align: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: var(--sh-sm);
}
.stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: var(--s-4); }
.stars svg { width: 18px; height: 18px; }
.testi q { display: block; font-size: var(--fs-16); color: var(--text); line-height: 1.65; quotes: none; }
.testi .who { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-6); }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: var(--fs-16); }
.who b { display: block; font-size: var(--fs-14); color: var(--secondary); }
.who small { color: var(--text-3); font-size: var(--fs-12); }
.testi-controls { display: flex; justify-content: center; gap: var(--s-3); margin-top: var(--s-8); }
.testi-controls button { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--border-strong); color: var(--secondary); display: grid; place-items: center; transition: transform 0.2s var(--ease), border-color 0.2s, color 0.2s; }
.testi-controls button:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.testi-controls svg { width: 20px; height: 20px; }

/* ---------- 14. FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: var(--s-3); }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.faq-item.open { border-color: rgba(var(--primary-rgb),0.35); box-shadow: var(--sh-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: var(--s-5) var(--s-6); text-align: left; font-size: var(--fs-18); font-weight: 600; color: var(--secondary); }
.faq-q .chev { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--primary); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 var(--s-6) var(--s-6); color: var(--text-2); font-size: var(--fs-16); }

/* ---------- 15. CTA BANNER ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: var(--s-20) var(--s-12); text-align: center; color: #fff; background: linear-gradient(130deg, var(--primary), #1668FF 45%, var(--accent-600)); box-shadow: var(--sh-xl); }
.cta-banner .glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%); top: -180px; right: -120px; filter: blur(30px); }
.cta-banner h2 { position: relative; font-size: var(--fs-44); font-weight: 800; letter-spacing: -0.03em; }
.cta-banner p { position: relative; font-size: var(--fs-20); color: rgba(255,255,255,0.9); margin-top: var(--s-4); }
.cta-banner .actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); margin-top: var(--s-8); }

/* ---------- 16. CONTACT ---------- */
.contact .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-16); align-items: start; }
.contact-info { display: grid; gap: var(--s-4); }
.info-row { display: flex; align-items: flex-start; gap: var(--s-4); padding: var(--s-5); background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-xs); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.info-row:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.info-row .ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; color: var(--primary); background: var(--primary-050); }
.info-row .ico svg { width: 21px; height: 21px; }
.info-row .lbl { font-size: var(--fs-12); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); }
.info-row .val { font-size: var(--fs-16); font-weight: 600; color: var(--secondary); margin-top: 2px; }
.info-row .val a:hover { color: var(--primary); }
.socials { display: flex; gap: var(--s-3); margin-top: var(--s-2); }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--border); color: var(--text-2); transition: transform 0.2s var(--ease), color 0.2s, border-color 0.2s; }
.socials a:hover { transform: translateY(-3px); color: var(--primary); border-color: var(--primary); }
.socials svg { width: 20px; height: 20px; }
.map-embed { margin-top: var(--s-2); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-xs); }
.map-embed iframe { width: 100%; height: 220px; border: 0; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-10); box-shadow: var(--sh-md); position: relative; overflow: hidden; }
.field { margin-bottom: var(--s-5); }
.field label { display: block; font-size: var(--fs-14); font-weight: 600; color: var(--secondary); margin-bottom: var(--s-2); }
.field input, .field select, .field textarea {
  width: 100%; font-size: var(--fs-16); color: var(--text); background: var(--bg);
  border: 1px solid var(--border-strong); border-radius: var(--r-sm); padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(var(--primary-rgb),0.14); }
.field.two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field.two > div { margin: 0; }
.err-msg { display: none; font-size: var(--fs-12); color: #DC2626; margin-top: 6px; font-weight: 500; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #DC2626; box-shadow: 0 0 0 4px rgba(220,38,38,0.1); }
.field.invalid .err-msg { display: block; }

/* Success overlay */
.form-success { position: absolute; inset: 0; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--s-8); opacity: 0; pointer-events: none; transform: scale(0.98); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.form-success.show { opacity: 1; pointer-events: auto; transform: scale(1); }
.check-circle { width: 84px; height: 84px; border-radius: 50%; background: rgba(var(--accent-rgb),0.15); display: grid; place-items: center; margin-bottom: var(--s-5); }
.check-circle svg { width: 44px; height: 44px; color: var(--accent-600); }
.check-circle svg path { stroke-dasharray: 48; stroke-dashoffset: 48; }
.form-success.show .check-circle svg path { animation: draw 0.5s var(--ease) 0.15s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: var(--fs-24); font-weight: 800; color: var(--secondary); }
.form-success p { color: var(--text-2); margin-top: var(--s-2); max-width: 34ch; }

/* ---------- 17. FOOTER ---------- */
.footer { background: var(--secondary); color: #AEB7CA; padding-block: var(--s-16) var(--s-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: var(--s-8); }
.footer .brand { color: #fff; }
.footer .brand-name span { color: #6B7793; }
.footer .f-about { margin-top: var(--s-4); font-size: var(--fs-14); color: #8E98AE; max-width: 30ch; }
.footer h5 { color: #fff; font-size: var(--fs-14); font-weight: 700; letter-spacing: 0.02em; margin-bottom: var(--s-4); }
.footer li { margin-bottom: var(--s-3); }
.footer li a { font-size: var(--fs-14); color: #AEB7CA; transition: color 0.2s var(--ease); }
.footer li a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-12); padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: var(--fs-14); }
.footer-bottom a { color: #fff; font-weight: 600; }
.footer-social { display: flex; gap: var(--s-3); }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: #AEB7CA; transition: background 0.2s var(--ease), color 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }

/* ---------- 18. FLOATING ACTIONS ---------- */
.floaters { position: fixed; right: 20px; bottom: 20px; z-index: 120; display: flex; flex-direction: column; gap: var(--s-3); }
.floater { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--sh-lg); transition: transform 0.2s var(--ease), box-shadow 0.2s; }
.floater svg { width: 26px; height: 26px; }
.floater:hover { transform: translateY(-4px) scale(1.05); }
.floater.wa { background: var(--whatsapp); }
.floater.call { background: var(--primary); }
.floater.wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.5); animation: ring 2.2s infinite; }
@keyframes ring { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.to-top { position: fixed; right: 20px; bottom: 156px; z-index: 119; width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--border-strong); color: var(--secondary); display: grid; place-items: center; box-shadow: var(--sh-md); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.2s, border-color 0.2s; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { color: var(--primary); border-color: var(--primary); }
.to-top svg { width: 22px; height: 22px; }

/* Sticky mobile CTA */
.mobile-cta { position: fixed; inset-inline: 0; bottom: 0; z-index: 118; display: none; grid-template-columns: 1fr 1fr; gap: var(--s-3); padding: var(--s-3) var(--s-4); background: rgba(255,255,255,0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -6px 20px rgba(16,24,40,0.08); }
.mobile-cta .btn { padding: 13px; font-size: var(--fs-14); }

/* ---------- 19. REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(1){ transition-delay: 0.02s;}
.reveal-group.visible > *:nth-child(2){ transition-delay: 0.06s;}
.reveal-group.visible > *:nth-child(3){ transition-delay: 0.10s;}
.reveal-group.visible > *:nth-child(4){ transition-delay: 0.14s;}
.reveal-group.visible > *:nth-child(5){ transition-delay: 0.18s;}
.reveal-group.visible > *:nth-child(6){ transition-delay: 0.22s;}
.reveal-group.visible > *:nth-child(7){ transition-delay: 0.26s;}
.reveal-group.visible > *:nth-child(8){ transition-delay: 0.30s;}

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --fs-60: 3rem; --fs-44: 2.25rem; }
  .nav-links { display: none; }
  .nav-cta .btn-call-label { display: none; }
  .burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero-visual { max-width: 460px; }
  .why .container, .split .container, .contact .container { grid-template-columns: 1fr; gap: var(--s-10); }
  .split.reverse .split-media { order: 0; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .testi { flex-basis: calc(50% - var(--s-3)); }
  .timeline { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding-block: var(--s-16); }
  :root { --fs-60: 2.5rem; --fs-44: 2rem; --fs-32: 1.75rem; }
  .container { padding-inline: var(--s-5); }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats .grid { grid-template-columns: 1fr 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .testi { flex-basis: 85%; }
  .timeline { grid-template-columns: 1fr; }
  .field.two { grid-template-columns: 1fr; }
  .form-card { padding: var(--s-6); }
  .cta-banner { padding: var(--s-16) var(--s-6); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .stat-chip { display: none; }
  .floaters { bottom: 84px; }
  .to-top { bottom: 220px; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 68px; }
}

/* ---------- 21. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-group > * { opacity: 1 !important; transform: none !important; }
}

/* ---------- 22. MULTI-PAGE ADDITIONS ---------- */
/* Active nav state */
.nav-link[aria-current="page"] { color: var(--secondary); }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu a.m-link[aria-current="page"] { color: var(--primary); }

/* Interior page header */
.page-hero { position: relative; overflow: hidden; padding-top: calc(var(--nav-h) + var(--s-16)); padding-bottom: var(--s-12); text-align: center; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: var(--fs-60); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; color: var(--secondary); margin-top: var(--s-4); }
.page-hero p { font-size: var(--fs-20); color: var(--text-2); margin-top: var(--s-4); max-width: 56ch; margin-inline: auto; }
.page-hero .ph-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; margin-top: var(--s-8); }
.crumb { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-14); color: var(--text-3); font-weight: 500; }
.crumb a { color: var(--text-3); transition: color 0.2s var(--ease); }
.crumb a:hover { color: var(--primary); }
.crumb svg { width: 14px; height: 14px; }
