/* ===== Muyimeri Consulting — glassmorphism theme ===== */
:root {
  --bg: #0b1020;
  --bg-2: #0e1530;
  --text: #e8ecf8;
  --muted: #a7b0c9;
  --faint: #6b7594;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --gold: #f2c46d;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-blur: 20px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% -10%, #141b3d 0%, var(--bg) 55%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Glass tiles ===== */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 5vw;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: contain; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; color: var(--text); font-size: 15px; }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-phone { color: var(--gold) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 5vw 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(6px) saturate(1.05); transform: scale(1.06); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.72) 0%, rgba(11, 16, 32, 0.55) 45%, var(--bg) 100%);
}
.hero-content { position: relative; max-width: 900px; }
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(242, 196, 109, 0.1);
  border: 1px solid rgba(242, 196, 109, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero h1 .accent {
  background: linear-gradient(90deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 22px auto 0;
  max-width: 660px;
  font-size: 1.12rem;
  color: #c3cbe2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ===== Sections ===== */
.section { padding: 90px 5vw; position: relative; }
.section-alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ===== Grid + tiles ===== */
.grid { display: grid; gap: 22px; max-width: 1150px; margin: 0 auto; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.tile { padding: 30px 26px; transition: transform 0.2s ease, border-color 0.2s ease; }
.tile:hover { transform: translateY(-6px); border-color: rgba(129, 140, 248, 0.45); }
.tile-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(99, 102, 241, 0.35);
  margin-bottom: 18px;
}
.tile h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tile p { font-size: 14px; color: var(--muted); }

/* ===== Coverage band (services) ===== */
.coverage {
  max-width: 1150px;
  margin: 26px auto 0;
  padding: 26px 28px;
  text-align: center;
}
.coverage h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.coverage .chip-row { justify-content: center; margin: 0; }

/* ===== Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}
.split-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; margin: 8px 0 14px; }
.split-copy > p { color: var(--muted); margin-bottom: 16px; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.split-media-logo {
  display: flex;
  justify-content: center;
  padding: 40px;
}
.split-media-logo img { max-width: 320px; border-radius: 24px; }
.split-reverse .split-copy { order: 2; }
.split-reverse .split-media { order: 1; }

.check-list { list-style: none; margin: 18px 0 26px; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; color: #cdd4ea; }
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #34d399;
  font-weight: 700;
}

/* ===== Chips ===== */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #dbe1f5;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.about-note { margin-top: 18px; color: var(--muted); font-size: 14px; }

/* ===== Contact ===== */
.contact-card { padding: 34px 30px; }
.contact-card h3, .contact-form h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.contact-card address { font-style: normal; color: #cdd4ea; line-height: 1.8; margin-bottom: 18px; }
.contact-row { display: flex; gap: 8px; color: var(--muted); margin: 6px 0; }
.contact-row span { color: var(--faint); min-width: 100px; }
.contact-card .btn { margin-top: 18px; }

.contact-form { padding: 34px 30px; display: flex; flex-direction: column; gap: 8px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 6px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--faint); }
.contact-form .btn { margin-top: 14px; align-self: flex-start; }
.form-hint { font-size: 12px; color: var(--faint); margin-top: 8px; }

/* ===== Form result panel ===== */
.form-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.form-result-title { font-weight: 700; color: #34d399; font-size: 14px; }
.form-result-body { font-size: 13px; color: var(--muted); margin: 6px 0; }
.form-result-addr {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  color: var(--text);
  margin: 8px 0 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: fit-content;
}
.form-result .btn { margin-top: 0; }

/* ===== Footer ===== */
.footer { padding: 48px 5vw; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer-logo { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 14px; object-fit: contain; }
.footer p { color: var(--muted); font-size: 14px; }
.footer-meta { margin-top: 10px; font-size: 12px !important; color: var(--faint); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-copy { order: 1; }
  .split-reverse .split-media { order: 2; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    gap: 6px;
    background: rgba(11, 16, 32, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .nav-toggle { display: flex; }
  .hero-meta { flex-direction: column; gap: 4px; }
}