:root {
  --odds-navy: #052f4f;
  --odds-blue: #0b5f78;
  --odds-teal: #10a7b4;
  --odds-cyan: #65d4dc;
  --odds-pink: #b82d8d;
  --odds-magenta: #d84ba3;
  --odds-rose: #fff0f8;
  --odds-mint: #eafafb;
  --odds-cream: #fbf7f3;
  --ink: #102033;
  --muted: #637083;
  --line: rgba(16, 32, 51, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(5, 47, 79, 0.08);
  --shadow-md: 0 22px 65px rgba(5, 47, 79, 0.16);
  --shadow-lg: 0 35px 90px rgba(5, 47, 79, 0.22);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1180px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(101, 212, 220, 0.20), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(216, 75, 163, 0.16), transparent 30rem),
    #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(72px, 8vw, 118px) 0;
}

.skip-link {
  position: absolute;
  inset: 12px auto auto 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--odds-navy);
  color: var(--white);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: linear-gradient(90deg, var(--odds-navy), var(--odds-blue));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__item {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topbar__item:hover {
  color: var(--white);
}

.topbar__item--login {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.topbar__divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.32);
}

.topbar__spacer {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__logo {
  width: clamp(190px, 20vw, 260px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand__logo--footer {
  width: min(100%, 245px);
  max-height: none;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-size: clamp(1rem, 2vw, 1.18rem);
  letter-spacing: -0.03em;
  color: var(--odds-navy);
}

.brand__text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #28445b;
  font-weight: 650;
  font-size: 0.95rem;
}

.nav__menu a {
  position: relative;
  padding: 10px 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--odds-teal), var(--odds-pink));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav__menu a:hover::after,
.nav__menu a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.language-switch__button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.language-switch__button.is-active {
  color: var(--white);
  background: var(--odds-navy);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 10px;
  background: var(--odds-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 250, 251, 0.96), rgba(255, 240, 248, 0.82)),
    radial-gradient(circle at 72% 25%, rgba(16, 167, 180, 0.30), transparent 23rem);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--odds-pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.split__content h2,
.access h2,
.contact h2 {
  margin: 0;
  color: var(--odds-navy);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(2.55rem, 5.4vw, 4.65rem);
}

.hero__lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #40546a;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero__actions,
.access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--odds-teal), var(--odds-blue) 48%, var(--odds-pink));
  box-shadow: 0 18px 34px rgba(11, 95, 120, 0.22);
}

.button--ghost {
  color: var(--odds-navy);
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(5, 47, 79, 0.12);
}

.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.button--full {
  width: 100%;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__pills span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  color: #314a61;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__visual {
  position: relative;
}

.hero__image-card {
  position: relative;
  min-height: min(620px, 70vh);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero__image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 47, 79, 0.02), rgba(5, 47, 79, 0.58)),
    linear-gradient(120deg, rgba(16, 167, 180, 0.30), rgba(216, 75, 163, 0.26));
  mix-blend-mode: multiply;
}

.hero__image-card img {
  width: 100%;
  height: 100%;
  min-height: min(620px, 70vh);
  object-fit: cover;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  color: var(--odds-navy);
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.floating-card strong {
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.floating-card small {
  color: var(--muted);
  font-weight: 650;
}

.floating-card__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--odds-teal), var(--odds-pink));
  font-size: 1.35rem;
  font-weight: 900;
}

.floating-card--one {
  left: clamp(12px, 4vw, 34px);
  bottom: 34px;
  grid-template-columns: auto 1fr;
  align-items: center;
  max-width: 280px;
}

.floating-card--one small {
  grid-column: 2;
}

.floating-card--two {
  right: 24px;
  top: 30px;
  text-align: center;
}

.floating-card--two strong {
  font-size: 2.4rem;
  color: var(--odds-pink);
}

.hero__curve {
  position: absolute;
  inset: auto -10% -7rem -10%;
  height: 14rem;
  background: var(--white);
  border-radius: 50% 50% 0 0;
}

.value-strip {
  position: relative;
  margin-top: -40px;
  z-index: 3;
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-strip article {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 32, 51, 0.08);
}

.value-strip span {
  color: var(--odds-pink);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.value-strip .stat-card__number {
  display: block;
  min-height: 1em;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.value-strip h2 {
  margin: 8px 0 8px;
  color: var(--odds-navy);
  font-size: 1.1rem;
}

.value-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split__media::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--odds-teal), var(--odds-pink));
  opacity: 0.16;
}

.media-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  max-width: 260px;
  padding: 20px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--odds-navy), var(--odds-blue));
  box-shadow: var(--shadow-md);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge strong {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.media-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.split__content h2,
.section-heading h2,
.access h2,
.contact h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
}

.split__content p,
.section-heading p,
.access p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

.split__content p {
  margin: 20px 0 0;
}

.values {
  background:
    radial-gradient(circle at 8% 18%, rgba(16, 167, 180, 0.10), transparent 24rem),
    linear-gradient(180deg, #ffffff, #fbfdfe);
  border-top: 1px solid rgba(16, 32, 51, 0.06);
}

.values__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: clamp(36px, 8vw, 100px);
}

.values__intro h2 {
  margin: 0;
  color: var(--odds-navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.values__intro > p {
  max-width: 620px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(16, 32, 51, 0.10);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -54px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 167, 180, 0.15), rgba(216, 75, 163, 0.16));
}

.value-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 999px;
  color: var(--odds-blue);
  background: var(--odds-mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.value-card h3 {
  margin: 26px 0 10px;
  color: var(--odds-navy);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.services {
  background:
    linear-gradient(180deg, var(--odds-mint), #ffffff 72%),
    radial-gradient(circle at 10% 10%, rgba(216, 75, 163, 0.18), transparent 24rem);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading p {
  margin: 20px 0 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transform: translateZ(0);
}

.service-card__image {
  position: absolute;
  inset: 0;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 47, 79, 0.02) 20%, rgba(5, 47, 79, 0.80)),
    linear-gradient(135deg, var(--accent), rgba(5, 47, 79, 0.18));
  mix-blend-mode: multiply;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--white);
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.service-card h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.5;
}

.service-card--accent-a { --accent: rgba(216, 75, 163, 0.60); }
.service-card--accent-b { --accent: rgba(16, 167, 180, 0.62); }
.service-card--accent-c { --accent: rgba(184, 45, 141, 0.58); }
.service-card--accent-d { --accent: rgba(5, 47, 79, 0.62); }
.service-card--accent-e { --accent: rgba(16, 167, 180, 0.62); }
.service-card--accent-f { --accent: rgba(184, 45, 141, 0.58); }

.access {
  color: var(--white);
  background:
    radial-gradient(circle at 22% 8%, rgba(101, 212, 220, 0.40), transparent 28rem),
    linear-gradient(135deg, var(--odds-navy), #07364e 55%, #571d64);
  overflow: hidden;
}

.access__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.access .eyebrow,
.access h2,
.access p {
  color: var(--white);
}

.access .eyebrow {
  opacity: 0.88;
}

.access p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.insight-list {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin-top: 30px;
}

.insight-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.insight-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--odds-teal), var(--odds-pink));
  font-size: 0.82rem;
  font-weight: 950;
}

.insight-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.insight-list p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.access__closing {
  margin: 24px 0 0;
  color: var(--white) !important;
  font-weight: 850;
}

.dashboard-shell {
  width: min(100%, 570px);
  margin-inline: auto;
  padding: clamp(12px, 2vw, 18px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

.dashboard-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 24px);
  border-radius: 26px;
  color: var(--odds-navy);
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 75, 163, 0.16), transparent 16rem),
    linear-gradient(180deg, #ffffff, #f5fbfc);
  box-shadow: 0 22px 70px rgba(5, 47, 79, 0.20);
}

.dashboard-panel::before {
  content: "";
  position: absolute;
  inset: auto -30px -70px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(16, 167, 180, 0.12);
}

.dashboard-panel__top,
.dashboard-kpis,
.dashboard-body,
.dashboard-panel__bottom {
  position: relative;
  z-index: 2;
}

.dashboard-panel__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--odds-pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.dashboard-panel__top strong {
  display: block;
  color: var(--odds-navy);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #057447;
  background: rgba(0, 167, 96, 0.10);
  font-size: 0.74rem;
  font-weight: 900;
}

.dashboard-status::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #00a760;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-kpis article {
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 12px 26px rgba(5, 47, 79, 0.07);
}

.dashboard-kpis small,
.dashboard-kpis strong {
  display: block;
}

.dashboard-kpis small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.dashboard-kpis strong {
  margin-top: 4px;
  color: var(--odds-blue);
  font-size: clamp(1.25rem, 3vw, 1.72rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  margin-top: 12px;
}

.dashboard-card {
  min-height: 150px;
  padding: 15px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 12px 26px rgba(5, 47, 79, 0.07);
}

.dashboard-card--wide {
  grid-row: span 2;
}

.dashboard-card__title {
  color: var(--odds-navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mini-bars {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.mini-bars span {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.08);
}

.mini-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--odds-teal), var(--odds-pink));
}

.dashboard-card--donut,
.dashboard-card--map {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.donut-chart {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--white) 0 44%, transparent 45%),
    conic-gradient(var(--odds-teal) 0 54%, var(--odds-pink) 54% 78%, #dfeaf0 78% 100%);
  box-shadow: inset 0 0 0 1px rgba(16, 32, 51, 0.06);
}

.map-points {
  position: relative;
  width: 116px;
  height: 104px;
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(16, 167, 180, 0.10), rgba(216, 75, 163, 0.10)),
    radial-gradient(circle at 50% 42%, rgba(11, 95, 120, 0.10), transparent 42px);
}

.map-points::before {
  content: "";
  position: absolute;
  inset: 15px 35px 12px 42px;
  border-radius: 50% 42% 48% 40%;
  border: 2px solid rgba(11, 95, 120, 0.18);
  transform: rotate(-12deg);
}

.map-points span {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--odds-pink);
  box-shadow: 0 7px 18px rgba(5, 47, 79, 0.18);
}

.map-points span:nth-child(1) { left: 52px; top: 18px; }
.map-points span:nth-child(2) { left: 44px; top: 39px; background: var(--odds-teal); }
.map-points span:nth-child(3) { left: 62px; top: 58px; }
.map-points span:nth-child(4) { left: 38px; top: 73px; background: var(--odds-blue); }
.map-points span:nth-child(5) { left: 71px; top: 79px; background: var(--odds-teal); }

.dashboard-panel__bottom {
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 18px;
  color: var(--odds-navy);
  background: rgba(101, 212, 220, 0.13);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 342px);
  margin-inline: auto;
  padding: 15px;
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.10));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-lg);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 92px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
  background: #101822;
  z-index: 2;
}

.phone-shell__screen {
  overflow: hidden;
  min-height: 620px;
  padding: 48px 18px 22px;
  border-radius: 32px;
  background: #f6fafb;
}

.app-top {
  display: flex;
  gap: 7px;
  padding: 10px 0 14px;
}

.app-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6d4de;
}

.app-title {
  margin: 0 -18px 18px;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--odds-teal), var(--odds-blue));
  font-weight: 850;
}

.app-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
  padding: 14px;
  border-radius: 18px;
  color: var(--odds-navy);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 47, 79, 0.08);
}

.app-card strong,
.app-card small {
  display: block;
}

.app-card strong {
  font-size: 1.45rem;
  line-height: 1.1;
  color: #00a760;
}

.app-card small {
  color: var(--muted);
  font-weight: 700;
}

.app-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-weight: 900;
}

.app-icon--blue { background: #1b5c8b; }
.app-icon--pink { background: #d84689; }
.app-icon--green { background: #00a760; }
.app-icon--orange { background: #d06a23; }

.contact {
  background:
    radial-gradient(circle at 86% 6%, rgba(216, 75, 163, 0.13), transparent 22rem),
    var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-list a {
  color: #29475f;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--odds-pink);
}

.contact-list__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--odds-mint);
}

.contact-form {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: var(--shadow-md);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--odds-navy);
  font-weight: 850;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 18px;
  padding: 13px 15px;
  outline: none;
  color: var(--ink);
  background: #fbfdfe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--odds-teal);
  box-shadow: 0 0 0 4px rgba(16, 167, 180, 0.13);
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

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

.footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 75, 163, 0.22), transparent 30rem),
    #041f34;
  padding: 58px 0 24px;
}

.footer .brand__text strong,
.footer .brand__text small {
  color: var(--white);
}

.footer .brand__logo {
  background: var(--white);
  border-radius: 14px;
  padding: 8px 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.6fr;
  gap: 34px;
}

.footer p {
  max-width: 450px;
  margin: 20px 0 0;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer a {
  display: table;
  margin: 8px 0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer .footer__policy {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 800;
}

.footer .footer__policy::before {
  content: "PDF";
  display: inline-grid;
  min-width: 34px;
  min-height: 24px;
  margin-right: 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.back-to-top {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.noscript {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--white);
  background: var(--odds-navy);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero__grid,
  .split,
  .values__intro,
  .access__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    max-width: 720px;
    margin-inline: auto;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split__media {
    max-width: 620px;
  }

  .media-badge {
    right: 18px;
  }

  .access__content {
    text-align: left;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
  }

  .topbar__spacer,
  .topbar__divider {
    display: none;
  }

  .nav {
    gap: 12px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    top: calc(var(--header-height) + 42px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 32, 51, 0.10);
    box-shadow: var(--shadow-lg);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav__menu a:hover {
    background: var(--odds-mint);
  }

  .language-switch {
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .value-strip {
    margin-top: 0;
    padding: 24px 0 0;
  }

  .value-strip__grid,
  .values__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 360px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand__logo {
    width: clamp(170px, 58vw, 220px);
    max-height: 50px;
  }

  .brand__text small {
    display: none;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__image-card,
  .hero__image-card img {
    min-height: 440px;
  }

  .floating-card--two {
    right: 14px;
    top: 16px;
  }

  .floating-card--one {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }

  .hero__actions,
  .access__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .media-badge {
    position: static;
    margin-top: -46px;
    margin-inline: 16px;
  }

  .phone-shell__screen {
    min-height: 560px;
  }

  .dashboard-kpis,
  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-card--wide {
    grid-row: auto;
  }

  .dashboard-panel__top {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
