:root {
  --page-bg: radial-gradient(circle at 10% 10%, #0f172a 0%, #020617 45%, #000 85%);
  --surface: rgba(2, 6, 23, 0.35);
  --card-glass: rgba(15, 23, 42, 0.45);
  --accent: #38bdf8;
  --accent-grad: linear-gradient(120deg, #38bdf8 0%, #6366f1 50%, #ec4899 100%);
  --text: #e2e8f0;
  --muted: rgba(226, 232, 240, 0.6);
  --max-w: 1140px;
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 10px 40px rgba(0, 0, 0, 0.18);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem; /* base 16px */
  background: #020617;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,0.08) 0, rgba(2,6,23,0) 45%),
    radial-gradient(circle at 90% 20%, rgba(236,72,153,0.05) 0, rgba(2,6,23,0) 45%),
    radial-gradient(circle at 50% 130%, rgba(99,102,241,0.12) 0, rgba(2,6,23,0) 55%);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
  min-height: 100vh;
}

h1, h2, h3 {
  letter-spacing: -0.025em;
  font-weight: 600;
}

/* TOP GLOW BAR */
.top-glow {
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(56,189,248,0) 0%,
    rgba(56,189,248,1) 35%,
    rgba(99,102,241,1) 65%,
    rgba(236,72,153,0) 100%
  );
  filter: drop-shadow(0 8px 25px rgba(56,189,248,0.3));
}

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top, rgba(2,6,23,0.85), rgba(2,6,23,0));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.logo-img {
  width: 38px;
  height: 38px;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
}

nav a {
  text-decoration: none;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--accent-grad);
  border: none;
  border-radius: 999px;
  padding: 0.48rem 1.05rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: #020617;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
  cursor: pointer;
  transition: transform 0.1s ease-out;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.3rem;
}

/* HERO */
.hero {
  padding: 5.3rem 1.25rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, rgba(2,6,23,0) 65%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  background: rgba(56,189,248,0.06);
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 999px;
  padding: 0.25rem 0.7rem 0.25rem 0.5rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
  color: rgba(226,232,240,0.75);
}

.dot {
  width: 7px;
  height: 7px;
  background: #38bdf8;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(56,189,248,1);
}

.hero h1 {
  font-size: clamp(2.5rem, 4.2vw, 3rem); /* tightened */
  line-height: 1.02;
  margin-bottom: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero p {
  color: rgba(226, 232, 240, 0.8);
  max-width: 34rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem; /* was 0.9rem */
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-grad);
  border: none;
  color: #020617;
  font-weight: 600;
  border-radius: 0.9rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(56, 189, 248, 0.35);
  letter-spacing: -0.01em;
  font-size: 0.85rem; /* up from 0.8 */
}

.btn-secondary {
  background: rgba(3, 7, 18, 0.25);
  border: 1px solid rgba(148,163,184,0.2);
  color: #e2e8f0;
  font-weight: 500;
  border-radius: 0.9rem;
  padding: 0.6rem 1.15rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  font-size: 0.85rem; /* match primary */
}

.hero-card {
  background: radial-gradient(circle at 10% 0%, rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.35));
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  transition: transform 0.15s ease-out, border 0.15s;
}

.hero-card:hover {
  transform: translateY(-2px);
  border: 1px solid rgba(56,189,248,0.35);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.95rem; /* up */
}

.hero-card-sub {
  font-size: 0.8rem; /* up from 0.74 */
  color: rgba(226, 232, 240, 0.6);
  margin-bottom: 1rem;
}

/* prettier list in hero */
.hero-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.4rem;
  color: rgba(226,232,240,0.88);
  font-size: 0.85rem; /* up from 0.78 */
}

.hero-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.hero-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: linear-gradient(180deg, #38bdf8 0%, #6366f1 100%);
  border-radius: 999px;
  margin-top: 0.4rem;
  flex: 0 0 6px;
}

/* METRICS */
.metric-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.metric {
  background: rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 0.8rem;
  padding: 0.55rem 0.8rem 0.6rem;
  flex: 1;
}

.metric h3 {
  font-size: 1.25rem;
  margin-bottom: 0.1rem;
  letter-spacing: -0.02em;
}

.metric p {
  font-size: 0.7rem; /* was 0.6rem */
  color: rgba(226, 232, 240, 0.5);
}

/* SECTION BASE */
section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 2rem; /* was 1.85rem */
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.03em;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.65rem;
  width: 105px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(56,189,248,0) 0%,
    rgba(56,189,248,1) 30%,
    rgba(99,102,241,1) 85%,
    rgba(236,72,153,0) 100%
  );
  border-radius: 999px;
}

.section-head p {
  color: rgba(226, 232, 240, 0.55);
  max-width: 38rem;
  margin: 1.3rem auto 0;
  font-size: 0.95rem; /* was 0.9rem */
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: radial-gradient(circle at 50% -20%, rgba(56,189,248,0.12), rgba(15,23,42,0.65));
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem 1.45rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.21);
  transition: transform 0.15s ease-out, border 0.15s, box-shadow 0.15s;
}

.service-card:hover {
  transform: translateY(-3px);
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 18px 34px rgba(56,189,248,0.14);
}

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(2, 6, 23, 0.2);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #fff;
  font-size: 0.78rem;
}

.service-card h3 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem; /* was 0.9rem */
  letter-spacing: -0.015em;
}

.service-card p {
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.82rem; /* was 0.78rem */
}

/* ABOUT */
.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-box,
.about-wrap > div:first-child {
  background: rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 1.15rem;
  padding: 1.25rem 1.25rem 1rem;
  backdrop-filter: blur(4px);
}

.about-wrap p {
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.9rem; /* was 0.85rem */
}

.mt {
  margin-top: 1rem;
}

.pill-list {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: rgba(226, 232, 240, 0.85);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.01em;
}

.about-small {
  margin-top: 0.75rem;
  font-size: 0.8rem; /* was 0.75rem */
  color: rgba(226,232,240,0.6);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  background: radial-gradient(circle at 20% 0%, rgba(236, 72, 153, 0.04), rgba(15, 23, 42, 0.35));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem 1.3rem;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  display: grid;
  gap: 1.1rem;
}

.contact-location {
  border-bottom: 1px solid rgba(148,163,184,0.12);
  padding-bottom: 1rem;
}

.contact-location:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-location h3 {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.location-badge {
  display:inline-block;
  border-radius:999px;
  padding:0.2rem 0.7rem;
  font-size:0.7rem;
  letter-spacing:0.02em;
  text-transform:uppercase;
  margin-bottom:0.55rem;
  border:1px solid rgba(148,163,184,0.25);
  color:rgba(226,232,240,0.85);
}

.location-badge.canada {
  background:rgba(56,189,248,0.08);
}

.location-badge.ethiopia {
  background:rgba(99,102,241,0.08);
  border:1px solid rgba(148,163,184,0.18);
}

.contact-line {
  font-size: 0.8rem; /* was 0.78rem */
  color: rgba(226,232,240,0.78);
  margin-bottom: 0.25rem;
}

.contact-line span {
  display: inline-block;
  min-width: 4.3rem;
  color: rgba(226,232,240,0.5);
  font-weight: 500;
}

.contact-footnote {
  border-top: 1px solid rgba(148,163,184,0.12);
  padding-top: 1rem;
  font-size: 0.78rem; /* was 0.72rem */
  color: rgba(226,232,240,0.58);
  line-height: 1.45;
}

/* FORM */
form {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.15);
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  flex: 1;
  min-width: 160px;
}

label {
  font-size: 0.78rem; /* was 0.75rem */
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 0.3rem;
}

input,
textarea {
  background: rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 0.8rem;
  padding: 0.5rem 0.55rem;
  color: #fff;
  outline: none;
  font-size: 0.85rem;
}

input:focus,
textarea:focus {
  border: 1px solid rgba(56, 189, 248, 0.8);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.08);
  background: rgba(15, 23, 42, 0.25);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button[type="submit"] {
  background: var(--accent-grad);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #020617;
  box-shadow: 0 18px 34px rgba(99, 102, 241, 0.35);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2.5rem 1.25rem 2rem;
  background: rgba(2,6,23,0.35);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.5);
  font-size: 0.78rem; /* was 0.74rem */
  backdrop-filter: blur(12px);
}

footer a {
  color: #38bdf8;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content,
  .about-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav ul {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero {
    padding-top: 5rem;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-card {
    margin-top: 1rem;
  }
  .section-head h2 {
    font-size: 1.55rem;
  }
}
