/* ================================================================
   LEOCRESTLABS — DESIGN SYSTEM v4.0
   Corporate Tech | Clean & Confident | Abuja, Nigeria
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  /* Palette */
  --navy:         #050E1F;
  --navy-mid:     #0B1729;
  --navy-light:   #122040;
  --blue:         #1D4ED8;
  --blue-bright:  #2563EB;
  --blue-hover:   #1A45C4;
  --purple:       #6D28D9;
  --purple-glow:  #A78BFA;
  --white:        #FFFFFF;
  --off-white:    #F7FAFF;
  --gray-50:      #F1F5FB;
  --gray-100:     #E5EAF5;
  --gray-200:     #C8D3E8;
  --gray-300:     #A0AFCD;
  --gray-400:     #7888A8;
  --gray-600:     #455070;
  --gray-900:     #0E1726;
  --green:        #10B981;
  --whatsapp:     #25D366;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-hero-r:   linear-gradient(135deg, #050E1F 0%, #0B1729 100%);

  /* Typography */
  --f-display: 'Plus Jakarta Sans', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container: min(1200px, 90%);
  --container-narrow: min(820px, 90%);

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:    0 1px 4px rgba(14,23,38,.06), 0 2px 8px rgba(14,23,38,.04);
  --sh-md:    0 4px 20px rgba(14,23,38,.08), 0 2px 8px rgba(14,23,38,.06);
  --sh-lg:    0 12px 48px rgba(14,23,38,.12), 0 4px 16px rgba(14,23,38,.08);
  --sh-xl:    0 24px 80px rgba(14,23,38,.18);
  --sh-blue:  0 0 40px rgba(37,99,235,.22);
  --sh-green: 0 0 30px rgba(37,211,102,.35);

  /* Transitions */
  --t: .25s ease;
  --t-slow: .45s ease;
}

/* ================================================================
   RESET
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f-body); color: var(--gray-900); background: #fff; overflow-x: hidden; line-height: 1.65; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================================================
   ACCESSIBILITY
   ================================================================ */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--blue); color: #fff;
  padding: .5rem 1.25rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .875rem; z-index: 10000;
  transition: top .15s ease;
}
.skip-link:focus { top: 1rem; }
*:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--r-sm); }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.label {
  font-family: var(--f-display);
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-bright); display: block;
}
.label--purple { color: var(--purple-glow); }
.label--muted  { color: var(--gray-400); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  line-height: 1.2; font-weight: 700;
  color: var(--gray-900); letter-spacing: -.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -.02em; line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.22; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { color: var(--gray-600); font-size: 1.0625rem; line-height: 1.78; }
.lead { font-size: clamp(1.0625rem, 1.8vw, 1.175rem); color: var(--gray-600); line-height: 1.72; font-weight: 400; }

/* Dark surface overrides */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p, .on-dark .lead { color: rgba(255,255,255,.6); }
.on-dark .label { color: var(--purple-glow); }

/* ================================================================
   LAYOUT
   ================================================================ */
.wrap    { width: var(--container); margin-inline: auto; }
.wrap-sm { width: var(--container-narrow); margin-inline: auto; }

.section      { padding-block: 6rem; }
.section--sm  { padding-block: 4rem; }
.section--lg  { padding-block: 8rem; }
.section--navy { background: var(--navy); }
.section--mid  { background: var(--navy-mid); }
.section--gray { background: var(--off-white); }

.sec-head { margin-bottom: 4rem; }
.sec-head--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.sec-head .label { margin-bottom: .75rem; }
.sec-head h2 { margin-bottom: 1rem; }
.sec-head .lead { max-width: 580px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem; border-radius: var(--r-full);
  font-family: var(--f-body); font-size: .9375rem; font-weight: 600;
  letter-spacing: .01em; transition: all var(--t);
  border: 2px solid transparent; white-space: nowrap; cursor: pointer;
}
.btn--primary  { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover  { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-2px); box-shadow: var(--sh-blue); }
.btn--outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover  { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn--white    { background: #fff; color: var(--navy); border-color: #fff; }
.btn--white:hover    { background: var(--gray-50); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn--ghost    { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn--ghost:hover    { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn--wa       { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn--wa:hover       { background: #1EB958; border-color: #1EB958; transform: translateY(-2px); box-shadow: var(--sh-green); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1.25rem; font-size: .875rem; }

.btn-group { display: flex; align-items: center; gap: .875rem; flex-wrap: wrap; }

/* ================================================================
   HEADER
   ================================================================ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--t), border-color var(--t);
}
#hdr.scrolled { box-shadow: var(--sh-md); border-color: var(--gray-200); }

.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 1rem;
  color: #fff; letter-spacing: -.05em; flex-shrink: 0;
}
.logo-name {
  font-family: var(--f-display); font-weight: 800;
  font-size: 1.125rem; color: var(--navy); letter-spacing: -.03em;
}
.logo-name span { color: var(--blue-bright); }

/* Nav */
.site-nav { display: flex; align-items: center; gap: .25rem; }
.nav-a {
  font-size: .875rem; font-weight: 500; color: var(--gray-600);
  padding: .45rem .85rem; border-radius: var(--r-sm);
  transition: all var(--t); position: relative;
}
.nav-a:hover { color: var(--blue-bright); background: rgba(37,99,235,.06); }
.nav-a.active { color: var(--blue-bright); background: rgba(37,99,235,.1); font-weight: 600; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 260px; background: #fff;
  border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  padding: .5rem; box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transition: all var(--t);
}
.drop-menu a {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1rem; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500; color: var(--gray-600);
  transition: all var(--t);
}
.drop-menu a:hover { background: var(--gray-50); color: var(--blue-bright); }
.drop-icon { font-size: 1rem; }

/* Header right */
.hdr-right { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.hdr-phone {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: var(--gray-900);
}
.hdr-phone svg { width: 14px; height: 14px; color: var(--blue-bright); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; border-radius: var(--r-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all var(--t); }

/* Mobile nav overlay */
.mob-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 800;
  display: flex; flex-direction: column; padding: 2rem;
  padding-top: 88px; transform: translateX(100%); transition: transform var(--t-slow);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  display: block; font-family: var(--f-display);
  font-size: 1.375rem; font-weight: 700; color: rgba(255,255,255,.85);
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--t);
}
.mob-nav a:hover { color: #fff; }
.mob-nav-sub {
  padding-left: 1.25rem;
}
.mob-nav-sub a { font-size: 1rem; color: rgba(255,255,255,.55); }
.mob-nav-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-top: 1.5rem; margin-bottom: .5rem; display: block;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 68px;
}

.hero-l {
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 5rem;
  padding-left: max(2rem, calc((100vw - 1200px) / 2));
  padding-right: 4rem;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.15);
  color: var(--blue-bright); font-size: .8125rem; font-weight: 500;
  padding: .45rem 1rem; border-radius: var(--r-full); margin-bottom: 2rem; width: fit-content;
}
.hero-pill::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: #22C55E; animation: blink 2.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 700;
  color: var(--navy); line-height: 1.16; letter-spacing: -.025em;
  margin-bottom: 1.375rem;
}
.hero-h1 em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.0625rem; color: var(--gray-600); line-height: 1.78;
  max-width: 500px; margin-bottom: 2.25rem; font-weight: 400;
}

.hero-acts { margin-bottom: 2.75rem; }

.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-100);
}
.hstat-n {
  font-family: var(--f-display); font-size: 1.875rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.03em; display: block;
}
.hstat-l { font-size: .8125rem; color: var(--gray-400); margin-top: .3rem; display: block; font-weight: 400; }

/* Hero right panel */
.hero-r {
  background: var(--navy); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-r-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(37,99,235,.2) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(109,40,217,.18) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 85%, rgba(37,99,235,.12) 0%, transparent 40%);
}
.hero-r-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-r-content {
  position: relative; z-index: 1; padding: 3rem;
  width: 100%; max-width: 500px;
}

/* Hero project card */
.hero-card {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: 1.875rem; margin-bottom: 1.125rem;
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.375rem;
}
.hero-card-label {
  font-family: var(--f-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--purple-glow);
}
.hero-card-status {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 500;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22C55E;
  animation: blink 2.5s ease infinite; flex-shrink: 0;
}
.hero-card-title {
  font-family: var(--f-display); font-size: 1.175rem; font-weight: 600;
  color: #fff; margin-bottom: .375rem; line-height: 1.3;
}
.hero-card-sub { font-size: .825rem; color: rgba(255,255,255,.4); margin-bottom: 1.375rem; }
.hero-card-items { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.375rem; }
.hero-card-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .875rem; color: rgba(255,255,255,.65);
}
.hero-card-item span {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,99,235,.28); color: var(--blue-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700;
}
.hero-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.125rem; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .78rem; color: rgba(255,255,255,.3); font-weight: 500;
}
.hero-mini-stat {
  background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--r-lg); padding: 1.125rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-mini-n {
  font-family: var(--f-display); font-size: 2rem; font-weight: 700;
  color: #fff; letter-spacing: -.04em; flex-shrink: 0; line-height: 1;
}
.hero-mini-l { font-size: .8375rem; color: rgba(255,255,255,.5); line-height: 1.45; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.pg-hero {
  padding-top: calc(68px + 5rem); padding-bottom: 5rem;
  background: var(--navy); position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(37,99,235,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(109,40,217,.18) 0%, transparent 45%);
}
.pg-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 50px 50px;
}
.pg-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.pg-hero .label { color: var(--purple-glow); margin-bottom: 1rem; }
.pg-hero h1 { color: #fff; margin-bottom: 1.25rem; }
.pg-hero .lead { color: rgba(255,255,255,.6); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-size: .8rem; }
.breadcrumb a { color: rgba(255,255,255,.38); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.75); }
.breadcrumb span { color: rgba(255,255,255,.22); }
.breadcrumb strong { color: rgba(255,255,255,.65); font-weight: 500; }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.svc-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2.25rem;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: all var(--t);
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-slow);
}
.svc-card:hover { border-color: rgba(37,99,235,.35); transform: translateY(-6px); box-shadow: var(--sh-xl); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-ico {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--gray-50); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem;
  transition: background var(--t);
}
.svc-card:hover .svc-ico { background: rgba(37,99,235,.1); }
.svc-card h3 { font-size: 1.1875rem; margin-bottom: .875rem; }
.svc-card p  { font-size: .9375rem; line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--blue-bright);
  transition: gap var(--t); margin-top: auto;
}
.svc-link:hover { gap: .875rem; }

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative;
}
.process-row::before {
  content: ''; position: absolute;
  top: 27px; left: calc(12.5% + 27px); right: calc(12.5% + 27px);
  height: 1px; background: var(--grad-primary); opacity: .25;
}
.proc-step { text-align: center; padding: 1.5rem 1rem; }
.proc-num {
  width: 54px; height: 54px; border-radius: 50%;
  border: 2px solid rgba(37,99,235,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-family: var(--f-display);
  font-weight: 700; font-size: 1.0625rem; color: var(--blue-bright);
  background: #fff; position: relative; z-index: 1; transition: all var(--t);
}
.proc-step:hover .proc-num {
  background: var(--blue); color: #fff;
  border-color: var(--blue); box-shadow: var(--sh-blue);
}
.proc-title { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; }
.proc-text  { font-size: .875rem; color: var(--gray-600); line-height: 1.55; }

/* ================================================================
   TECH BADGES (dark section)
   ================================================================ */
.tech-wrap { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.t-badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full); padding: .55rem 1rem;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.72);
  transition: all var(--t);
}
.t-badge:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }

/* ================================================================
   FOUNDER / QUOTE SECTION
   ================================================================ */
.founder-sec {
  background: var(--navy); padding-block: 6rem;
  position: relative; overflow: hidden;
}
.founder-sec::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 5% 50%, rgba(37,99,235,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 10%, rgba(109,40,217,.15) 0%, transparent 50%);
}
.founder-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin-inline: auto; }
.qmark {
  font-family: var(--f-display); font-size: 6rem; font-weight: 800;
  color: var(--blue-bright); opacity: .25; line-height: .4;
  margin-bottom: 1.75rem; display: block;
}
.founder-quote {
  font-family: var(--f-display); font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600; color: #fff; line-height: 1.42; margin-bottom: 2.25rem;
}
.founder-credit { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.f-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 1.125rem; color: #fff;
}
.f-name { font-family: var(--f-display); font-weight: 700; color: #fff; font-size: .9375rem; }
.f-role { font-size: .8rem; color: rgba(255,255,255,.42); margin-top: 2px; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2rem;
  transition: box-shadow var(--t);
}
.testi-card:hover { box-shadow: var(--sh-md); }
.testi-stars { color: #F59E0B; font-size: .875rem; letter-spacing: .05em; margin-bottom: 1rem; }
.testi-text { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .875rem; }
.testi-ava {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: .9375rem; color: #fff;
}
.testi-name { font-weight: 600; font-size: .9375rem; color: var(--gray-900); }
.testi-role { font-size: .8rem; color: var(--gray-400); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-sec {
  background: var(--grad-primary); padding-block: 5.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-sec > * { position: relative; z-index: 1; }
.cta-sec h2 { color: #fff; margin-bottom: 1rem; }
.cta-sec p  { color: rgba(255,255,255,.72); max-width: 520px; margin-inline: auto; margin-bottom: 2.25rem; }
.cta-sec .btn-group { justify-content: center; }

/* ================================================================
   STATS STRIP (dark)
   ================================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-n { font-family: var(--f-display); font-size: 2.5rem; font-weight: 700; color: #fff; letter-spacing: -.03em; display: block; margin-bottom: .375rem; }
.stat-l { font-size: .8375rem; color: rgba(255,255,255,.48); }

/* ================================================================
   ABOUT PAGE — VALUES
   ================================================================ */
.vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.val-card {
  padding: 2rem; border-radius: var(--r-xl);
  background: #fff; border: 1px solid var(--gray-100);
  transition: all var(--t);
}
.val-card:hover { border-color: rgba(37,99,235,.3); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.val-ico { font-size: 2rem; margin-bottom: 1rem; }
.val-card h4 { font-size: 1.0625rem; margin-bottom: .625rem; }
.val-card p  { font-size: .9rem; }

/* Split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split--rev .split-text { order: 2; }
.split--rev .split-vis  { order: 1; }

.split-vis-box {
  background: var(--navy); border-radius: var(--r-xl);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.split-vis-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(37,99,235,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 70%, rgba(109,40,217,.25) 0%, transparent 50%);
}
.split-vis-inner { position: relative; z-index: 1; font-size: 4rem; opacity: .7; }

/* ================================================================
   SERVICE DETAIL PAGES
   ================================================================ */
.deliver-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.del-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem; background: var(--off-white);
  border: 1px solid var(--gray-100); border-radius: var(--r-md);
  transition: all var(--t);
}
.del-item:hover { border-color: rgba(37,99,235,.25); background: rgba(37,99,235,.03); }
.del-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: rgba(37,99,235,.12); display: flex; align-items: center;
  justify-content: center; font-size: .7rem; font-weight: 700; color: var(--blue-bright); margin-top: 1px;
}
.del-text { font-size: .9375rem; font-weight: 500; color: var(--gray-900); line-height: 1.45; }

.aud-tags { display: flex; flex-wrap: wrap; gap: .75rem; }
.aud-tag {
  background: rgba(37,99,235,.07); border: 1px solid rgba(37,99,235,.15);
  color: var(--blue-bright); font-size: .875rem; font-weight: 600;
  padding: .5rem 1.125rem; border-radius: var(--r-full);
}

.vp-box {
  background: var(--navy); border-radius: var(--r-xl); padding: 3rem;
  position: relative; overflow: hidden;
}
.vp-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(37,99,235,.2) 0%, transparent 50%);
}
.vp-box > * { position: relative; z-index: 1; }
.vp-box h3 { color: #fff; margin-bottom: 1rem; }
.vp-box p  { color: rgba(255,255,255,.62); margin-bottom: 0; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cntct-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2.25rem; text-align: center;
  transition: all var(--t);
}
.cntct-card:hover { border-color: rgba(37,99,235,.3); transform: translateY(-4px); box-shadow: var(--sh-lg); }
.cntct-ico {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.75rem;
}
.cico-green  { background: rgba(37,211,102,.1); }
.cico-blue   { background: rgba(37,99,235,.1); }
.cico-purple { background: rgba(109,40,217,.1); }
.cntct-card h3 { font-size: 1.0625rem; margin-bottom: .625rem; }
.cntct-card p  { font-size: .875rem; margin-bottom: 1.5rem; }

.map-box {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2.25rem;
}
.map-box h3 { margin-bottom: 1.5rem; }
.map-detail {
  display: flex; align-items: flex-start; gap: .875rem;
  margin-bottom: 1.25rem; font-size: .9375rem; color: var(--gray-600);
}
.map-ico { font-size: 1.125rem; flex-shrink: 0; margin-top: 1px; }

/* ================================================================
   CAREERS PAGE
   ================================================================ */
.culture-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.culture-card {
  padding: 2.25rem; border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03); text-align: center;
}
.culture-ico { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.culture-card h4 { color: #fff; margin-bottom: .75rem; }
.culture-card p  { color: rgba(255,255,255,.52); font-size: .9rem; }

.role-card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: all var(--t);
}
.role-card:hover { border-color: rgba(37,99,235,.3); box-shadow: var(--sh-md); }
.role-tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: .3rem .75rem; border-radius: var(--r-full);
  background: rgba(37,99,235,.08); color: var(--blue-bright); margin-bottom: .625rem;
}
.role-title { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .25rem; }
.role-loc { font-size: .875rem; color: var(--gray-400); }

/* Apply form */
.apply-box {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-xl); padding: 2.75rem; max-width: 580px; margin-inline: auto;
}
.f-group { margin-bottom: 1.375rem; }
.f-label { display: block; font-size: .875rem; font-weight: 600; color: var(--gray-900); margin-bottom: .5rem; }
.f-input {
  width: 100%; padding: .875rem 1rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: .9375rem; color: var(--gray-900);
  background: #fff; transition: border-color var(--t); appearance: none;
}
.f-input:focus { outline: none; border-color: var(--blue-bright); }
.f-input::placeholder { color: var(--gray-300); }
textarea.f-input { resize: vertical; min-height: 120px; }

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-body { max-width: 780px; margin-inline: auto; padding-top: 1rem; }
.privacy-body h2 {
  font-size: 1.375rem; margin-top: 3rem; margin-bottom: 1rem;
  padding-top: 2rem; border-top: 1px solid var(--gray-100); color: var(--gray-900);
}
.privacy-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.privacy-body p { margin-bottom: 1rem; }
.privacy-body ul { list-style: disc; padding-left: 1.75rem; margin-bottom: 1rem; }
.privacy-body ul li { color: var(--gray-600); margin-bottom: .5rem; font-size: 1rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: var(--navy); padding-top: 5.5rem; padding-bottom: 2.5rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem;
}
.footer-brand .logo-name { color: #fff; margin: .875rem 0 1rem; display: block; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; max-width: 280px; margin-bottom: 1.75rem; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .875rem; color: rgba(255,255,255,.48); margin-bottom: 1rem; line-height: 1.5;
}
.footer-contact li span { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-head {
  font-family: var(--f-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: .875rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--t); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.32); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  display: inline-flex; align-items: center; gap: .625rem;
  background: var(--whatsapp); color: #fff;
  padding: .875rem 1.375rem; border-radius: var(--r-full);
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 28px rgba(37,211,102,.45);
  transition: all var(--t); animation: wa-in .6s .8s both ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 40px rgba(37,211,102,.55); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes wa-in { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: calc(4rem + 68px) 1.5rem 3rem; padding-right: 1.5rem; }
  .hero-r { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .process-row::before { display: none; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .site-nav, .hdr-phone { display: none; }
  .nav-toggle { display: flex; }
  .vals-grid, .deliver-grid, .contact-grid, .culture-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--rev .split-text, .split--rev .split-vis { order: unset; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .section { padding-block: 4rem; }
  .section--lg { padding-block: 5rem; }
  .process-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-l { padding-top: calc(3rem + 68px); }
  .hero-acts .btn-group { flex-direction: column; align-items: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 1rem; border-radius: 50%; }
  .contact-grid { grid-template-columns: 1fr; }
}
