:root {
  --font-primary: "Canela Web", "Canela", "Iowan Old Style", "Times New Roman", serif;
  --font-ui: "Canela Web", "Canela", "Iowan Old Style", "Times New Roman", serif;

  --color-bg: #f7fcff;
  --color-bg-soft: #eff8fe;
  --color-surface: #ffffff;
  --color-text: #4f7188;
  --color-muted: #7693a6;
  --color-heading: #2f5b74;
  --color-accent: #74add0;
  --color-accent-strong: #5d98be;
  --color-accent-soft: #deeff9;
  --color-border: #cfe4f0;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
  --space-7: 84px;

  --shadow-soft: 0 14px 34px rgba(93, 152, 190, 0.10);
  --shadow-focus: 0 0 0 4px rgba(116, 173, 208, 0.20);

  --container-width: 1770px;
}

* {
  box-sizing: border-box;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--color-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.012em;
}

h1 {
  font-size: clamp(42px, 7.2vw, 84px);
}

h2 {
  font-size: clamp(34px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(28px, 3.6vw, 36px);
}

h4 {
  font-size: clamp(22px, 2.4vw, 30px);
}

h5 {
  font-size: clamp(19px, 2vw, 24px);
}

h6 {
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

p,
ul,
ol,
blockquote,
figure {
  margin: 0;
}

section {
  padding-block: var(--space-6);
}

p,
li,
label,
input,
select,
textarea,
button {
  font-family: var(--font-ui);
}

p {
  color: var(--color-text);
}

a {
  color: var(--color-accent);
  text-decoration-color: rgba(116, 173, 208, 0.38);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--color-accent-strong);
  text-decoration-color: var(--color-accent-strong);
}

a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: 4px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-line: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button-link:hover {
  transform: translateY(-1px);
  text-decoration: none;
  text-decoration-line: none;
}

.button-link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button-link--dark {
  border-color: #5d98be;
  background: #5d98be;
  color: #f8fbff;
}

.button-link--dark:hover {
  color: #f8fbff;
  box-shadow: 0 12px 24px rgba(93, 152, 190, 0.22);
}

.button-link--light {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(2px);
}

.button-link--light:hover {
  background: #ffffff;
  color: var(--color-heading);
}

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

button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}

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

button:active {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9db6c8;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b5d6e8;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-focus);
  background: #fcfeff;
}

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

fieldset {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

legend {
  padding: 0 8px;
  color: var(--color-heading);
  font-family: var(--font-primary);
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

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

.container {
  width: min(var(--container-width), 92%);
  margin-inline: auto;
}

.surface-card {
  background: var(--color-surface);
  border: 1px solid #d8e7f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.text-muted {
  color: var(--color-muted);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.stack > * + * {
  margin-top: var(--space-3);
}

.global-faq {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: clamp(36px, 5vw, 64px) 0 clamp(84px, 9vw, 126px);
}

.global-faq__header {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.global-faq__eyebrow {
  margin: 0 0 12px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at top, rgba(116, 173, 208, 0.2), transparent 46%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.98) 0%, rgba(239, 248, 254, 0.98) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

html.js-site-loader .site-loader,
.site-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  width: min(100%, 320px);
  display: grid;
  justify-items: center;
  gap: 20px;
}

.site-loader__logo {
  width: clamp(64px, 7vw, 96px);
  height: auto;
  object-fit: contain;
  animation: site-loader-float 1.9s ease-in-out infinite;
}

.site-loader__progress {
  width: min(100%, 240px);
  height: 3px;
  overflow: hidden;
  background: rgba(93, 152, 190, 0.18);
}

.site-loader__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0.12);
  background: linear-gradient(90deg, #74add0 0%, #5d98be 100%);
  transition: transform 0.22s ease;
}

html.js-site-loader,
html.js-site-loader body {
  overflow: hidden;
}

@keyframes site-loader-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.global-faq__title {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.04;
}

.global-faq__accordion {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  gap: 0;
}

.global-faq__item {
  border-top: 1px solid rgba(194, 223, 238, 0.72);
  background: transparent;
  overflow: hidden;
  transition: border-color 0.22s ease;
}

.global-faq__item.is-open {
  border-color: rgba(194, 223, 238, 0.92);
}

.global-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  color: var(--color-heading);
  box-shadow: none;
}

.global-faq__trigger:hover {
  transform: none;
}

.global-faq__trigger span {
  font-size: clamp(18px, 1.45vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

.global-faq__trigger i {
  flex: 0 0 auto;
  font-size: 18px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.global-faq__item.is-open .global-faq__trigger i {
  transform: rotate(45deg);
}

.global-faq__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.global-faq__panel p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.82;
}

@media (max-width: 768px) {
  section {
    padding-block: var(--space-5);
  }

  input,
  select,
  textarea {
    padding: 11px 12px;
  }

  button {
    width: 100%;
    justify-content: center;
  }

  .global-faq__trigger {
    padding: 18px 0;
  }

  .global-faq__title {
    font-size: clamp(34px, 9vw, 44px);
  }

  .global-faq__trigger span {
    font-size: 18px;
  }

  .global-faq__panel p {
    padding: 0 0 22px;
    font-size: 15px;
  }
}
