:root {
  --contact-navy: #07162f;
  --contact-text: #35435d;
  --contact-muted: #637087;
  --contact-orange: #ff6508;
  --contact-orange-dark: #e95500;
  --contact-green: #20b941;
  --contact-blue: #226cf2;
  --contact-purple: #8153ef;
  --contact-line: #e5eaf1;
  --contact-bg: #f8fafc;
  --contact-white: #fff;
  --contact-shadow: 0 18px 44px rgba(13, 33, 64, .085);
}

.go-contact-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--contact-bg);
  color: var(--contact-navy);
  font-family: Inter, Arial, sans-serif;
}

.go-contact-page *,
.go-contact-page *::before,
.go-contact-page *::after {
  box-sizing: border-box;
}

.go-contact-page a {
  text-decoration: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-hero {
  position: relative;
  padding: 52px 0 0;
  margin-bottom: 48px;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 22%, rgba(255, 104, 12, .08), transparent 24%),
    radial-gradient(circle at 68% 14%, rgba(29, 117, 242, .1), transparent 28%),
    linear-gradient(110deg, #fff 0%, #fbfcfe 48%, #eef5fd 100%);
}

.contact-hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, .95));
}

.contact-hero-grid {
  display: grid;
  min-height: 515px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 28px;
}

.contact-hero-copy {
  align-self: center;
  padding: 20px 0 74px;
}

.contact-kicker,
.contact-section-kicker {
  display: inline-block;
  color: var(--contact-orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .045em;
}

.contact-hero-copy h1 {
  max-width: 610px;
  margin: 17px 0 19px;
  color: var(--contact-navy);
  font-size: clamp(42px, 4.7vw, 59px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.046em;
}

.contact-hero-copy h1 mark {
  padding: 0;
  background: transparent;
  color: var(--contact-orange);
}

.contact-hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--contact-text);
  font-size: 16px;
  line-height: 1.75;
}

.contact-hero-phone {
  display: inline-grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 34px;
  color: var(--contact-navy);
}

.contact-hero-phone > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1.5px solid var(--contact-orange);
  border-radius: 50%;
  color: var(--contact-orange);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.contact-hero-phone:hover > span {
  transform: scale(1.04);
  background: var(--contact-orange);
  color: #fff;
}

.contact-hero-phone svg,
.contact-channel-icon svg,
.contact-access-grid svg,
.contact-art-bubble svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-phone small,
.contact-hero-phone strong {
  display: block;
}

.contact-hero-phone small {
  color: var(--contact-orange);
  font-size: 12px;
  font-weight: 900;
}

.contact-hero-phone strong {
  margin-top: 5px;
  color: var(--contact-navy);
  font-size: 27px;
  font-weight: 950;
  letter-spacing: .015em;
}

.contact-hero-visual {
  position: relative;
  min-height: 515px;
  overflow: hidden;
  border-radius: 0 0 0 28px;
  background: #dceafa;
}

.contact-hero-visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 115px;
  content: "";
  background: linear-gradient(90deg, #fbfcfe, rgba(251, 252, 254, .74) 28%, transparent);
  pointer-events: none;
}

.contact-hero-visual::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, .8));
  pointer-events: none;
}

.contact-hero-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 515px;
  object-fit: cover;
  object-position: center 22%;
}

.contact-building-card {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 100px;
  display: grid;
  max-width: 258px;
  grid-template-columns: 39px 1fr;
  gap: 11px;
  padding: 18px 19px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 15px;
  background: rgba(255, 255, 255, .93);
  color: var(--contact-navy);
  box-shadow: 0 16px 36px rgba(13, 33, 64, .16);
  backdrop-filter: blur(10px);
}

.contact-building-card > span {
  color: var(--contact-orange);
}

.contact-building-card svg,
.contact-map-label svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: #fff;
  stroke-width: 1.3;
}

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

.contact-building-card strong {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 950;
}

.contact-building-card small {
  margin-top: 4px;
  color: #48566e;
  font-size: 10.5px;
  line-height: 1.4;
}

.contact-channel-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -20px;
  overflow: hidden;
  border: 1px solid var(--contact-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--contact-shadow);
  backdrop-filter: blur(10px);
}

.contact-channel-card {
  position: relative;
  min-height: 238px;
  padding: 26px 25px 23px;
}

.contact-channel-card:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  content: "";
  background: #edf0f4;
}

.contact-channel-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
}

.contact-channel-card.is-phone .contact-channel-icon {
  background: #fff1e8;
  color: var(--contact-orange);
}

.contact-channel-card.is-whatsapp .contact-channel-icon {
  background: #ecfaef;
  color: var(--contact-green);
}

.contact-channel-card.is-email .contact-channel-icon {
  background: #f3edff;
  color: var(--contact-purple);
}

.contact-channel-card.is-hours .contact-channel-icon {
  background: #edf4ff;
  color: var(--contact-blue);
}

.contact-channel-card h2 {
  margin: 17px 0 7px;
  color: var(--contact-navy);
  font-size: 15px;
  font-weight: 950;
}

.contact-channel-card > a,
.contact-channel-card > strong {
  display: block;
  color: var(--contact-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.contact-channel-card > a:hover {
  color: var(--contact-orange);
}

.contact-channel-card > p {
  margin: 8px 0 0;
  color: #536179;
  font-size: 11.5px;
  line-height: 1.65;
}

.contact-channel-card > p b {
  color: var(--contact-navy);
}

.contact-location-section {
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 0 58%, rgba(255, 101, 8, .06), transparent 18%),
    radial-gradient(circle at 100% 80%, rgba(34, 108, 242, .06), transparent 18%),
    var(--contact-bg);
}

.contact-location-card {
  display: grid;
  min-height: 465px;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid var(--contact-line);
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: var(--contact-shadow);
}

.contact-location-copy {
  padding: 31px 29px;
}

.contact-location-copy h2 {
  margin: 8px 0 12px;
  color: var(--contact-navy);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.025em;
}

.contact-location-copy > i {
  display: block;
  width: 34px;
  height: 2px;
  margin: 0 0 20px;
  background: var(--contact-orange);
}

.contact-location-copy > p {
  margin: 0;
  color: #526078;
  font-size: 12.5px;
  line-height: 1.7;
}

.contact-location-copy ul {
  display: grid;
  gap: 13px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.contact-location-copy li {
  position: relative;
  padding-left: 29px;
  color: #34425b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-location-copy li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1.5px solid var(--contact-orange);
  border-radius: 50%;
  color: var(--contact-orange);
  content: "✓";
  font-size: 10px;
  font-weight: 950;
}

.contact-location-copy > a {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff1e8;
  color: var(--contact-orange-dark);
  font-size: 11px;
  font-weight: 900;
}

.contact-map-wrap {
  position: relative;
  min-height: 465px;
  overflow: hidden;
  border-left: 1px solid var(--contact-line);
  background: #e9edf2;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 465px;
  border: 0;
  filter: saturate(.84) contrast(.96);
}

.contact-map-label {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 48%;
  display: grid;
  min-width: 232px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  color: var(--contact-navy);
  box-shadow: 0 13px 30px rgba(13, 33, 64, .18);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.contact-map-label > span {
  color: var(--contact-orange);
}

.contact-map-label strong,
.contact-map-label small {
  display: block;
}

.contact-map-label strong {
  font-size: 12px;
  font-weight: 950;
}

.contact-map-label small {
  margin-top: 4px;
  color: #59667b;
  font-size: 9.5px;
}

.contact-access-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--contact-line);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(13, 33, 64, .06);
}

.contact-access-grid article {
  position: relative;
  display: grid;
  min-height: 100px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
}

.contact-access-grid article:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  content: "";
  background: #edf0f4;
}

.contact-access-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 11px;
}

.contact-access-grid article > span.is-green {
  background: #edfaef;
  color: #36a748;
}

.contact-access-grid article > span.is-blue {
  background: #edf4ff;
  color: var(--contact-blue);
}

.contact-access-grid svg {
  width: 24px;
  height: 24px;
}

.contact-access-grid strong,
.contact-access-grid small {
  display: block;
}

.contact-access-grid strong {
  color: var(--contact-navy);
  font-size: 12.5px;
  font-weight: 900;
}

.contact-access-grid small {
  margin-top: 5px;
  color: #5e6a80;
  font-size: 10px;
  line-height: 1.45;
}

.contact-cta-section {
  padding: 0 0 64px;
  background: var(--contact-bg);
}

.contact-cta {
  display: grid;
  min-height: 206px;
  grid-template-columns: 240px minmax(0, 1fr) minmax(250px, .75fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 24px 34px;
  border: 1px solid var(--contact-line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0 50%, rgba(38, 112, 238, .07), transparent 26%),
    linear-gradient(120deg, #fff, #fbfcfe);
  box-shadow: 0 15px 38px rgba(13, 33, 64, .07);
}

.contact-phone-art {
  position: relative;
  min-height: 165px;
}

.contact-phone-art::before {
  position: absolute;
  top: 15px;
  bottom: 12px;
  left: 0;
  width: 112px;
  content: "";
  opacity: .45;
  background-image: radial-gradient(circle, #adc0d8 2px, transparent 2.5px);
  background-size: 16px 16px;
}

.contact-phone-device {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 25px;
  display: flex;
  width: 88px;
  height: 164px;
  align-items: center;
  flex-direction: column;
  padding: 17px 9px;
  border: 5px solid #202b3d;
  border-radius: 18px;
  background: linear-gradient(160deg, #285f9c, #09234a);
  color: #fff;
  box-shadow: 0 14px 25px rgba(8, 29, 61, .24);
}

.contact-phone-device i {
  position: absolute;
  top: 5px;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #101827;
}

.contact-phone-device b {
  margin-top: 25px;
  color: var(--contact-orange);
  font-size: 23px;
  font-weight: 950;
}

.contact-phone-device small {
  margin-top: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.contact-art-bubble {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 33, 64, .14);
}

.contact-art-bubble svg {
  width: 21px;
  height: 21px;
}

.bubble-call {
  top: 28px;
  right: 0;
  background: var(--contact-orange);
}

.bubble-whatsapp {
  bottom: 10px;
  right: 93px;
  background: var(--contact-green);
}

.bubble-email {
  right: 5px;
  bottom: 8px;
  background: #3578ef;
}

.contact-cta-copy h2 {
  margin: 0;
  color: var(--contact-navy);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.27;
  letter-spacing: -.025em;
}

.contact-cta-copy p {
  max-width: 550px;
  margin: 14px 0 0;
  color: #56647c;
  font-size: 12.5px;
  line-height: 1.65;
}

.contact-cta-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}

.contact-cta-copy a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 900;
}

.contact-cta-copy a.is-primary {
  background: var(--contact-orange);
  color: #fff;
}

.contact-cta-copy a.is-secondary {
  border: 1px solid #dce4ed;
  background: #fff;
  color: #27374f;
}

.contact-cta-benefits {
  display: grid;
  gap: 17px;
  padding-left: 30px;
  border-left: 1px solid #f1b58f;
}

.contact-cta-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--contact-navy);
  font-size: 12px;
  font-weight: 900;
}

.contact-cta-benefits i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--contact-orange);
  border-radius: 50%;
  color: var(--contact-orange);
  font-size: 10px;
  font-style: normal;
}

@media (max-width: 1040px) {
  .contact-channel-grid,
  .contact-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-channel-card:nth-child(2)::after,
  .contact-access-grid article:nth-child(2)::after {
    display: none;
  }

  .contact-channel-card:nth-child(-n+2),
  .contact-access-grid article:nth-child(-n+2) {
    border-bottom: 1px solid #edf0f4;
  }

  .contact-cta {
    grid-template-columns: 190px 1fr;
  }

  .contact-cta-benefits {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px 0 0;
    border-top: 1px solid #f1b58f;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    padding-top: 38px;
  }

  .contact-hero-grid,
  .contact-location-card {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    padding: 18px 0 4px;
  }

  .contact-hero-copy h1,
  .contact-hero-copy > p {
    max-width: 680px;
  }

  .contact-hero-visual {
    min-height: 420px;
    border-radius: 20px;
  }

  .contact-hero-visual::before {
    display: none;
  }

  .contact-hero-visual > img {
    min-height: 420px;
  }

  .contact-building-card {
    bottom: 30px;
  }

  .contact-channel-grid {
    margin-top: 22px;
  }

  .contact-map-wrap {
    min-height: 430px;
    border-top: 1px solid var(--contact-line);
    border-left: 0;
  }

  .contact-map-wrap iframe {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .contact-container {
    width: min(100% - 24px, 1180px);
  }

  .contact-hero {
    padding-top: 28px;
    margin-bottom: 30px;
  }

  .contact-hero-grid {
    gap: 24px;
  }

  .contact-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(38px, 11vw, 49px);
  }

  .contact-hero-copy > p {
    font-size: 14px;
  }

  .contact-hero-phone {
    grid-template-columns: 52px 1fr;
    margin-top: 26px;
  }

  .contact-hero-phone > span {
    width: 50px;
    height: 50px;
  }

  .contact-hero-phone strong {
    font-size: 22px;
  }

  .contact-hero-visual,
  .contact-hero-visual > img {
    min-height: 350px;
  }

  .contact-hero-visual > img {
    object-position: center 17%;
  }

  .contact-building-card {
    right: 12px;
    bottom: 15px;
    max-width: 235px;
    padding: 14px;
  }

  .contact-channel-grid,
  .contact-access-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel-card {
    min-height: 0;
    padding: 22px;
  }

  .contact-channel-card::after,
  .contact-access-grid article::after {
    display: none !important;
  }

  .contact-channel-card:not(:last-child),
  .contact-access-grid article:not(:last-child) {
    border-bottom: 1px solid #edf0f4;
  }

  .contact-location-section {
    padding-top: 22px;
  }

  .contact-location-copy {
    padding: 25px 21px;
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 360px;
  }

  .contact-map-label {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    transform: none;
  }

  .contact-access-grid article {
    min-height: 82px;
    padding: 15px 20px;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .contact-phone-art {
    width: 220px;
    margin: 0 auto;
  }

  .contact-cta-copy {
    text-align: center;
  }

  .contact-cta-copy h2 {
    font-size: 23px;
  }

  .contact-cta-copy > div {
    justify-content: center;
  }

  .contact-cta-benefits {
    grid-column: auto;
    grid-template-columns: 1fr;
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-phone > span {
    transition: none !important;
  }
}
