:root {
  --color-dark: #0b1b3a;
  --color-primary: #203a84;
  --color-secondary: #00b8a9;
  --color-light: #f7f8fc;
  --color-card: #ffffff;
  --color-border: rgba(11, 27, 58, 0.08);
  --shadow-soft: 0 10px 30px rgba(4, 14, 33, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-light);
  color: rgba(11, 27, 58, 0.88);
  line-height: 1.6;
}

.subtitle-tag,
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.section-label {
  color: rgba(11, 27, 58, 0.7);
  margin-bottom: 0.5rem;
}

.main-hero {
  background: radial-gradient(circle at 10% 20%, #00b8a9 0%, #203a84 45%, #0b1b3a 100%);
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 10%, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.2rem;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-actions .button.is-warning {
  background: linear-gradient(130deg, #ffdd57, #ffc640);
  border: none;
  color: #0b1b3a;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 214, 87, 0.4);
}

.hero-actions .button.is-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.metric-copy {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.section.services {
  background-color: var(--color-light);
}

.section.services .title,
.section.services .subtitle {
  color: #000000;
}

.service-card {
  background-color: var(--color-card);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  height: 100%;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.service-card p {
  margin-bottom: 0.75rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: rgba(11, 27, 58, 0.75);
}

.service-card li + li {
  margin-top: 0.35rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(32, 58, 132, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlighted {
  background: linear-gradient(120deg, #ffffff 0%, #eef3ff 55%, #f7f8fc 100%);
}

.highlighted h2 {
  color: #000000;
}

.highlight-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.highlight-list strong {
  color: var(--color-dark);
}

.contact-panel {
  background-color: #101b36;
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-panel .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem 0;
}

.contact-panel .button {
  margin-top: 0.75rem;
  font-weight: 600;
}

.contact-panel .button.is-white {
  color: var(--color-dark);
}

.contact-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
}

.footer {
  background: #0b1b3a;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem;
}

.footer .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.footer p {
  margin-bottom: 0.4rem;
}

.footer .columns {
  margin-bottom: 1.5rem;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.4rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .contact-panel {
    margin-top: 2rem;
  }
}
