/* =========================================================
   KADUJI & CO - Unified Stylesheet
   - Matches the class names used across all HTML pages
   - Accent colour aligned to the logo (blue)
   ========================================================= */

/* ---------- Reset / Base ---------- */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

:root{
  --navy:#0b1f3a;
  --navy-2:#102a4a;
  --slate:#334155;
  --muted:#64748b;
  --bg:#ffffff;
  --soft:#f5f7fb;

  /* Accent (logo blue) */
  --accent:#0b5fe0;
  --accent-2:#0a76ff;

  --border: rgba(15,23,42,.12);
  --shadow: 0 16px 44px rgba(2,6,23,.12);
  --shadow-soft: 0 10px 24px rgba(2,6,23,.08);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --text: 16px;
  --text-sm: 14px;

  /* Spacing scale */
  --space: 78px;
  --space-sm: 56px;

  --radius: 18px;
}

body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 700px at 18% -10%, rgba(11,95,224,.07), transparent 60%),
    radial-gradient(900px 600px at 92% 10%, rgba(11,95,224,.05), transparent 55%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 40%, #ffffff 100%);
  color:var(--slate);
  font-size: var(--text);
  line-height: 1.7;
}

h1,h2,h3{
  font-family: var(--font-serif);
  color:var(--navy);
  margin:0 0 14px;
  letter-spacing:-0.02em;
  line-height:1.18;
}

h1{ font-size: clamp(34px, 3.2vw, 48px); }
h2{ font-size: clamp(26px, 2.2vw, 34px); }
h3{ font-size: 20px; }

p{ margin:0 0 18px; color:var(--slate); }

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

/* ---------- Header ---------- */
.site-header{
  position:relative;
  top:0;
  z-index:999;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  padding:8px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
  padding:0;              /* no pill background */
  border:0;
  background:transparent;
  box-shadow:none;
}

.brand-logo{
  /* Premium header logo sizing */
  height:72px;
  width:auto;
  object-fit:contain;
  display:block;

  max-width:260px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  flex: 1;
  justify-content:center;
}

.nav a{
  font-weight:800;
  color:var(--navy);
  opacity:.88;
  padding:10px 10px;
  border-radius:12px;
  transition: all .18s ease;
}

.nav a:hover{ background: rgba(11,95,224,.12); opacity:1; }
.nav a.active{ background: rgba(11,95,224,.14); opacity:1; }

.header-cta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:600;
  letter-spacing: .01em;
  font-size: var(--text-sm);
  border:1px solid transparent;
  transition: all .18s ease;
  white-space:nowrap;
}

.btn-primary,
.btn-gold{ /* legacy */
  background: var(--accent);
  color:#fff;
  box-shadow: 0 10px 22px rgba(11,95,224,.18);
}

.btn-outline{
  background:transparent;
  color:var(--navy);
  border-color: rgba(15,23,42,.18);
}

.btn-ghost{
  background: rgba(255,255,255,.65);
  color: var(--navy);
  border-color: rgba(15,23,42,.12);
}

.btn:hover{ transform: translateY(-1px); }
.btn-primary:hover,
.btn-gold:hover{ box-shadow: 0 18px 36px rgba(11,95,224,.30); }
.btn-outline:hover{ background: rgba(15,23,42,.05); }
.btn-ghost:hover{ background: rgba(255,255,255,.85); }

.btn-outline.light{
  color:#fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline.light:hover{ background: rgba(255,255,255,.12); }

/* ---------- Sections ---------- */
/* Additional vertical rhythm */
.section + .section{ margin-top: 18px; }

.section{ padding: var(--space) 0; }
.section-soft{ background: var(--soft); }
.section-dark{ background: var(--navy); color:#fff; }
.section-dark h2,
.section-dark p{ color:#fff; }

/* Service detail sections (service-*.html) */
.section.alt{ padding-top: 44px; }
.lead{
  font-size:18px;
  color: var(--muted);
  font-weight:650;
  max-width: 860px;
}
.list{ margin: 14px 0 0; padding-left: 18px; }
.list li{ margin: 10px 0; color: var(--slate); font-weight:650; }
.icon{
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 16px;
  background: rgba(11,95,224,.10);
  border: 1px solid rgba(11,95,224,.18);
  font-size: 28px;
}

/* If a service-card is nested inside a card (service detail pages), keep it minimal */
.card .service-card{
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.section-title{
  text-align:center;
  font-size: clamp(32px, 4vw, 46px);
}
.section-title.left{ text-align:left; }

.section-sub{
  text-align:center;
  margin-top:12px;
  margin-bottom:28px;
  color: var(--muted);
  font-weight:650;
  font-size:18px;
}
.section-sub.left{ text-align:left; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:64px 0 0;
  background:
    radial-gradient(1000px 500px at 15% 20%, rgba(11,95,224,.10), transparent 55%),
    radial-gradient(900px 520px at 85% 25%, rgba(11,31,58,.10), transparent 60%),
    #fff;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:42px;
  align-items:center;
  padding-bottom:36px;
}

.hero-title{
  font-size: clamp(44px, 6vw, 84px);
  line-height:1.02;
  margin-bottom:16px;
  letter-spacing:-0.03em;
}

.hero-sub{
  font-size:18px;
  color:var(--muted);
  max-width: 560px;
}

.hero-actions{ margin-top:22px; display:flex; gap:14px; flex-wrap:wrap; }

.hero-pills{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  color:var(--slate);
  font-weight:750;
  background: rgba(255,255,255,.55);
}

.hero-media{
  border-radius:26px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(11,31,58,.20), rgba(11,95,224,.10));
}

/* Hero image too big -> cap height + cover */
.hero-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.hero-bar{
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.80);
}

.hero-bar-inner{
  padding:10px 0;
  color: var(--navy);
  font-weight:800;
  text-align:center;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding:56px 0 38px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(11,95,224,.10), transparent 60%),
    var(--soft);
  border-bottom: 1px solid var(--border);
}
.page-hero h1{ font-size: clamp(34px, 4.2vw, 52px); }
.page-hero p{ max-width: 760px; color: var(--muted); font-weight: 650; }

/* ---------- Grids / Cards ---------- */
.grid,
.grid-3,
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  margin-top:34px;
}

.card{
  background: rgba(255,255,255,.95);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:26px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(11,95,224,.18);
}

.card h3{
  margin:0 0 8px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size:18px;
  color:var(--slate);
}

.stat{ display:flex; align-items:baseline; gap:6px; }
.counter{ font-size:54px; font-weight:950; color:var(--accent); letter-spacing:-0.02em; }
.stat-suffix{ font-size:22px; font-weight:600;
  letter-spacing: .01em;
  font-size: var(--text-sm); color:var(--accent); }

/* Service cards (links) */
.service-card{
  background: rgba(255,255,255,.95);
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:24px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-card h3{ margin:0 0 8px; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; }
.service-link{ display:inline-block; margin-top:10px; font-weight:600;
  letter-spacing: .01em;
  font-size: var(--text-sm); color:var(--accent); }

/* ---------- Split / Two column blocks ---------- */
.two-col,
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  align-items:start;
}

.checklist{ margin: 18px 0 0; padding-left: 18px; }
.checklist li{ margin: 12px 0; color: var(--slate); font-weight: 650; }

.callout{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.callout-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 16px; }

/* ---------- CTA band ---------- */
.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 28px;
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(11,95,224,.18));
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
  margin-top: 26px;
}

.form{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:22px;
  padding:22px;
  box-shadow: var(--shadow-soft);
}

/* Make form layout feel premium + avoid inline label collisions */
.form label{
  display:block;
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 900;
}

.form input,
.form select,
.form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.18);
  outline:none;
  margin-top:8px;
  background: rgba(255,255,255,.95);
}

/* Premium select styling (consistent with inputs) */
.form select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15,23,42,.55) 50%),
    linear-gradient(135deg, rgba(15,23,42,.55) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%,
    calc(100% - 2.5em) 0.5em;
  background-size: 6px 6px, 6px 6px, 1px 1.8em;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(11,95,224,.55);
  box-shadow: 0 0 0 4px rgba(11,95,224,.12);
}

.form textarea{ min-height: 140px; resize: vertical; }

/* Contact link styling */
.contact-links{ display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.contact-links a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.03);
  font-weight: 850;
}
.contact-links a:hover{ background: rgba(11,95,224,.06); border-color: rgba(11,95,224,.18); }

/* ---------- Footer ---------- */
.site-footer{
  padding:46px 0;
  background:#fff;
  border-top:1px solid var(--border);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:26px;
  align-items:start;
}

.footer-logo{
  width:min(420px, 100%);
  height:auto;
}

.footer-title{
  margin:0 0 14px;
  color:var(--navy);
  font-size:16px;
  font-weight:950;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.muted{ color: var(--muted); font-weight:650; }

.site-footer a{ color: var(--slate); font-weight:800; }
.site-footer a:hover{ color: var(--navy); }

/* Footer lists: force vertical layout + add icons for contact */
.footer-links,
.footer-contact{ display:flex; flex-direction:column; }

.footer-links a,
.footer-contact a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
}




/* ---------- SVG Icon system (premium) ---------- */
:root{
  /* simple inline SVG masks (monochrome) */
  --ico-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.6 3 4.1 5.5 7.1 7.1l2.4-2.4c.3-.3.8-.4 1.2-.2 1.3.5 2.7.8 4.2.8.7 0 1.3.6 1.3 1.3V21c0 .7-.6 1.3-1.3 1.3C10.6 22.3 1.7 13.4 1.7 2.9c0-.7.6-1.3 1.3-1.3H6.5c.7 0 1.3.6 1.3 1.3 0 1.5.3 2.9.8 4.2.1.4 0 .9-.3 1.2l-2.3 2.4Z'/%3E%3C/svg%3E");
  --ico-mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm0 4-8 5L4 8V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
  --ico-globe: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm7.9 9h-3.2a15.6 15.6 0 0 0-1.2-5 8.1 8.1 0 0 1 4.4 5ZM12 4.1c.9 1.3 1.7 3.4 2.1 6H9.9c.4-2.6 1.2-4.7 2.1-6ZM4.1 13h3.2a15.6 15.6 0 0 0 1.2 5 8.1 8.1 0 0 1-4.4-5ZM7.3 11H4.1a8.1 8.1 0 0 1 4.4-5 15.6 15.6 0 0 0-1.2 5Zm2.6 2h4.2c-.4 2.6-1.2 4.7-2.1 6-.9-1.3-1.7-3.4-2.1-6Zm5.6 5a15.6 15.6 0 0 0 1.2-5h3.2a8.1 8.1 0 0 1-4.4 5ZM16.7 11a15.6 15.6 0 0 0-1.2-5 8.1 8.1 0 0 1 4.4 5h-3.2Z'/%3E%3C/svg%3E");
  --ico-whatsapp: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.5 3.5A11 11 0 0 0 2.6 16.7L2 22l5.4-1.4A11 11 0 0 0 20.5 3.5ZM12 20a9 9 0 0 1-4.6-1.3l-.3-.2-3.2.9.9-3.1-.2-.3A9 9 0 1 1 12 20Zm5.2-6.7c-.3-.2-1.7-.8-2-1s-.5-.2-.7.2-.8 1-.9 1.2-.3.2-.6.1a7.4 7.4 0 0 1-2.2-1.3 8.4 8.4 0 0 1-1.6-2c-.2-.3 0-.5.1-.6l.4-.5c.1-.2.2-.3.3-.5s0-.3 0-.5-.7-1.7-1-2.3c-.3-.6-.6-.5-.7-.5h-.6a1.2 1.2 0 0 0-.9.4A3.7 3.7 0 0 0 6 8.1a6.5 6.5 0 0 0 1.3 3.4 14.8 14.8 0 0 0 5.7 5 6.5 6.5 0 0 0 3.6.9 3.1 3.1 0 0 0 2.1-1.5 2.6 2.6 0 0 0 .2-1.5c-.1-.1-.3-.2-.6-.3Z'/%3E%3C/svg%3E");
  --ico-building: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 22V2h10v6h6v14H4Zm2-2h2v-2H6v2Zm0-4h2v-2H6v2Zm0-4h2v-2H6v2Zm0-4h2V6H6v2Zm4 12h2v-2h-2v2Zm0-4h2v-2h-2v2Zm0-4h2V6h-2v2Zm0-4h2V4h-2v2Zm4 14h4v-2h-4v2Zm0-4h4v-2h-4v2Zm0-4h4v-2h-4v2Z'/%3E%3C/svg%3E");
  --ico-book: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M18 2H8a3 3 0 0 0-3 3v15a2 2 0 0 0 2 2h13v-2H7V5a1 1 0 0 1 1-1h10v10l-2-1-2 1V2Z'/%3E%3C/svg%3E");
  --ico-doc: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l5 5v15a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm8 1.5V8h4.5L14 3.5Z'/%3E%3C/svg%3E");
  --ico-chart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19V5h2v14H4Zm4 0V9h2v10H8Zm4 0V3h2v16h-2Zm4 0v-7h2v7h-2Zm4 2H2v-2h20v2Z'/%3E%3C/svg%3E");
  --ico-payroll: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 10h10V8H7v2Zm0 4h10v-2H7v2Zm0 4h6v-2H7v2ZM5 2h14a2 2 0 0 1 2 2v18l-4-2-4 2-4-2-4 2V4a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E");
  --ico-user: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5Z'/%3E%3C/svg%3E");
  --ico-gear: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.4 13a7.8 7.8 0 0 0 0-2l2-1.5-2-3.5-2.3 1a8 8 0 0 0-1.7-1L15 2h-6l-.4 2.5a8 8 0 0 0-1.7 1L4.6 4.5l-2 3.5 2 1.5a7.8 7.8 0 0 0 0 2l-2 1.5 2 3.5 2.3-1a8 8 0 0 0 1.7 1L9 22h6l.4-2.5a8 8 0 0 0 1.7-1l2.3 1 2-3.5-2-1.5ZM12 15.5A3.5 3.5 0 1 1 15.5 12 3.5 3.5 0 0 1 12 15.5Z'/%3E%3C/svg%3E");
  --ico-brain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 21a4 4 0 0 1-4-4v-1a3 3 0 0 1-1-5 4 4 0 0 1 4-6 4 4 0 0 1 7-1 4 4 0 0 1 5 4 3 3 0 0 1 0 6v1a4 4 0 0 1-4 4h-1v-3h1a1 1 0 0 0 1-1v-2h1a1 1 0 0 0 0-2h-1V9a1 1 0 0 0-1-1 2 2 0 0 1-2-2h-1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v1H9a1 1 0 0 0 0 2h1v2a1 1 0 0 0 1 1h1v3H9Z'/%3E%3C/svg%3E");
  --ico-laptop: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 5h16v10H4V5Zm-2 12h20v2H2v-2Z'/%3E%3C/svg%3E");
  --ico-receipt: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h12v20l-2-1-2 1-2-1-2 1-2-1-2 1V2Zm3 6h6V6H9v2Zm0 4h6v-2H9v2Zm0 4h6v-2H9v2Z'/%3E%3C/svg%3E");
}

.icon{
  width:56px; height:56px;
  border-radius:16px;
  background: rgba(11,95,224,.10);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 20px rgba(2,6,23,.08);
}
.icon::before{
  content:"";
  width:26px; height:26px;
  background: var(--accent);
  -webkit-mask: var(--icon-mask) no-repeat center / contain;
  mask: var(--icon-mask) no-repeat center / contain;
}

/* icon variants */
.icon-building{ --icon-mask: var(--ico-building); }
.icon-book{ --icon-mask: var(--ico-book); }
.icon-doc{ --icon-mask: var(--ico-doc); }
.icon-chart{ --icon-mask: var(--ico-chart); }
.icon-payroll{ --icon-mask: var(--ico-payroll); }
.icon-user{ --icon-mask: var(--ico-user); }
.icon-gear{ --icon-mask: var(--ico-gear); }
.icon-brain{ --icon-mask: var(--ico-brain); }
.icon-laptop{ --icon-mask: var(--ico-laptop); }
.icon-receipt{ --icon-mask: var(--ico-receipt); }

/* contact links & footer contact icons */
.contact-links a,
.footer-contact a{
  position:relative;
  padding-left:28px;
}
.contact-links a::before,
.footer-contact a::before{
  content:"";
  position:absolute;
  left:0; top:50%;
  transform:translateY(-50%);
  width:18px; height:18px;
  background: currentColor;
  opacity:.9;
  -webkit-mask: var(--icon-mask) no-repeat center / contain;
  mask: var(--icon-mask) no-repeat center / contain;
}

.contact-links a[href^="tel:"],
.footer-contact a[href^="tel:"]{ --icon-mask: var(--ico-phone); }
.contact-links a[href^="mailto:"],
.footer-contact a[href^="mailto:"]{ --icon-mask: var(--ico-mail); }
.contact-links a[href*="wa.me"],
.footer-contact a[href*="wa.me"]{ --icon-mask: var(--ico-whatsapp); }
.contact-links a[href^="http"],
.footer-contact a[href^="http"]{ --icon-mask: var(--ico-globe); }

.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--border);
  color: var(--muted);
  font-weight:800;
}

/* ---------- WhatsApp Float + Sticky CTA (if present) ---------- */
.wa-float,
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:950;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.sticky-cta{
  position:sticky;
  bottom:0;
  z-index:998;
  background: var(--accent);
  color:#fff;
  padding:12px 0;
  text-align:center;
  font-weight:600;
  letter-spacing: .01em;
  font-size: var(--text-sm);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .two-col, .split{ grid-template-columns: 1fr; }
  .grid, .grid-3, .service-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .brand-logo{ height:72px; }
  .hero-media img{ height:320px; }
}

@media (max-width: 680px){
  .header-inner{ flex-direction:column; align-items:flex-start; gap:10px; padding:12px 0; }
  .nav{ width:100%; justify-content:flex-start; }
  .hero{ padding-top:52px; }
}

.contact-links a{ background: rgba(255,255,255,.7); border:1px solid var(--border); border-radius:14px; padding:12px 14px 12px 44px; font-weight:700; box-shadow: 0 10px 20px rgba(2,6,23,.06); transition: all .18s ease; }
.contact-links a:hover{ transform: translateY(-1px); box-shadow: 0 16px 28px rgba(2,6,23,.10); border-color: rgba(11,95,224,.22); }


/* Premium spacing tweaks */
@media (max-width: 900px){
  :root{ --space: 64px; --space-sm: 48px; }
}
@media (max-width: 520px){
  :root{ --space: 56px; }
}

.process-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:18px; margin-top:18px; }

.kicker{ font-size: 12px; font-weight: 600; letter-spacing:.12em; text-transform: uppercase; color: rgba(15,23,42,.55); margin-bottom:10px; }


@media (max-width: 720px){
  .brand-logo{ height:56px; max-width:200px; }
}

/* Form status notice (success/error) */
.notice{border:1px solid rgba(15,23,42,.10); background:rgba(15,23,42,.03); border-radius:16px; padding:14px 16px; color:var(--ink);}
.notice--success{border-color: rgba(16,185,129,.35); background: rgba(16,185,129,.08);} 
.notice--error{border-color: rgba(239,68,68,.35); background: rgba(239,68,68,.08);} 
.notice strong{font-weight:600;}
