/* =============================================================
   FEKRATECH IT CONSULTANCY — Global Design System
   Deep navy + electric blue + purple, glassmorphism, motion.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Core palette */
  --navy-950: #05071a;
  --navy-900: #070b22;
  --navy-850: #0a0f2e;
  --navy-800: #0e1538;
  --navy-700: #141d4e;
  --navy-600: #1d2a6e;

  --blue-500: #2f6bff;
  --blue-400: #4f8bff;
  --blue-300: #7aa9ff;
  --cyan-400: #19d3ff;
  --cyan-300: #5ce0ff;

  --violet-500: #7c3aed;
  --violet-400: #9b5cf6;
  --violet-300: #b98bff;

  --ink-100: #f5f8ff;
  --ink-300: #c6d0ee;
  --ink-400: #9aa6cf;
  --ink-500: #6f7bab;

  --white: #ffffff;

  /* Semantic */
  --bg: var(--navy-950);
  --bg-alt: var(--navy-900);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: var(--ink-100);
  --text-muted: var(--ink-400);

  /* Gradients */
  --grad-brand: linear-gradient(120deg, var(--blue-500) 0%, var(--violet-500) 100%);
  --grad-brand-soft: linear-gradient(120deg, #2f6bff33 0%, #7c3aed33 100%);
  --grad-cyan: linear-gradient(120deg, var(--cyan-400) 0%, var(--blue-500) 100%);
  --grad-text: linear-gradient(100deg, #ffffff 0%, #b8c6ff 45%, #7aa9ff 100%);
  --grad-accent-text: linear-gradient(100deg, var(--cyan-300) 0%, var(--blue-400) 45%, var(--violet-400) 100%);

  /* Shadows */
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 50px rgba(3, 6, 26, 0.55);
  --shadow-glow: 0 0 60px rgba(47, 107, 255, 0.35);
  --shadow-glow-violet: 0 0 60px rgba(124, 58, 237, 0.32);

  /* Layout */
  --maxw: 1200px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  /* Type */
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

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

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; color: var(--ink-300); }

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

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

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--violet-500); color: #fff; }

/* ---------- Ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(47, 107, 255, 0.18), transparent 60%),
    radial-gradient(50% 45% at 90% 10%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(55% 50% at 50% 100%, rgba(25, 211, 255, 0.08), transparent 60%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-300);
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 12px var(--cyan-400);
}

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }

h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-300); }

.gradient-text {
  background: var(--grad-accent-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(47, 107, 255, 0.55); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--blue-400); background: var(--surface-strong); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-whatsapp { background: #25d366; color: #042; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }

/* ---------- Glass cards ---------- */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

/* Spotlight follows cursor (set via JS custom props) */
.card.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(120, 150, 255, 0.16), transparent 60%);
  pointer-events: none;
}
.card.spotlight:hover::after { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--grad-brand-soft);
  border: 1px solid var(--border-strong);
  margin-bottom: 20px;
  color: var(--cyan-300);
}
.card-icon svg { width: 28px; height: 28px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 11, 34, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  font-weight: 800;
  color: #fff;
}
.brand span.accent { color: var(--cyan-300); }
.brand-logo { height: 42px; width: auto; display: block; }
.site-footer .brand-logo { height: 50px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-300);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--surface); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  width: 46px; height: 46px;
  cursor: pointer;
  color: #fff;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(5, 7, 26, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; padding: 14px 6px; border-bottom: 1px solid var(--border); }
.mobile-nav .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; background: var(--grad-accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-trust .lbl { font-size: 0.82rem; color: var(--text-muted); }

/* Floating dashboard mockup */
.hero-visual { position: relative; }
.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.dash {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(160deg, rgba(20,29,78,0.9), rgba(10,15,46,0.92));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.dash-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.dash-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ink-500); }
.dash-dot.r { background: #ff6058; } .dash-dot.y { background: #ffbd2e; } .dash-dot.g { background: #28c840; }
.dash-title { margin-left: 10px; font-size: 0.8rem; color: var(--ink-400); font-family: var(--font-head); }
.dash-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.kpi .k-lbl { font-size: 0.72rem; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.08em; }
.kpi .k-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-top: 4px; }
.kpi .k-trend { font-size: 0.74rem; color: #28c840; margin-top: 2px; }
.kpi.span2 { grid-column: span 2; }
.chart { display: flex; align-items: flex-end; gap: 7px; height: 70px; margin-top: 10px; }
.chart span { flex: 1; background: var(--grad-cyan); border-radius: 5px 5px 0 0; opacity: 0.85; animation: rise 1.4s var(--ease) backwards; }
@keyframes rise { from { height: 0 !important; opacity: 0; } }

.chip-float {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(10,15,46,0.85);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-size: 0.84rem;
  font-family: var(--font-head);
  font-weight: 600;
}
.chip-float .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.chip-float.tl { top: -22px; left: -26px; animation: float 6s ease-in-out infinite; }
.chip-float.br { bottom: -20px; right: -22px; animation: float 8s ease-in-out infinite reverse; }

/* ---------- Marquee / logos ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll-x 32s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; color: var(--ink-400); font-size: 1.05rem; white-space: nowrap; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 34px 18px; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; background: var(--grad-accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat .lbl { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; }

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

/* Service card extras */
.service-card .tag { display: inline-block; font-size: 0.72rem; font-family: var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-300); margin-bottom: 8px; }
.service-card ul.feat { margin-top: 16px; display: grid; gap: 9px; }
.service-card ul.feat li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-300); }
.service-card ul.feat li svg { width: 18px; height: 18px; color: var(--cyan-400); flex: none; margin-top: 3px; }
.roi-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 7px 14px; border-radius: 999px; background: var(--grad-brand-soft); border: 1px solid var(--border-strong); font-size: 0.82rem; font-weight: 600; font-family: var(--font-head); }

/* ---------- Why-choose / value props ---------- */
.value { display: flex; gap: 18px; padding: 26px; }
.value .v-ic { flex: none; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-brand-soft); border: 1px solid var(--border-strong); color: var(--cyan-300); }
.value .v-ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.18rem; margin-bottom: 6px; }
.value p { margin: 0; font-size: 0.94rem; }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, var(--blue-500), var(--violet-500)); opacity: 0.5; }
.step { text-align: center; position: relative; }
.step .dot { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; background: var(--navy-800); border: 2px solid var(--blue-400); color: #fff; position: relative; z-index: 1; box-shadow: 0 0 0 6px rgba(47,107,255,0.1); }
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.85rem; margin: 0; }

/* ---------- Industry tabs / cards ---------- */
.industry-card { padding: 0; }
.industry-card .head { padding: 26px 28px 20px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--border); }
.industry-card .head .v-ic { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand-soft); border: 1px solid var(--border-strong); color: var(--cyan-300); }
.industry-card .head h3 { margin: 0; font-size: 1.25rem; }
.industry-card .body { padding: 22px 28px 28px; }
.industry-card .pp { font-size: 0.88rem; color: var(--ink-400); margin-bottom: 14px; }
.industry-card ul.sol li { display: flex; gap: 10px; font-size: 0.92rem; margin-bottom: 9px; }
.industry-card ul.sol li svg { width: 18px; height: 18px; color: var(--cyan-400); flex: none; margin-top: 3px; }

/* ---------- Testimonials ---------- */
.testi { display: flex; flex-direction: column; gap: 18px; padding: 30px; }
.testi .stars { color: #ffbd2e; letter-spacing: 2px; }
.testi p { font-size: 1.05rem; color: var(--ink-100); margin: 0; font-weight: 500; }
.testi .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; }
.testi .who .name { font-family: var(--font-head); font-weight: 600; font-size: 0.96rem; }
.testi .who .role { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Case studies ---------- */
.case { padding: 32px; }
.case .metric-row { display: flex; gap: 28px; flex-wrap: wrap; margin: 20px 0; }
.case .metric .m-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; background: var(--grad-accent-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case .metric .m-lbl { font-size: 0.8rem; color: var(--text-muted); }
.case .row { margin-bottom: 12px; }
.case .row .k { font-family: var(--font-head); font-weight: 600; font-size: 0.84rem; color: var(--cyan-300); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--surface); transition: border-color 0.3s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border-strong); transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--grad-brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; margin: 0; font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center; overflow: hidden; border: 1px solid var(--border-strong); background: linear-gradient(140deg, rgba(47,107,255,0.18), rgba(124,58,237,0.18)); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -20%, rgba(25,211,255,0.22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { max-width: 600px; margin: 0 auto 30px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-methods { display: grid; gap: 16px; }
.contact-method { display: flex; gap: 16px; align-items: center; padding: 20px 22px; }
.contact-method .cm-ic { flex: none; width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-brand-soft); border: 1px solid var(--border-strong); color: var(--cyan-300); }
.contact-method .cm-ic svg { width: 24px; height: 24px; }
.contact-method .k { font-size: 0.8rem; color: var(--text-muted); }
.contact-method .v { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; }

.form { display: grid; gap: 16px; padding: 34px; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.84rem; font-weight: 600; font-family: var(--font-head); color: var(--ink-300); }
.field input, .field select, .field textarea {
  background: rgba(5,7,26,0.6);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 15px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(47,107,255,0.18); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); }
.form-success { display: none; padding: 16px; border-radius: 12px; background: rgba(40,200,64,0.12); border: 1px solid rgba(40,200,64,0.4); color: #8ef0a0; font-size: 0.94rem; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 70px 0 36px; margin-top: 40px; background: linear-gradient(180deg, transparent, rgba(7,11,34,0.6)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul li a { color: var(--ink-300); font-size: 0.94rem; transition: color 0.25s; }
.footer-grid ul li a:hover { color: #fff; }
.footer-about p { font-size: 0.94rem; max-width: 320px; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--border); color: var(--ink-300); transition: all 0.25s; }
.footer-social a:hover { color: #fff; border-color: var(--blue-400); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.86rem; color: var(--text-muted); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa { position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 34px rgba(37,211,102,0.5); color: #fff; animation: pulse-wa 2.6s infinite; transition: transform 0.25s; }
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
@keyframes pulse-wa { 0% { box-shadow: 0 12px 34px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 12px 34px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 34px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 50px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero .lead { max-width: 680px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 480px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 30px 18px; }
  .timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-trust { gap: 18px; }
  .chip-float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
