:root {
  --bg: #f3f5f8;
  --panel: #ffffff;
  --panel-soft: #f7fafc;
  --ink: #071c46;
  --ink-soft: #334d7a;
  --brand: #005bbf;
  --brand-deep: #032a70;
  --line: #dce5f1;
  --shadow: 0 18px 50px rgba(6, 35, 82, 0.1);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 18% 12%, #ffffff 0%, var(--bg) 45%, #eef3f9 100%);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.ambient {
  position: fixed;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  top: -18vw;
  left: -8vw;
  background: radial-gradient(circle, #bdd4f3 0%, transparent 70%);
}

.ambient-right {
  right: -10vw;
  bottom: -20vw;
  background: radial-gradient(circle, #a7c8f5 0%, transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(243, 245, 248, 0.75);
  border-bottom: 1px solid rgba(220, 229, 241, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand);
}

.btn, .ml-form-embedWrapper .ml-form-embedBody .ml-block-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(140deg, var(--brand) 0%, #2478d3 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(2, 53, 125, 0.25);
}

.btn:hover,
.btn:focus-visible,
.ml-form-embedWrapper .ml-form-embedBody .ml-block-form button:hover
.ml-form-embedWrapper .ml-form-embedBody .ml-block-form button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 53, 125, 0.3);
}

.ml-form-embedWrapper .ml-form-embedBody .ml-block-form button{
  border-radius: 999px !important;
}

.btn-small {
  font-size: 0.92rem;
  padding: 0.58rem 1.05rem;
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--brand-deep);
  box-shadow: none;
}

main {
  padding: 2.5rem 0 4rem;
}

.hero {
  padding: 4rem 0 2.3rem;
}

.kicker {
  font-family: Sora, Manrope, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
}

h1 {
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  max-width: 16ch;
}

.lead {
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  max-width: 60ch;
  color: var(--ink-soft);
}

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

.section {
  padding: 2.2rem 0;
}

.section-head {
  margin-bottom: 1.1rem;
}

.section-head h2 {
  max-width: 30ch;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, #fff 0%, var(--panel-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 7px 22px rgba(5, 39, 97, 0.06);
}

.card h3 {
  font-size: 1.06rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 122, 220, 0.16), transparent 75%);
}

.pillar p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
}

.grc-panel,
.contact-panel {
  background: linear-gradient(150deg, #ffffff 0%, #eef4fd 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.2rem, 2vw, 2rem);
  box-shadow: var(--shadow);
}

.grc-panel h2,
.contact-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.grc-panel p {
  margin: 0;
  max-width: 65ch;
  color: var(--ink-soft);
}

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

.contact-panel p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
}

.contact-intro {
  max-width: 470px;
}

.contact-details {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
}

.contact-details a {
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-deep);
}

.contact-details p {
  margin: 0;
}

.lead-form {
  display: grid;
  gap: 0.55rem;
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.lead-form label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdcec;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
}

.lead-form textarea {
  resize: vertical;
  min-height: 116px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(0, 91, 191, 0.25);
  border-color: var(--brand);
}

.lead-form .btn {
  margin-top: 0.2rem;
  width: fit-content;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #9f2433;
}

.form-status.is-success {
  color: #155f32;
}

.contact-fallback {
  width: 100%;
  margin-top: 0.2rem;
}

.contact-fallback p {
  margin: 0;
  font-size: 0.94rem;
}

.contact-fallback a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.65s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.06s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.12s;
}

.reveal:nth-of-type(4) {
  animation-delay: 0.18s;
}

.reveal:nth-of-type(5) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-details {
    width: 100%;
  }

  .lead-form {
    width: 100%;
  }

  .btn-small {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.94rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  main {
    padding-top: 1rem;
  }

  .hero {
    padding-top: 2.2rem;
  }
}


