/* Global styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #3c8ba1;
  --primary-dark: #296273;
  --accent: #f5a623;
  --text-dark: #12313b;
  --text-muted: #5e7b86;
  --bg-light: #f5fafc;
  --bg-white: #ffffff;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at top left, #e4f3f8 0, #ffffff 55%, #e4f3f8 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */
.container {
  width: min(1100px, 100% - 3rem);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.85),
      transparent
    );
  border-bottom: 1px solid rgba(60, 139, 161, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #e4f2f6);
  padding: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  position: relative;
  color: var(--text-muted);
  padding-block: 0.3rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--primary-dark);
  font-weight: 600;
}

.nav-cta {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 139, 161, 0.2);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 12px 30px rgba(26, 93, 115, 0.35);
}

.nav-cta span {
  font-size: 1.1rem;
}

/* Hero */
.hero {
  padding-block: 3.5rem 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 139, 161, 0.2);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.3);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-subtitle strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: rgba(17, 68, 86, 0.65);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 76, 99, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(15, 76, 99, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  border-color: rgba(60, 139, 161, 0.35);
}

.btn-outline:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.hero-meta-value {
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, #ffffff, #e0f1f7);
  border-radius: 1.8rem;
  padding: 2.1rem 2.1rem 2rem;
  box-shadow: 0 22px 55px rgba(6, 40, 53, 0.35);
  overflow: hidden;
}

.hero-ribbon {
  position: absolute;
  right: -60px;
  top: 38px;
  width: 190px;
  padding: 0.5rem 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.69rem;
  letter-spacing: 0.22em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: rotate(40deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 1.3rem;
  padding: 0.55rem;
  background: radial-gradient(circle at 20% 10%, #ffffff, #e3f0f6);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-card-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}

.hero-card-tagline {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-stat {
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(60, 139, 161, 0.15);
}

.hero-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-stat-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.hero-note {
  padding: 0.9rem 0.95rem;
  border-radius: 1.1rem;
  background: rgba(247, 250, 252, 0.96);
  border: 1px dashed rgba(60, 139, 161, 0.35);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-note strong {
  color: var(--primary-dark);
}

/* Sections */
.section {
  padding-block: 2.7rem 3.2rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.9);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.section-title {
  font-size: 1.8rem;
  color: var(--text-dark);
}

.section-description {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.3rem;
  padding: 1.3rem 1.1rem 1.4rem;
  border: 1px solid rgba(60, 139, 161, 0.12);
  box-shadow: 0 16px 40px rgba(10, 51, 66, 0.08);
}

.value-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-dark);
  margin-bottom: 0.45rem;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.4rem;
  padding: 1.3rem 1.2rem 1.4rem;
  border: 1px solid rgba(60, 139, 161, 0.18);
  box-shadow: 0 18px 42px rgba(10, 51, 66, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(60, 139, 161, 0.06);
  color: var(--primary-dark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-title {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-list {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.service-list li + li {
  margin-top: 0.2rem;
}

.list-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(60, 139, 161, 0.06);
  font-size: 0.72rem;
  margin-right: 0.3rem;
  margin-bottom: 0.25rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.card-soft {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(60, 139, 161, 0.14);
  box-shadow: 0 18px 40px rgba(4, 30, 40, 0.18);
}

.card-soft h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}

.card-soft p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-soft ul {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.card-soft li + li {
  margin-top: 0.3rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.badge {
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(60, 139, 161, 0.2);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.9);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  border-radius: 1.3rem;
  padding: 1.2rem 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(60, 139, 161, 0.16);
  box-shadow: 0 16px 40px rgba(4, 30, 40, 0.18);
}

.team-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.team-name {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.team-credentials {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.team-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.3rem;
}

.metric-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(60, 139, 161, 0.06);
  border: 1px dashed rgba(60, 139, 161, 0.4);
}

.metric-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(60, 139, 161, 0.16);
  box-shadow: 0 18px 40px rgba(4, 30, 40, 0.2);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--primary-dark);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}

.field-full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  margin-top: 0.1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(60, 139, 161, 0.25);
  background: rgba(255, 255, 255, 0.95);
  font: inherit;
  color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(60, 139, 161, 0.3);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-footnote {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-actions {
  margin-top: 1.2rem;
}

.contact-aside {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.5rem;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px dashed rgba(60, 139, 161, 0.4);
}

.contact-aside h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-aside p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.csr-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.csr-list li + li {
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid rgba(60, 139, 161, 0.18);
  background: linear-gradient(
    to top,
    rgba(8, 39, 51, 0.96),
    rgba(14, 63, 82, 0.98)
  );
  color: rgba(235, 247, 250, 0.96);
}

.footer-inner {
  padding-block: 2.2rem 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-size: 0.86rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(234, 247, 250, 0.9);
}

.footer-mini {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.footer-mini img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #e3f4fa);
  padding: 3px;
}

.footer-mini span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.85;
}

.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 0.6rem;
  color: rgba(232, 245, 248, 0.9);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: rgba(216, 237, 242, 0.96);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-line + .footer-contact-line {
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 250, 253, 0.12);
  padding-block: 0.8rem;
  font-size: 0.78rem;
  color: rgba(195, 223, 231, 0.9);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-bottom a {
  color: inherit;
}

/* Utilities */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  background: rgba(60, 139, 161, 0.08);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-dark);
}

.mt-s {
  margin-top: 0.8rem;
}

.mt-m {
  margin-top: 1.4rem;
}

.mt-l {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 0.9rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .two-column,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-block: 2.6rem 2.6rem;
  }

  .hero-card {
    margin-top: 1rem;
  }

  .values-grid,
  .services-grid,
  .team-grid,
  .metrics-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2.5rem, 540px);
  }

  .hero-meta {
    flex-direction: column;
  }

  .values-grid,
  .services-grid,
  .team-grid,
  .metrics-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
