/* Shared variables, reset, accessibility helpers, and reusable utilities. */

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

:root {
  /* Core theme palette: brand, neutral, surface, and required social colors. */
  --color-white: #ffffff;
  --color-black: #111111;
  --color-ink: #11192d;
  --color-navy: #0a2256;
  --color-body: #3e4b5f;
  --color-slate: #526079;
  --color-muted: #647087;
  --color-muted-light: #7a879b;
  --color-blue: #0878ed;
  --color-blue-deep: #0863ce;
  --color-blue-bright: #168cf2;
  --color-blue-soft: #376fc8;
  --color-red: #df001f;
  --color-red-deep: #b60018;
  --color-cyan: #02b7d2;
  --color-cyan-deep: #03a8c7;
  --color-surface: #f8fbff;
  --color-surface-alt: #f7f9fc;
  --color-surface-blue: #edf5ff;
  --color-surface-red: #fff3f3;
  --color-border: #e4eaf2;
  --color-border-strong: #dfe7f2;
  --color-facebook: #1877f2;
  --color-whatsapp: #25d366;
  --color-instagram: #c13584;

  /* Reusable transparency tokens for overlays, gradients, borders, and shadows. */
  --alpha-black-15: rgba(0, 0, 0, 0.15);
  --alpha-black-20: rgba(0, 0, 0, 0.2);
  --alpha-black-25: rgba(0, 0, 0, 0.25);
  --alpha-black-35: rgba(0, 0, 0, 0.35);
  --alpha-black-50: rgba(0, 0, 0, 0.5);
  --alpha-blue-08: rgba(8, 120, 237, 0.08);
  --alpha-blue-10: rgba(8, 120, 237, 0.1);
  --alpha-blue-15: rgba(8, 120, 237, 0.15);
  --alpha-blue-20: rgba(8, 120, 237, 0.2);
  --alpha-blue-25: rgba(8, 120, 237, 0.25);
  --alpha-blue-30: rgba(8, 120, 237, 0.3);
  --alpha-blue-40: rgba(8, 120, 237, 0.4);
  --alpha-blue-50: rgba(8, 120, 237, 0.5);
  --alpha-cyan-10: rgba(2, 183, 210, 0.1);
  --alpha-cyan-20: rgba(2, 183, 210, 0.2);
  --alpha-navy-05: rgba(10, 34, 86, 0.05);
  --alpha-navy-08: rgba(10, 34, 86, 0.08);
  --alpha-navy-10: rgba(10, 34, 86, 0.1);
  --alpha-navy-12: rgba(10, 34, 86, 0.12);
  --alpha-navy-15: rgba(10, 34, 86, 0.15);
  --alpha-navy-20: rgba(10, 34, 86, 0.2);
  --alpha-navy-35: rgba(10, 34, 86, 0.35);
  --alpha-red-10: rgba(223, 0, 31, 0.1);
  --alpha-red-15: rgba(223, 0, 31, 0.15);
  --alpha-red-20: rgba(223, 0, 31, 0.2);
  --alpha-red-25: rgba(223, 0, 31, 0.25);
  --alpha-slate-15: rgba(82, 96, 121, 0.15);
  --alpha-slate-25: rgba(82, 96, 121, 0.25);
  --alpha-slate-40: rgba(82, 96, 121, 0.4);
  --alpha-surface-blue-40: rgba(237, 245, 255, 0.4);
  --alpha-surface-blue-60: rgba(237, 245, 255, 0.6);
  --alpha-surface-blue-75: rgba(237, 245, 255, 0.75);
  --alpha-surface-blue-90: rgba(237, 245, 255, 0.9);
  --alpha-white-00: rgba(255, 255, 255, 0);
  --alpha-white-05: rgba(255, 255, 255, 0.05);
  --alpha-white-10: rgba(255, 255, 255, 0.1);
  --alpha-white-15: rgba(255, 255, 255, 0.15);
  --alpha-white-20: rgba(255, 255, 255, 0.2);
  --alpha-white-25: rgba(255, 255, 255, 0.25);
  --alpha-white-40: rgba(255, 255, 255, 0.4);
  --alpha-white-60: rgba(255, 255, 255, 0.6);
  --alpha-white-75: rgba(255, 255, 255, 0.75);
  --alpha-white-82: rgba(255, 255, 255, 0.82);
  --alpha-white-90: rgba(255, 255, 255, 0.9);
  --alpha-white-95: rgba(255, 255, 255, 0.95);
  --alpha-white-98: rgba(255, 255, 255, 0.98);
  --ink: var(--color-ink);
  --muted: var(--color-muted);
  --blue: var(--color-blue);
  --blue-deep: var(--color-blue-deep);
  --red: var(--color-red);
  --cyan: var(--color-cyan);
  --page: var(--color-white);
  --header-height: clamp(61px, 7.58vw, 86px);
  --edge: clamp(28px, 3.48vw, 50px);
  --soft-shadow: 0 11px 30px var(--alpha-slate-15);
  --outer-gutter: max(0px, calc((100vw - 1920px) / 2));
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--color-white);
  color: var(--ink);
  box-shadow: 0 8px 24px var(--alpha-navy-20);
  transform: translateY(-150%);
  transition: transform .18s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  background: var(--page);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

svg {
  display: block;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: clip;
  isolation: isolate;
  background: var(--page);
  box-shadow: none;
}

@supports not (overflow: clip) {
.site-shell {
  overflow: hidden;
}
}

@media (min-width: 1441px) {
:root {
  --header-height: clamp(86px, 5.972vw, 115px);
  --edge: clamp(50px, 3.472vw, 67px);
}
}

@media (max-width: 780px) {
:root {
  --header-height: 68px;
  --edge: 20px;
}
}

@media (max-width: 640px) {
:root {
  --edge: 16px;
}
}

@media (max-width: 350px) {
:root {
  --header-height: 64px;
}
}

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

*,
*::before,
*::after {
  scroll-behavior: auto !important;
  transition-duration: .01ms !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
}
}

@media (max-width: 991px) {
:root {
  --header-height: 72px;
}
}

.ui-icon.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  line-height: 1;
  font-style: normal;
  vertical-align: middle;
}

.ui-icon.fi::before {
  display: block;
  line-height: 1;
}

.icon-slot {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.ui-icon.fi {
  font-size: 1rem;
}

.dd-content {
  width: min(1120px, calc(100% - 40px));
  min-height: 60vh;
  margin-inline: auto;
  padding-block: 80px;
}
