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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background-color: #ffffff;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  background-color: #0f172a;
  color: #f8fafc;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.brand__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand__role {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #38bdf8;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(140deg, #0ea5e9 0%, #2563eb 50%, #0f172a 100%);
  color: #f8fafc;
}

.hero__content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(248, 250, 252, 0.9);
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background-color: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  font-weight: 500;
  box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  max-width: 240px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(15, 23, 42, 0.7);
}

.cta--secondary {
  background: #0f172a;
  color: #f8fafc;
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section--accent {
  background-color: #f1f5f9;
}

.section--muted {
  background-color: #e2e8f0;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 12px 26px -18px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0;
  color: #475569;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(15, 23, 42, 0.25);
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 600;
  font-size: 1.15rem;
}

.client-list li {
  padding: 1rem 1.5rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 999px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 1.75rem 0;
  background-color: #0f172a;
  color: rgba(226, 232, 240, 0.8);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .site-header .container {
    justify-content: center;
    text-align: center;
  }

  .site-nav {
    justify-content: center;
  }

  .hero__content {
    text-align: center;
  }

  .hero__badge {
    margin: 0 auto;
  }

  .contact {
    text-align: center;
    justify-content: center;
  }
}
