/* @2026 Mario Machado. */
:root {
  --blue: #0866c7;
  --blue-dark: #0057b8;
  --blue-deep: #034fa9;
  --ink: #0b1c34;
  --text: #4b5a6c;
  --muted: #eaf5ff;
  --line: #cbdced;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(29, 96, 156, 0.16);
  --soft-shadow: 0 12px 42px rgba(11, 95, 181, 0.14);
  --header-height: 60px;
  --page-scale: 1;
  --stage-height: 1044px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #e5f5ff 0, #eef8ff 24%, #f7fbff 52%, #eaf6ff 100%);
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

main {
  position: relative;
  padding-top: 16px;
}

.hero-stage {
  position: relative;
  height: var(--stage-height);
  min-height: 520px;
}

.page-shell {
  position: absolute;
  left: 50%;
  top: 70px;
  width: 1536px;
  height: 996px;
  margin: 0;
  padding: 0;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateX(-50%) scale(var(--page-scale));
  transform-origin: top center;
}

.round-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  flex: 0 0 auto;
}

[data-icon] svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.trust-item svg,
.service-item svg,
.stat-item svg {
  stroke: currentColor;
}

.placeholder-section {
  display: none;
}
