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

:root {
  --bg-main: #f5f7fb;
  --bg-soft: #ffffff;
  --bg-deep: #071521;
  --accent: #00a287;
  --accent-soft: rgba(0, 162, 135, 0.07);
  --accent-strong: #00856a;
  --text-main: #05101c;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 247, 251, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark-sm {
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #4b5563;
  position: relative;
  padding-bottom: 0.1rem;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 162, 135, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(0, 162, 135, 0.4);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #111827;
}

.btn-outline:hover {
  border-color: var(--accent);
}

.btn-ghost {
  background: #e5f6f2;
  color: var(--accent-strong);
}

.btn-ghost:hover {
  background: #d5f0ea;
}

.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  padding: 3.4rem 0 3.6rem;
  background: radial-gradient(circle at top left, #ffffff 0, #f5f7fb 40%, #eef2ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-text h1 {
  margin: 1.1rem 0 0.7rem;
  font-size: 2.6rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.hero-text .accent {
  color: var(--accent-strong);
}

.hero-subtitle {
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.8rem;
}

.meta-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.meta-value {
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shadow {
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.35);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.95rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-badge-value {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-strong);
}

.hero-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* SECTIONS */
.section {
  padding: 3.2rem 0;
}

.section-soft {
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.1rem;
}

.section-header h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* GRID & CARDS */
.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
}

.card.mini {
  padding: 1.1rem 1.2rem;
}

.capability h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.capability p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 162, 135, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
}

.icon-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
}

/* INDUSTRIES */
.card.mini h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.card.mini p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* LEADERSHIP */
.leadership-grid .profile {
  padding: 1.2rem 1.3rem;
}

.profile h3 {
  margin: 0 0 0.1rem;
  font-size: 1rem;
}

.profile .role {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.profile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* CONTACT */
.section-contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-info {
  background: radial-gradient(circle at top left, #071521, #020617);
  color: #e5e7eb;
  border: none;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.55);
}

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: #d1d5db;
}

.contact-block {
  margin-top: 1.2rem;
}

.contact-block h4 {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.contact-block a {
  color: #e5e7eb;
}

.tagline {
  font-style: italic;
}

.muted {
  font-size: 0.78rem;
  color: #9ca3af;
}

.contact-form h3 {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 162, 135, 0.4);
}

/* FOOTER */
.footer {
  background: var(--bg-deep);
  color: #e5e7eb;
  padding-top: 2.3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: #9ca3af;
  max-width: 420px;
}

.footer-cols {
  display: flex;
  gap: 2.5rem;
  font-size: 0.86rem;
}

.footer-cols h4 {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

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

.footer-cols li {
  margin-bottom: 0.25rem;
}

.footer-cols a {
  color: #e5e7eb;
  opacity: 0.9;
}

.footer-cols a:hover {
  opacity: 1;
}

.footer-bottom {
  padding: 0.9rem 0 1.3rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .topbar-inner {
    flex-wrap: wrap;
  }
  .nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-top {
    flex-direction: column;
  }
}



.nav-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile nav toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 16px;
  border-radius: 999px;
  background: #0f172a;
  margin: 0 auto;
}

/* Mobile layout */
@media (max-width: 768px) {
  .topbar-inner {
    gap: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav-group {
    position: absolute;
    inset: 100% 0 auto 0;
    padding: 0.75rem 1.5rem 1.1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .topbar.nav-open .nav-group {
    display: flex;
  }

  .nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav a {
    padding: 0.2rem 0;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 2.6rem 0 2.8rem;
  }
  .hero-text h1 {
    font-size: 2.1rem;
  }
  .section {
    padding: 2.4rem 0;
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}


.card.mini img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  height: 160px;
  object-fit: cover;
}


/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 65px;
  right: 20px;
  background: white;
  width: 200px;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.mobile-menu a {
  color: #0f172a;
  font-size: 15px;
  padding: 6px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #94a3b8;
  background: white;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 16px;
  background: #0f172a;
  border-radius: 999px;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .nav, .btn-outline { display: none !important; }
}
