/* Page Contact — premium moderne */

@keyframes sx-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes sx-mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.05); }
}

html:has(body.sx-page) { scroll-behavior: smooth; }

body.sx-page {
  background: #F5F8F1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.sx-page .grain { display: none; }
body.sx-page ::selection {
  background: #C9E6BE;
  color: #0E4429;
}

.sx-contact {
  --sx-font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sx-font-body: 'Manrope', system-ui, sans-serif;
  --sx-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sx-dur: 0.85s;
  font-family: var(--sx-font-body);
  color: #13231A;
  overflow-x: hidden;
}

.sx-contact input::placeholder,
.sx-contact textarea::placeholder { color: #9DAE97; }

/* Icônes (home/icons.php) */
.sx-contact .sc-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #f4faf1 0%, #e8f3e4 100%);
  border: 1px solid rgba(28, 124, 74, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: #1C7C4A;
}
.sx-contact .sc-icon-wrap--xs { width: 32px; height: 32px; border-radius: 9px; }
.sx-contact .sc-icon-wrap--sm { width: 40px; height: 40px; border-radius: 11px; }
.sx-contact .sc-icon-wrap--md { width: 48px; height: 48px; border-radius: 13px; }
.sx-contact .sc-icon-wrap--lg { width: 56px; height: 56px; border-radius: 15px; }
.sx-contact .sc-icon-wrap .sc-icon { width: 55%; height: 55%; display: block; }
.sx-contact .sc-icon-wrap--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(155, 224, 138, 0.25);
  color: #9BE08A;
  box-shadow: none;
}

/* Reveal */
.sx-contact [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--sx-dur) var(--sx-ease), transform var(--sx-dur) var(--sx-ease);
  transition-delay: var(--rv-delay, 0ms);
}
.sx-contact [data-reveal="fade-right"] { transform: translateX(24px); }
.sx-contact [data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .sx-contact [data-reveal] { opacity: 1; transform: none; transition: none; }
  .sx-hero__orb { animation: none; }
}

/* Hero */
.sx-hero {
  position: relative;
  overflow: hidden;
}
.sx-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sx-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: sx-mesh-drift 22s ease-in-out infinite;
}
.sx-hero__orb--1 {
  width: min(480px, 65vw);
  height: min(480px, 65vw);
  top: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(28, 124, 74, 0.12) 0%, transparent 70%);
}
.sx-hero__orb--2 {
  width: min(340px, 50vw);
  height: min(340px, 50vw);
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(201, 230, 190, 0.7) 0%, transparent 72%);
  animation-delay: -9s;
}
.sx-hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + clamp(40px, 6vw, 72px)) clamp(18px, 5vw, 32px) clamp(20px, 3vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #8A998D;
  margin-bottom: 22px;
}
.sx-breadcrumb a { text-decoration: none; color: #8A998D; }
.sx-breadcrumb a:hover { color: #1C7C4A; }
.sx-breadcrumb__current { color: #1C7C4A; font-weight: 700; }
.sx-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  color: #1C7C4A;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 124, 74, 0.1);
  margin-bottom: 24px;
  box-shadow: 0 8px 24px -16px rgba(15, 68, 41, 0.2);
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.35;
}
.sx-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1C7C4A;
  animation: sx-pulse 2s ease-in-out infinite;
}
.sx-hero__title {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.sx-hero__title em { font-style: normal; color: #1C7C4A; }
.sx-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #5C6B60;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 500;
  text-wrap: balance;
}

/* Main grid */
.sx-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 32px) clamp(18px, 5vw, 32px) clamp(48px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}

/* Form card */
.sx-form-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(227, 234, 222, 0.9);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 32px 64px -48px rgba(15, 68, 41, 0.45);
}
.sx-form-card__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.sx-form-card__icon .sc-icon-wrap { margin: 0; }
.sx-form-card__title {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.sx-form-card__note {
  font-size: 14.5px;
  color: #8A998D;
  font-weight: 500;
  margin: 0;
}
.sx-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sx-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sx-field { display: flex; flex-direction: column; gap: 7px; }
.sx-field__label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #5C6B60;
}
.sx-field__control {
  position: relative;
  display: flex;
  align-items: center;
}
.sx-field__control--area { align-items: flex-start; }
.sx-field__control--area .sx-field__icon { margin-top: 12px; }
.sx-field__icon {
  position: absolute;
  left: 10px;
  z-index: 1;
  pointer-events: none;
}
.sx-field__icon .sc-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  margin: 0;
}
.sx-field__control input,
.sx-field__control select,
.sx-field__control textarea {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1.5px solid #E3EADE;
  border-radius: 14px;
  font-family: var(--sx-font-body);
  font-size: 15px;
  color: #13231A;
  background: #FBFCF9;
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
}
.sx-field__control--select select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235C6B60' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.sx-field__control textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.sx-field__control:focus-within input,
.sx-field__control:focus-within select,
.sx-field__control:focus-within textarea {
  border-color: #1C7C4A;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(28, 124, 74, 0.1);
}
.sx-field__control:focus-within .sc-icon-wrap {
  background: linear-gradient(145deg, #e8f5e4 0%, #d4ecd0 100%);
  border-color: rgba(28, 124, 74, 0.25);
}
.sx-field__error {
  font-size: 12px;
  color: #C0392B;
  font-weight: 600;
  min-height: 1px;
}
.sx-field--error .sx-field__control input,
.sx-field--error .sx-field__control select,
.sx-field--error .sx-field__control textarea {
  border-color: #E8A0A0;
  background: #FFF8F8;
}
.sx-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.sx-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  background: linear-gradient(135deg, #1C7C4A 0%, #178f47 100%);
  color: #fff;
  font-family: var(--sx-font-body);
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 14px 32px -14px rgba(28, 124, 74, 0.85);
  transition: transform 0.3s var(--sx-ease), box-shadow 0.3s;
}
.sx-btn-submit .sc-icon-wrap {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: none;
  width: 28px;
  height: 28px;
  margin: 0;
}
.sx-btn-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(28, 124, 74, 0.9);
}

/* Success */
.sx-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 16px;
}
.sx-success__icon .sc-icon-wrap {
  margin: 0 auto 22px;
  background: linear-gradient(145deg, #e8f5e4 0%, #c9e6be 100%);
}
.sx-success__title {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 10px;
}
.sx-success__text {
  font-size: 15.5px;
  line-height: 1.55;
  color: #5C6B60;
  margin: 0 0 24px;
  max-width: 360px;
}
.sx-btn-reset {
  background: #fff;
  color: #13231A;
  font-family: var(--sx-font-body);
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 24px;
  border: 1.5px solid #DCE6D6;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.sx-btn-reset:hover { border-color: #1C7C4A; transform: translateY(-1px); }
.sx-alert {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}
.sx-alert--err {
  color: #8b1a1a;
  background: #fdeaea;
  border: 1px solid #f5c4c4;
}

/* Info panel */
.sx-info {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(155deg, #0E4429 0%, #0a3320 55%, #082818 100%);
  box-shadow: 0 32px 64px -48px rgba(15, 68, 41, 0.65);
  display: flex;
  flex-direction: column;
}
.sx-info__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(155, 224, 138, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.sx-info__body {
  position: relative;
  flex: 1;
  min-height: 100%;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}
.sx-info__content {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 28px);
}
.sx-info__intro { display: flex; flex-direction: column; }
.sx-info__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9BE08A;
  margin-bottom: 12px;
}
.sx-info__title {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.12;
  margin: 0 0 14px;
}
.sx-info__text {
  font-size: 15px;
  line-height: 1.58;
  color: #BFD6B6;
  font-weight: 500;
  margin: 0;
}
.sx-info__blocks { display: flex; flex-direction: column; gap: 14px; }
.sx-info__email {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(155, 224, 138, 0.2);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.sx-info__email:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(155, 224, 138, 0.35);
  transform: translateY(-1px);
}
.sx-info__email-icon .sc-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(155, 224, 138, 0.3);
  color: #9BE08A;
  box-shadow: none;
  margin: 0;
}
.sx-info__email-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8FB585;
}
.sx-info__email-value {
  display: block;
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  margin-top: 2px;
}
.sx-info__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sx-info__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(155, 224, 138, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
}
.sx-info__stat-icon .sc-icon-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(155, 224, 138, 0.22);
  color: #9BE08A;
  box-shadow: none;
  margin: 0;
  width: 34px;
  height: 34px;
}
.sx-info__stat-val {
  font-family: var(--sx-font-display);
  font-weight: 800;
  font-size: 22px;
  color: #9BE08A;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sx-info__stat-lbl {
  font-size: 11.5px;
  color: #A9C8A0;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.25;
}

/* Offices */
.sx-offices {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 32px);
  overflow: hidden;
}
.sx-offices::before,
.sx-offices::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  height: 1px;
  pointer-events: none;
}
.sx-offices::before {
  top: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(28, 124, 74, 0.28) 18%, rgba(155, 224, 138, 0.45) 50%, rgba(28, 124, 74, 0.28) 82%, transparent 100%);
}
.sx-offices::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(28, 124, 74, 0.14) 22%, rgba(155, 224, 138, 0.28) 50%, rgba(28, 124, 74, 0.14) 78%, transparent 100%);
}
.sx-offices__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
}
.sx-offices__intro {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.45vw, 16.5px);
  line-height: 1.6;
  color: #5C6B60;
  font-weight: 500;
}
.sx-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1C7C4A;
  margin-bottom: 12px;
}
.sx-h2 {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.sx-offices__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.sx-office-card {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(28, 124, 74, 0.42) 0%,
    rgba(232, 239, 228, 0.85) 28%,
    rgba(255, 255, 255, 0.95) 52%,
    rgba(232, 239, 228, 0.8) 78%,
    rgba(28, 124, 74, 0.32) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 44px -34px rgba(15, 68, 41, 0.38);
  transition: transform 0.35s var(--sx-ease), box-shadow 0.35s;
}
.sx-office-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 30px 56px -28px rgba(15, 68, 41, 0.48);
}
.sx-office-card--hq {
  background: linear-gradient(
    145deg,
    rgba(14, 68, 41, 0.55) 0%,
    rgba(28, 124, 74, 0.38) 22%,
    rgba(155, 224, 138, 0.35) 50%,
    rgba(28, 124, 74, 0.32) 78%,
    rgba(14, 68, 41, 0.45) 100%
  );
}
.sx-office-card__glow {
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.sx-office-card__glow::before,
.sx-office-card__glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
}
.sx-office-card__glow::before {
  top: -35%;
  right: -25%;
  width: 72%;
  height: 72%;
  background: radial-gradient(circle, rgba(155, 224, 138, 0.35) 0%, transparent 68%);
}
.sx-office-card__glow::after {
  bottom: -40%;
  left: -28%;
  width: 68%;
  height: 68%;
  background: radial-gradient(circle, rgba(28, 124, 74, 0.18) 0%, transparent 70%);
}
.sx-office-card--hq .sx-office-card__glow::before {
  opacity: 0.75;
  background: radial-gradient(circle, rgba(155, 224, 138, 0.45) 0%, transparent 65%);
}
.sx-office-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 21px;
  padding: 20px 16px 18px;
  background: linear-gradient(168deg, #fff 0%, #f9fcf7 55%, #f4faf0 100%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.sx-office-card--hq .sx-office-card__inner {
  background: linear-gradient(168deg, #f6fbf3 0%, #eef8e9 48%, #e8f4e2 100%);
}
.sx-office-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.sx-office-card__flag {
  display: block;
  width: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px -4px rgba(15, 68, 41, 0.25);
  line-height: 0;
  flex-shrink: 0;
}
.sx-office-card__flag .flag-svg {
  width: 100%;
  height: auto;
  display: block;
}
.sx-office-card__hq {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #1C7C4A 0%, #2a9a5c 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -6px rgba(28, 124, 74, 0.55);
}
.sx-office-card__hq .sc-icon-wrap {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  box-shadow: none;
  color: #fff;
}
.sx-office-card__hq .sc-icon { width: 100%; height: 100%; }
.sx-office-card__name {
  font-family: var(--sx-font-display);
  font-weight: 700;
  font-size: clamp(12px, 0.92vw, 13.5px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  white-space: nowrap;
}
.sx-office-card__addr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
  color: #5C6B60;
  font-weight: 500;
  margin: 0 0 14px;
  flex: 1;
}
.sx-office-card__pin {
  flex-shrink: 0;
  margin-top: 1px;
}
.sx-office-card__pin .sc-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  margin: 0;
  background: #EEF4E9;
  border-color: transparent;
  color: #1C7C4A;
  box-shadow: none;
}
.sx-office-card__mail {
  text-decoration: none;
  color: #1C7C4A;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  margin: 0 -10px -2px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(238, 244, 233, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid rgba(28, 124, 74, 0.1);
  transition: background 0.25s, border-color 0.25s;
  min-width: 0;
}
.sx-office-card__mail span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sx-office-card__mail .sc-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  margin: 0;
  background: #fff;
  border-color: rgba(28, 124, 74, 0.12);
  box-shadow: none;
  flex-shrink: 0;
}
.sx-office-card__mail:hover {
  background: linear-gradient(90deg, #EEF4E9 0%, #f5faf2 100%);
  border-color: rgba(28, 124, 74, 0.22);
}

/* Map */
.sx-map {
  background: linear-gradient(180deg, #EEF4E9 0%, #F5F8F1 100%);
}
.sx-map__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 32px);
}
.sx-map__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.sx-map__frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #DCE6D6;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 32px 64px -48px rgba(15, 68, 41, 0.45);
  background: #fff;
}
.sx-map__frame iframe {
  width: 100%;
  height: clamp(360px, 55vw, 520px);
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .sx-hero__lead {
    max-width: 38ch;
  }
  .sx-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sx-info {
    min-height: 300px;
  }
  .sx-offices__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .sx-hero__inner {
    padding: calc(var(--nav-h) + 28px) 20px 24px;
  }
  .sx-badge {
    font-size: 11.5px;
    padding: 7px 14px;
    margin-bottom: 18px;
    max-width: min(100%, 420px);
  }
  .sx-hero__title {
    font-size: clamp(32px, 8.5vw, 44px);
    margin-bottom: 16px;
  }
  .sx-hero__lead {
    font-size: 16px;
    line-height: 1.55;
    max-width: none;
  }

  .sx-main {
    padding: 16px 20px 48px;
  }
  .sx-form-card {
    border-radius: 22px;
    padding: 24px 20px;
  }
  .sx-form-card__head {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }
  .sx-form-card__title {
    font-size: 22px;
  }
  .sx-form__row {
    grid-template-columns: 1fr;
  }
  .sx-btn-submit {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  .sx-info__body {
    padding: 24px 20px;
  }
  .sx-info__stats {
    grid-template-columns: 1fr;
  }

  .sx-offices {
    padding: 48px 20px;
  }
  .sx-offices__head {
    margin-bottom: 28px;
  }
  .sx-offices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .sx-office-card__name {
    white-space: normal;
    font-size: 14px;
  }

  .sx-map__inner {
    padding: 48px 20px;
  }
  .sx-map__head {
    margin-bottom: 24px;
  }
  .sx-map__frame {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .sx-hero__title {
    font-size: clamp(28px, 9vw, 36px);
  }
  .sx-badge {
    font-size: 10.5px;
    letter-spacing: -0.01em;
  }
  .sx-h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .sx-offices__grid {
    grid-template-columns: 1fr;
  }
  .sx-info__title {
    font-size: clamp(22px, 6.5vw, 28px);
  }
}

@media (min-width: 1201px) {
  .sx-office-card__inner { padding: 20px 13px 18px; }
  .sx-office-card__name { font-size: 12.6px; }
}
@media (max-width: 1200px) {
  .sx-office-card__name { font-size: 14px; letter-spacing: -0.02em; }
}
