@font-face {
  font-family: "Aptos";
  src: url("/font/Aptos.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("/font/Aptos-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("/font/Aptos-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("/font/Aptos-Bold-Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #f5efe4;
  --surface: #fffdf8;
  --surface-strong: #183153;
  --ink: #1b2430;
  --muted: #5d6a79;
  --line: rgba(27, 36, 48, 0.12);
  --accent: #be5b2f;
  --accent-soft: #f2dccd;
  --success: #1f7a55;
  --error: #9f2d2d;
  --shadow: 0 22px 60px rgba(24, 49, 83, 0.12);
  --radius: 24px;
  --container: 1180px;
  --page-padding: clamp(16px, 3vw, 36px);
  --background: #011430;
  --hiperlink: #1d8ffc;
  --button: #1d8ffc;
  --hyperlink-golden: #f1cf92;
  /* --highlight: #02baf3; */
  --highlight: #07546b;
  --text: #FEFDFE;
  --background-shadow: 0px 0px 20px 1px #20457c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  font-family: "Aptos", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--text);
  box-shadow: 0 6px 24px rgba(16, 47, 79, 0.08);
}

.global-ticker {
  overflow: hidden;
  background: var(--background);
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.orderlist-no-bullets {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.orderlist-no-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.ma-icon-wrap {
  text-align: justify;
  flex-shrink: 0;
  padding-top: 4px;
}

.ma-wheelchair-img {
  width: 24px;
  height: auto;
  display: block;
}

.orderlist-no-bullets p {
  text-align: justify;
  margin: 0;
  line-height: 1.5;
}

.global-ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: ticker-scroll 28s linear infinite;
  user-select: none;
}

.global-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.6rem;
  white-space: nowrap;
  font-weight: 600;
}

.glboal-ticker__item {
  padding: .3rem .9rem;
}

.global-ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  margin-right: 0.6rem;
}

.global-ticker a {
  color: var(--hyperlink-golden);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.global-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 80px;
  padding: 10px var(--page-padding);
}

.global-header__brand,
.global-header__brand:hover {
  color: inherit;
  border: none !important;
  text-decoration: none;
}

.global-header__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--background);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.global-header__toggle {
  display: none;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(29, 69, 105, 0.16);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
}

.global-header__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #1d4569;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.global-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.global-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.global-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.global-header__menu {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.global-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.8rem);
  flex-wrap: wrap;
}

.global-nav__link {
  font-size: large;
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 160ms ease;
}

.global-nav__link::after,
.global-nav__link:last-child::after {
  content: none;
}

.global-nav__link.is-active,
.global-nav__link:hover {
  color: var(--highlight);
  text-decoration: none;
}

.global-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.global-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 220px;
}

.global-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.global-search__input {
  width: 100%;
  min-width: 220px;
  height: 48px;
  padding: 0 1rem 0 3.2rem;
  border: 1px solid rgba(29, 69, 105, 0.16);
  border-radius: 14px;
  background: #ffffff;
  color: #173f66;
  font-size: 0.98rem;
  line-height: 1;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.global-search__input::placeholder {
  color: #6f7b86;
}

.global-search__input:focus {
  border-color: rgba(29, 69, 105, 0.35);
  box-shadow: 0 8px 18px rgba(16, 47, 79, 0.08);
}

.global-search__button {
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7a7a7a;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, box-shadow 160ms ease;
}

.global-search__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.global-search__button:hover {
  color: #1d4569;
}

.global-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.45rem;
  border-radius: 14px;
  background: var(--background);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.global-header__cta:hover,
.join_us_button:hover {
  background-color: var(--background);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.global-footer {
  margin-top: auto;
  padding: 0;
  border-top: 1px solid rgba(45, 81, 119, 0.14);
  background-color: var(--background);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 14px var(--page-padding);
}

.global_footer_copyright {
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
}

.global-footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.global-footer__link {
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}

.global-footer__link::after {
  content: "|";
  margin-left: 0.5rem;
  opacity: 0.72;
}

.global-footer__link:last-child::after {
  content: "";
  margin-left: 0;
}

.global-footer__link:hover {
  text-decoration: none;
}

.global-section {
  margin: 0 auto;
  max-width: 1800px;
  padding: 1rem;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.faq-banner {
  width: 1800px;
  height: auto;
  display: block;
  /* margin: 0 auto; */
}

.page-container {
  max-width: 1800px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  /* margin: 1.7rem 0; */
  line-height: 1.08;
  color: var(--highlight);
}

h1 {
  font-size: clamp(1.2rem, 2.2vw, 2.6rem);
}

h2 {
  font-size: clamp(1.2rem, 1.9vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 2.2rem);
}

p {
  text-align: justify;
  margin: .9rem 0;
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--hiperlink);
  font-weight: 600;
}

ul,
li {
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  line-height: 1.5;
}

.join_us_button_component {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.join_us_button_component .join_us_button {
  padding: 1rem;
  background: var(--background);
  color: white;
  outline: none;
  border-radius: 1rem;
  border: none;
  font-size: clamp(1rem, 1.2rem, 2rem);
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.industry-insights-component {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
}

.industry_link_state {
  flex: 0 0 20%;
}

.industry_insights_content {
  flex: 1 1 80%;
}

.newsletter-signup-banner {
  width: 100%;
  cursor: pointer;
}

.newsletter-modal {
  overflow-x: hidden;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 200;
}

.newsletter-modal[hidden] {
  display: none;
}

.newsletter-modal__dialog {
  width: min(520px, 92vw);
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #d9dee3;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.seal_text_img {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
}

.seal_text_img p {
  text-align: justify;
  flex: 1 1 0;
  min-width: 0;
}

.seal_text_img img {
  flex: 0 0 20%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .seal_text_img {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .seal_text_img img {
    width: 50%;
    /* max-width: 100%; */
  }
}

.newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
}

.newsletter-modal__header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e8edf2;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b2f33;
}

.newsletter-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #7a8694;
  cursor: pointer;
}

.newsletter-modal__form {
  padding: 16px 20px 8px;
  display: grid;
  gap: 12px;
}

.newsletter-modal__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd3da;
  border-radius: 4px;
  font-size: 0.95rem;
}

.newsletter-modal__recaptcha {
  border: 1px solid #d2d7dd;
  border-radius: 4px;
  padding: 10px 12px;
  background: #f9fafb;
  display: flex;
  justify-content: center;
}

.newsletter-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 20px 16px;
  border-top: 1px solid #e8edf2;
  background: #f6f7f8;
}

.newsletter-modal__button {
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #bfc6cd;
  font-weight: 600;
  cursor: pointer;
}

.newsletter-modal__button--cancel {
  background: #6c757d;
  color: #ffffff;
  border-color: #6c757d;
}

.newsletter-modal__button--submit {
  background: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
}

@media (max-width: 480px) {
  .newsletter-modal {
    overflow-x: hidden;
    padding: 16px;
  }

  .newsletter-modal__header {
    font-size: 1rem;
    padding: 14px 16px 10px;
  }

  .newsletter-modal__form {
    padding: 12px 16px 6px;
  }

  .newsletter-modal__actions {
    padding: 12px 16px 14px;
  }
}

@media (max-width: 768px) {
  .industry-insights-component {
    flex-direction: column;
  }

  .state-grid-mobile {
    display: grid;
    grid-template-columns: auto auto;
  }
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(252, 250, 246, 0.85);
  border-bottom: 1px solid rgba(27, 36, 48, 0.08);
}

.header-shell,
.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: grid;
  text-decoration: none;
}

.brand-kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}

.brand-name {
  font-weight: 700;
}

.nav-list,
.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-list a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-list a.is-active,
.nav-list a:hover,
.footer-links a:hover {
  color: var(--hiperlink);
}

.hero,
.analysis-panel {
  padding: 4.5rem 0;
}

.hero-grid,
.card-grid.three-up {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.95fr;
}

.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 1.5rem;
}

.content-card {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(27, 36, 48, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(242, 220, 205, 0.95), rgba(255, 253, 248, 0.92)),
    var(--surface);
}

.dark-card {
  background: linear-gradient(135deg, #183153 0%, #28476a 100%);
  color: #f4f1ea;
}

.dark-card p,
.dark-card li {
  color: rgba(244, 241, 234, 0.82);
}



.hero-copy h1 {
  max-width: 12ch;
}

.hero-copy p {
  text-align: justify;
  max-width: 70ch;
}

.button-row,
.pill-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border-color: var(--ink);
}

.campaign-decision-section {
  padding: clamp(40px, 5vw, 72px) 0;
  background: #f7f2eb;
}

.campaign-decision-card {
  max-width: 1120px;
  margin: 2rem auto;
  padding: clamp(32px, 3vw, 52px);
  background: #ffffff;
  border: 1px solid rgba(27, 36, 48, 0.1);
  border-radius: 32px;
  box-shadow: 0 22px 64px rgba(22, 41, 68, 0.08);
  text-align: center;
}

.campaign-decision-card h2 {
  margin: 0 auto;
  max-width: 84ch;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.2vw, 1.7rem);
  line-height: 1.16;
  font-weight: 500;
}

.campaign-decision-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.campaign-button {
  min-width: 220px;
  padding: .8rem 1.8rem;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border-color: rgba(27, 36, 48, 0.18);
  cursor: pointer;
}


.campaign-button:hover {
  transform: translateY(-1px);
  background: var(--accent);
  box-shadow: 0 16px 32px rgba(27, 36, 48, 0.12);
  transition: .2s ease-in-out;
}

@media (max-width: 720px) {
  .campaign-decision-card {
    padding: 28px 22px;
  }

  .campaign-decision-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .campaign-button {
    width: 100%;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.feature-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}


.banded {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.62));
  border-block: 1px solid rgba(27, 36, 48, 0.08);
}

.quote-block {
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.quote-block footer {
  margin-top: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7b3513;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(27, 36, 48, 0.14);
  background: #fff;
  font: inherit;
}

.form-alert {
  border-radius: 16px;
  padding: 1rem;
  margin-top: 1rem;
}

.form-alert.success {
  background: rgba(31, 122, 85, 0.12);
  color: var(--success);
}

.form-alert.error {
  background: rgba(159, 45, 45, 0.12);
  color: var(--error);
}

.site-footer {
  border-top: 1px solid rgba(27, 36, 48, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.footer-title {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-copy {
  max-width: 42ch;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.valuation {
  background-color: #CCFFFF;
  border: 4px double black;
  padding: 1.5rem;
}

@media (max-width: 1200px) {
  :root {
    --page-padding: 2rem;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .split-layout,
  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .home-boom {
    padding-inline: 22px;
  }

  :root {
    --page-padding: 1.2rem;
  }
}

@media (max-width: 820px) {
  .home-boom__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-boom__copy {
    max-width: 100%;
  }

  .home-boom__title {
    max-width: 18ch;
    margin-inline: auto;
  }

  .home-boom__media {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .home-boom {
    padding-inline: 16px;
  }

  .home-boom__title {
    max-width: none;
    margin-bottom: 1.1rem;
  }

  .home-boom__item {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 0.65rem;
  }

  .home-boom__icon {
    width: 16px;
    height: 16px;
    margin-top: 0.22rem;
  }

  .home-boom__item p {
    text-align: justify;
    line-height: 1.4;
  }
}

@media (max-width: 1290px) {
  .global-header__bar {
    grid-template-columns: auto auto;
    gap: 1rem;
    padding: 16px var(--page-padding);
  }

  .global-header__toggle {
    display: inline-flex;
  }

  .global-header__menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(29, 69, 105, 0.12);
  }

  .global-header__menu.is-open {
    display: grid;
  }

  .global-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .global-header__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .home-boom__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-boom__copy {
    max-width: 100%;
  }

  .home-boom__title {
    max-width: 18ch;
    margin-inline: auto;
  }

  .home-boom__media {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
}

@media (max-width: 1290px) {
  .global-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--page-padding);
  }

  .global-footer__nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 16px;
  }

  .global-ticker__item {
    padding: 0.6rem 1.2rem;
  }

  .global-header__brand-mark {
    min-width: 102px;
    min-height: 40px;
  }

  .global-search__button,
  .global-header__toggle {
    width: 44px;
    height: 44px;
  }

  .global-header__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .global-search {
    width: 100%;
    min-width: 0;
  }

  .global-search__button {
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .global-search__input {
    width: 100%;
    min-width: 0;
  }

  .global-header__cta {
    width: 100%;
    min-height: 44px;
    padding: 0 1.2rem;
  }

  .global-footer {
    align-items: center;
    text-align: center;
  }

  .global-footer__nav {
    justify-content: center;
    gap: 0.65rem 0.85rem;
  }

  .global-footer__link::after {
    margin-left: 0.65rem;
  }

  .hero,
  .analysis-panel {
    padding: 3.2rem 0;
  }

  .content-card {
    padding: 1.4rem;
  }

  .page-shell {
    width: 100%;
    min-height: 100vh;
  }
}


.search-page {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.search-page__hero {
  margin-bottom: 1.5rem;
}

.search-page__eyebrow {
  margin: 0 0 0.55rem;
  color: #be5b2f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
}

.search-page__form,
.search-page__card {
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
  border: 1px solid rgba(24, 49, 83, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(24, 49, 83, 0.08);
}

.search-page__form {
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.search-page__label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #173f66;
}

.search-page__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
}

.search-page__input {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(29, 69, 105, 0.16);
  border-radius: 16px;
  font: inherit;
}

.search-page__submit {
  min-height: 54px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #1f4f7c 0%, #173f66 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.search-page__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
}

.search-page__summary p {
  margin: 0;
}

.search-page__card {
  padding: 1.35rem;
  margin-bottom: 1.25rem;
}

.search-page__array {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 18px;
  background: #173f66;
  color: #f6f3ed;
  font-size: 0.95rem;
  line-height: 1.6;
}

.search-page__result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.search-page__result {
  padding: 1rem;
  border: 1px solid rgba(24, 49, 83, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.search-page__result-link {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #173f66;
  font-size: 1.1rem;
}

.search-page__result-route {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(23, 63, 102, 0.08);
  color: #173f66;
}

.search-page__result p {
  margin: 0;
}

.search-page__route-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.search-page__route-item {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(24, 49, 83, 0.1);
  border-radius: 12px;
  background: rgba(23, 63, 102, 0.05);
}

.search-page__route-link {
  color: #173f66;
  text-decoration: none;
  font-size: 0.9rem;
}

.search-page__route-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .search-page__input-row {
    grid-template-columns: 1fr;
  }
}

.tearmsofservice {
  width: 100%;
  padding: 2rem;
}



.signature-box {
  padding: 0 0.5rem;
  width: 100%;
}

.signature-box p {
  margin-bottom: 15px;
}

/* @import url('https://fonts.googleapis.com/css2?family=Montez&display=swap'); */

.signature-box h3 {
  /* font-family: "Style Script", cursive ;
  font-weight: 400;
  font-style: normal; */
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400 !important;
  color: var(--background);
  margin: 0 0 0.8rem !important;
}

/* Main Button Container */
.gloable-buybox__cta {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  min-height: 90px;
  background: var(--background);
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  padding: 0 20px 0 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  border: 1.5px solid var(--hiperlink);
  cursor: pointer;
  margin: 0 auto;
  overflow: visible;
}

.gloable-buybox__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* Icon Box — unified background */
.gloable-buybox__cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border-right: none;
  padding: 0;
  margin-right: 0;
}

.gloable-buybox__cta-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: #ffffff;
  display: block;
}

/* Separator — VISIBLE */
.gloable-buybox__cta-separator {
  display: block;
  flex-shrink: 0;
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(0, 200, 255, 0.3) 0%,
      rgba(0, 200, 255, 1) 20%,
      rgba(0, 200, 255, 1) 80%,
      rgba(0, 200, 255, 0.3) 100%);
  margin: 0 24px;
}

/* Text Box — Right Side */
.gloable-buybox__cta-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0;
  min-height: auto;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
}

/* Responsive */
@media (max-width: 768px) {
  .gloable-buybox__cta {
    padding: 0 16px 0 16px;
    min-height: 80px;
    gap: 16px;
  }

  .gloable-buybox__cta-icon {
    width: 45px;
    height: 45px;
  }

  .gloable-buybox__cta-icon svg {
    width: 40px;
    height: 40px;
  }

  .gloable-buybox__cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gloable-buybox__cta {
    min-height: 70px;
    padding: 0 12px 0 12px;
    gap: 12px;
  }

  .gloable-buybox__cta-icon {
    width: 40px;
    height: 40px;
  }

  .gloable-buybox__cta-icon svg {
    width: 36px;
    height: 36px;
  }

  .gloable-buybox__cta-text {
    font-size: 0.95rem;
  }
}

/* 
.button-link img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.valuation-button img:hover {
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
} */

.campaign-section {
  padding: 0.5rem 4rem 0 4rem;
}