/* Home page — desktop (1440) only; mobile will use separate templates/CSS */

:root {
  --purple-deep: #11096a;
  --purple-mid: #350d5f;
  --purple-heading: #370d5f;
  --purple-brand: #360d5f;
  --purple-muted: #571175;
  --purple-faq-alt: #580a72;
  --purple-newsletter: #31086c;
  --purple-chip-from: #500e71;
  --purple-chip-to: #1a0a68;
  --gray-bg: #f5f5f5;
  --gray-card: #e5e8ec;
  --text-muted: #545454;
  --text-body: #3f3e3e;
  --text-dark: #3a3838;
  --cta-navy: #07084c;
  --border-soft: rgba(17, 9, 106, 0.26);
  --font-inter: "Inter", system-ui, sans-serif;
  --font-lato: "Lato", "Inter", sans-serif;
  /* About split headlines (design spec 544:980) */
  --about-split-know: #6b7280;
  --about-split-heading: #0c63b6;

  /* Layout (scales below 1440 so fixed px grids don't force horizontal scroll) */
  --page-max: 1440px;
  --page-gutter: clamp(20px, 6vw, 86px);
  --content-max: 1268px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-lato);
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  overflow-x: clip;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.page-shell {
  max-width: var(--page-max);
  margin: 0 auto;
  background: #fff;
  overflow-x: clip;
}

/* ——— Header (partial) ——— */

.hero-region {
  position: relative;
  min-height: 767px;
}

.site-header {
  position: relative;
  z-index: 100;
  height: 103px;
  display: flex;
  align-items: center;
  padding: 0 var(--page-gutter);
  background: #e4e4e5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  row-gap: 12px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-inter);
  color: #3a3838;
  text-decoration: none;
}

.site-header__mark {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(6, 33, 79, 0.95) 0 0) left / 6px 100% no-repeat,
    linear-gradient(90deg, rgba(6, 33, 79, 0.95) 0 0) left 10px top / 6px 100% no-repeat,
    linear-gradient(90deg, rgba(6, 33, 79, 0.95) 0 0) left 20px top / 6px 75% no-repeat,
    linear-gradient(90deg, rgba(6, 33, 79, 0.95) 0 0) left 30px top / 6px 55% no-repeat;
}

.site-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.site-header__brand-name {
  font-weight: 700;
  font-size: 16px;
  color: #3a3838;
}

.site-header__brand-sub {
  font-weight: 400;
  font-size: 12px;
  color: #6a6a6a;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(14px, 3vw, 38px);
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 400;
  color: #06214f;
}

.site-header__nav a,
.site-header__nav-link {
  color: inherit;
  text-decoration: none;
}

.site-header__nav a:hover,
.site-header__nav-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.site-header__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.site-header__nav-link--has-menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
}

.site-header__nav-link--has-menu::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.site-header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  max-width: min(360px, 80vw);
  max-height: min(70vh, 480px);
  overflow-y: auto;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(6, 33, 79, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(6, 33, 79, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, visibility 140ms ease;
  z-index: 110;
}

.site-header__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.site-header__dropdown:hover .site-header__submenu,
.site-header__dropdown:focus-within .site-header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header__submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.35;
  color: #06214f;
  text-decoration: none;
  white-space: normal;
}

.site-header__submenu a:hover,
.site-header__submenu a:focus-visible {
  background: rgba(6, 33, 79, 0.06);
  opacity: 1;
}

.site-header__submenu li:first-child a {
  font-weight: 600;
  border-bottom: 1px solid rgba(6, 33, 79, 0.08);
  margin-bottom: 4px;
  padding-bottom: 12px;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 131px;
  height: 26px;
  padding: 0 16px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
  background: #06214f;
  border-radius: 6px;
  text-decoration: none;
}

.site-header__cta:hover {
  filter: brightness(0.97);
  text-decoration: none;
}

/* ——— Hero (partial) ——— */

.hero {
  position: relative;
  min-height: 767px;
  padding-bottom: 280px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 767px;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(87, 4, 123, 0.92) 0%,
    rgba(50, 2, 92, 0.92) 50%,
    rgba(3, 6, 87, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 185px var(--page-gutter) 0;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.hero__title {
  margin: 0 auto;
  max-width: min(1100px, 100%);
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}

.hero__subtitle {
  margin: 12px auto 0;
  max-width: min(900px, 100%);
  padding-inline: clamp(8px, 1.5vw, 24px);
  box-sizing: border-box;
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}

.hero__cards {
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  bottom: -243px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 84px);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.hero-card {
  flex: 1 1 232px;
  max-width: 280px;
  min-width: 0;
  min-height: 486px;
  padding: 47px 16px 32px;
  background: #fff;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(17, 9, 106, 0.12);
}

.hero-card--seo,
.hero-card--web {
  transform: translateY(-120px);
}

/*
 * Portrait tablets / iPad + short landscape phones (desktop shell): keep desktop card visuals
 * and bottom overlap layout, but use a single-height horizontal strip like mobile —
 * uniform card width + scroll-snap instead of cramped 3-column wraps.
 */
@media (orientation: portrait) and (max-width: 1366px),
  ((orientation: landscape) and (max-height: 560px) and (max-width: 1199px)) {
  .hero-region {
    min-height: min(767px, 92vh);
  }

  /* Aligned carousel row reads like mobile; stagger would fight horizontal scroll */
  .hero-card--seo,
  .hero-card--web {
    transform: none;
  }

  .hero__cards {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter);
    gap: clamp(20px, 3.6vw, 36px);
    align-items: flex-end;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    /* Keep desktop positioning over the bleed into .integrated */
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--content-max);
  }

  .hero__cards::-webkit-scrollbar {
    display: none;
  }

  .hero-card {
    flex: 0 0 clamp(240px, 72vw, 268px);
    width: clamp(240px, 72vw, 268px);
    max-width: 268px;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: clamp(420px, 47vmin, 486px);
  }
}

.hero-card__icon-wrap {
  width: 101px;
  height: 101px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-card);
  border-radius: 100px;
}

.hero-card__icon-wrap--sm img {
  margin-top: 4px;
}

.hero-card__title {
  margin: 0;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-card__text {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-body);
}

.hero-card__link {
  display: inline-block;
  margin-top: 28px;
  font-size: 17px;
  color: var(--text-muted);
  text-decoration: underline;
}

.hero-card__link:hover {
  color: var(--purple-deep);
}

/* ——— Integrated ——— */

.integrated {
  position: relative;
  z-index: 1;
  padding: 300px var(--page-gutter) 100px;
  background: var(--gray-bg);
}

.integrated__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.integrated__title {
  margin: 0 0 24px;
  font-family: var(--font-lato);
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  color: var(--purple-heading);
}

.integrated__lead {
  max-width: 1100px;
  margin: 0 auto 64px;
  font-size: 24px;
  text-align: center;
  line-height: 1.45;
}

.integrated__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.solution-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 40px;
  background: #fff;
  border-radius: 40px;
  min-height: 181px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.solution-card__icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: linear-gradient(90deg, #430f70 0%, #2f0557 100%);
}

.solution-card__icon img {
  filter: brightness(0) invert(1);
}

.solution-card__title {
  margin: 0 0 12px;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 20px;
}

.solution-card__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
}

.solution-card__link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: underline;
}

/* ——— Vision CTA ——— */

.vision-cta {
  position: relative;
  min-height: 700px;
}

.vision-cta__media {
  position: absolute;
  inset: 0;
}

.vision-cta__media img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.vision-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(49, 3, 109, 0.4) 0%,
    rgba(95, 7, 211, 0.4) 100%
  );
  color: #fff;
}

.vision-cta__inner {
  position: relative;
  z-index: 1;
  padding: clamp(120px, 22vw, 260px) clamp(24px, 8vw, 103px) 80px;
  max-width: 900px;
}

.vision-cta__title {
  margin: 0 0 24px;
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 40px;
}

.vision-cta__text {
  font-size: 24px;
  line-height: 1.45;
}

.vision-cta__text p {
  margin: 0;
}

/* ——— About ——— */

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 623fr) minmax(0, 817fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

@media (max-width: 992px) {
  .about-split {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Two-column typography — room for overlapping titles when stacked */
  .about-split__visual {
    aspect-ratio: auto;
    min-height: clamp(200px, 42vw, 320px);
  }
}

.about-split__visual {
  position: relative;
  box-sizing: border-box;
  background: #fff;
  /* Don't clip overlapping type when the grid column narrows below the 623px design spec canvas */
  overflow: visible;
  container-type: inline-size;
  container-name: about-split-visual;
  /* vw fallback where container queries unsupported; second line uses cqi where supported */
  min-height: clamp(260px, 52vw, 490px);
  min-height: clamp(220px, 66cqi, 490px);
  padding: clamp(8px, 3cqi, 16px);
  isolation: isolate;
}

.about-split__know {
  position: absolute;
  /* Frame 544:980 — KNOW block ends ~24px from right (623 − 363 − 236) */
  left: auto;
  right: 3.853%;
  top: 47.755%;
  z-index: 0;
  max-width: calc(96% - 16px);
  font-family: var(--font-lato);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: clamp(22px, 7vw, 72px);
  font-size: clamp(22px, 11.54cqi, 72px);
  line-height: 1;
  color: var(--about-split-know);
  text-align: right;
}

.about-split__about {
  position: absolute;
  left: 9.309%;
  top: 62.245%;
  right: clamp(8px, 2cqi, 20px);
  z-index: 1;
  margin: 0;
  padding: 0;
  max-width: calc(94% - 12px);
  font-family: var(--font-lato);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 11vw, 108px);
  font-size: clamp(28px, 17.43cqi, 108px);
  line-height: 0.95;
  color: var(--about-split-heading);
}

.about-split__copy {
  padding: clamp(44px, 11vw, 76px) clamp(16px, 3vw, 48px) clamp(44px, 11vw, 76px) clamp(12px, 2.5vw, 39px);
  background: #fff;
  color: #000;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.about-split__lead {
  margin: 0 0 1em;
}

.about-split__lead strong {
  color: var(--purple-brand);
  font-weight: 700;
}

.about-split__copy p:last-child {
  margin: 0;
}

/* ——— Bring (design spec 544:985 — 1440×496, #F5F5F5) ——— */

.bring {
  padding: 74px 0;
  background: var(--gray-bg);
}

.bring__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}

.bring__title {
  max-width: 591px;
  margin: 0 auto 56px;
  text-align: left;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.21;
  color: #535353;
}

.bring__content {
  max-width: 1245px;
  margin: 0 auto;
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: #000;
}

.bring__intro p {
  margin: 0 0 1.15em;
}

.bring__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bring__list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 0.35em;
}

.bring__list li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-weight: 400;
}

.bring__list li:last-child {
  margin-bottom: 0;
}

.bring__list strong,
.bring__intro strong {
  font-weight: 700;
}

@media (max-width: 980px) {
  .bring__inner {
    padding: 0 var(--page-gutter);
  }

  .bring__title {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(28px, 6vw, 48px);
  }

  .bring__content {
    max-width: none;
    font-size: clamp(17px, 2.8vw, 22px);
  }
}

/* ——— Services spotlight ——— */

.services-spotlight {
  padding: 0;
  background: #fff;
}

.services-spotlight__inner {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
}

.services-spotlight__media img {
  width: 100%;
  height: 496px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.services-spotlight__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 var(--page-gutter) 64px;
  gap: 40px;
}

.services-spotlight__col--left {
  align-self: end;
}

.services-spotlight__col--right {
  align-self: start;
  justify-self: end;
  padding-top: 64px;
}

.services-spotlight__title {
  margin: 0 0 18px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #3a005c;
}

.services-spotlight__list {
  margin: 0;
  padding-left: 1.1em;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.55;
  color: #06214f;
}

.services-spotlight__lead {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 13px;
  line-height: 1.55;
  color: #06214f;
  max-width: 390px;
  text-align: left;
}

/* ——— Why choose ——— */

.why-choose {
  padding: 60px var(--page-gutter) 80px;
  background: var(--gray-bg);
}

.why-choose__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.why-choose__title {
  margin: 0 0 24px;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 40px;
  color: var(--purple-mid);
}

.why-choose__intro {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1.6;
}

.why-choose__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: whychoose;
}

.why-choose__list li {
  margin-bottom: 28px;
  counter-increment: whychoose;
}

.why-choose__list h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.why-choose__list h3::before {
  content: counter(whychoose) ". ";
}

.why-choose__list p {
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

/* ——— FAQ ——— */

.faq {
  position: relative;
  padding: 48px var(--page-gutter) 80px;
  background: #fff;
}

.faq__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.faq__badge-icon {
  flex-shrink: 0;
  display: block;
  width: 80px;
  height: 80px;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.faq__kicker {
  margin: 0 auto 16px;
  max-width: 900px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.faq__title {
  margin: 0 0 48px;
  text-align: center;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 48px;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 593px) minmax(0, 441px);
  gap: 40px 48px;
  justify-content: space-between;
  align-items: start;
  padding: 32px 48px 48px;
  background: var(--gray-bg);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

@media (max-width: 980px) {
  .faq__layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 32px clamp(16px, 4vw, 48px) 48px;
  }

  .faq__detail {
    max-width: none;
  }
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__q {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 12px 28px 12px 30px;
  margin: 0;
  border: none;
  text-align: left;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: #f5f5f5;
  background: var(--purple-deep);
  cursor: pointer;
  box-sizing: border-box;
}

.faq__q.is-active {
  font-size: 18px;
  line-height: 1.3;
}

.faq__q--alt {
  background: var(--purple-faq-alt);
}

.faq__q:hover {
  filter: brightness(1.08);
}

.faq__detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  max-width: 441px;
}

.faq__detail-icon {
  display: block;
  margin: 0;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  max-width: none;
  object-fit: contain;
}

.faq__detail-title {
  margin: 0;
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  color: var(--purple-deep);
}

.faq__detail p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}


/* ——— Newsletter (partial) — node 166:15 ——— */

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 479px) minmax(0, 1fr);
  gap: 0;
  padding: 41px var(--page-gutter) 48px;
  background: #fff;
  align-items: stretch;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .newsletter {
    grid-template-columns: minmax(0, 1fr);
  }
}

.newsletter__panel {
  min-height: 314px;
  box-sizing: border-box;
}

.newsletter__panel--intro {
  display: flex;
  flex-direction: column;
  padding: 90.5px 32px 40px 80.5px;
  border: 0.5px solid rgba(64, 35, 107, 0.44);
  border-right: none;
}

.newsletter__heading {
  margin: 0 0 36px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 30.821px;
  line-height: normal;
  color: #40236b;
}

.newsletter__intro {
  margin: 0;
  align-self: center;
  max-width: 100%;
  text-align: center;
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 15.411px;
  line-height: normal;
  color: #050505;
}

.newsletter__panel--form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  padding: 92px 66px 40px;
  background: var(--purple-newsletter);
  color: #fff;
}

.newsletter__form-title {
  margin: 0 0 41px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  max-width: 705px;
}

.newsletter__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  width: 100%;
}

.newsletter__field {
  flex: 0 0 auto;
}

.newsletter__field input {
  display: block;
  width: 100%;
  max-width: min(305px, 100%);
  height: 48px;
  padding: 0 14px;
  border: none;
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: #000;
  background: #fff;
  box-sizing: border-box;
}

.newsletter__field input[name="email"] {
  max-width: min(374px, 100%);
}

.newsletter__field input::placeholder {
  color: #000;
  opacity: 1;
}

.newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 109px;
  min-height: 24px;
  padding: 4px 15px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #40236b;
  background: #e4e4e5;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.newsletter__submit:hover {
  filter: brightness(0.95);
}

/* ——— Footer (partial) ——— */

.site-footer {
  position: relative;
  min-height: 537px;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
}

.site-footer__bg img {
  width: 100%;
  height: 537px;
  object-fit: cover;
}

.site-footer__overlay {
  position: relative;
  z-index: 1;
  min-height: 537px;
  padding: 94px var(--page-gutter) 48px;
  background: rgba(241, 241, 241, 0.91);
}

/* Footer content — node 184:22 */
.site-footer__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.site-footer__col--brand {
  flex: 1 1 280px;
  max-width: 420px;
  min-width: 0;
}

.site-footer__col--sitemap {
  flex: 1 1 260px;
  max-width: 420px;
  min-width: 0;
}

.site-footer__col--tips {
  flex: 1 1 280px;
  min-width: 0;
}

.site-footer__brand-title,
.site-footer__col-title {
  margin: 0 0 24px;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 1.92px;
  color: #1c0d6c;
}

.site-footer__col--sitemap .site-footer__col-title {
  margin-bottom: 20px;
}

.site-footer__col--tips .site-footer__col-title {
  margin-bottom: 20px;
}

.site-footer__contact {
  font-size: 18px;
  line-height: normal;
  color: var(--purple-muted);
}

.site-footer__contact p {
  margin: 0;
  line-height: normal;
}

.site-footer__contact > p:not(.site-footer__phone-row):not(.site-footer__spacer):not(.site-footer__email) {
  margin-bottom: 2px;
}

.site-footer__spacer {
  margin: 0;
  line-height: 0;
  font-size: 0;
  min-height: 12px;
}

.site-footer__spacer--sm {
  min-height: 10px;
}

.site-footer__spacer--xs {
  min-height: 8px;
}

.site-footer__phone-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.site-footer__phone-row--whatsapp {
  padding-left: 8px;
}

.site-footer__phone-row a {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}

.site-footer__inline-icon {
  flex-shrink: 0;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  margin-left: -8px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social a:hover {
  opacity: 0.85;
  text-decoration: none;
}

.site-footer__divider {
  flex: 0 0 1px;
  width: 1px;
  height: 183px;
  margin: 99px 0 0;
  padding: 0;
  align-self: flex-start;
}

.site-footer__divider img {
  display: block;
  width: 1px;
  height: 183px;
  object-fit: cover;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 26px;
  color: var(--purple-muted);
}

.site-footer__links a {
  display: block;
  line-height: 26px;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__tips-text {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 26px;
  color: var(--purple-muted);
}

.site-footer__tips-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: stretch;
  margin-top: 18px;
  max-width: 460px;
  box-sizing: border-box;
}

.site-footer__tips-form input[type="email"] {
  flex: 1 1 min(340px, 100%);
  min-width: 0;
  width: auto;
  min-height: 48px;
  height: auto;
  padding: 0 18px;
  border-radius: 10px;
  border: 2px solid rgba(17, 9, 106, 0.38);
  background: #fff;
  box-shadow:
    inset 0 2px 3px rgb(255 255 255 / 0.9),
    0 4px 16px rgb(17 9 106 / 0.12);
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #11096a;
  outline: none;
  box-sizing: border-box;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.site-footer__tips-form input[type="email"]::placeholder {
  color: rgba(17, 9, 106, 0.45);
  font-weight: 500;
}

.site-footer__tips-form input[type="email"]:hover {
  border-color: rgba(17, 9, 106, 0.55);
}

.site-footer__tips-form input[type="email"]:focus-visible {
  border-color: #11096a;
  box-shadow:
    inset 0 2px 3px rgb(255 255 255 / 0.95),
    0 0 0 3px rgb(17 9 106 / 0.2);
}

.site-footer__tips-form button {
  min-height: 48px;
  height: auto;
  min-width: 0;
  flex: 0 0 auto;
  padding: 0 26px;
  border-radius: 10px;
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 15px;
  line-height: normal;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(180deg, #5f187d 0%, #480d70 52%, #3d0c5f 100%);
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 16px rgb(17 9 106 / 0.28),
    inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.site-footer__tips-form button:hover {
  filter: brightness(1.08);
}

.site-footer__tips-form button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ——— Bottom footer (partial) ——— */

.bottom-footer {
  position: relative;
  margin-top: 0;
}

.bottom-footer__ribbon {
  position: relative;
  height: 172px;
}

.bottom-footer__ribbon-bg {
  position: absolute;
  inset: 0;
}

.bottom-footer__ribbon-bg img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.bottom-footer__ribbon-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(88, 10, 114, 0.96) 0%,
    rgba(17, 9, 106, 0.96) 100%
  );
}

.bottom-footer__logo-chip {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  transform: translate(-50%, -56px);
  width: 274px;
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1.92px;
  color: #fff;
  background: linear-gradient(180deg, var(--purple-chip-from) 0%, var(--purple-chip-to) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bottom-footer__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 var(--page-gutter) 24px;
}

.bottom-footer__copy {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 16px;
  color: #fff;
}

.bottom-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: disc;
  color: #fff;
  font-family: var(--font-inter);
  font-size: 16px;
}

.bottom-footer__legal li {
  list-style-position: outside;
}

.bottom-footer__legal a {
  color: #fff;
}

.bottom-footer__legal a:hover {
  text-decoration: underline;
}
