:root {
  --bg: #f3f1fb;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.68);
  --text: #060606;
  --muted: #66646f;
  --muted-dark: #4f4b5f;
  --accent: #12aeef;
  --accent-dark: #0094d2;
  --line: rgba(8, 8, 8, 0.08);
  --ring: rgba(255, 255, 255, 0.75);
  --shadow: 0 24px 60px rgba(40, 34, 74, 0.08);
  --radius-card: 22px;
  --radius-pill: 28px;
  --radius-image: 58px;
  --container: 1120px;
  --header-height: 92px;
  --font-main: "Poppins", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 174, 239, 0.35);
  outline-offset: 3px;
}

.page-shell {
  position: relative;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 84px;
  background: transparent;
}

.header-inner {
  width: min(1142px, calc(100% - 48px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link img {
  width: min(295px, 100%);
  max-height: 79px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.site-nav a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"]:not(.nav-button) {
  color: var(--accent);
}

.nav-button,
.submit-button,
.email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-button:hover,
.nav-button:focus,
.nav-button:focus-visible,
.submit-button:hover,
.submit-button:focus,
.submit-button:focus-visible,
.email-button:hover,
.email-button:focus,
.email-button:focus-visible {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-button {
  min-width: 114px;
  min-height: 39px;
  padding: 8px 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  padding-top: 84px;
}

.hero-rings,
.contact-section-rings {
  position: absolute;
  pointer-events: none;
}

.hero-rings {
  top: 0;
  left: 0;
  width: clamp(360px, 39vw, 561px);
  opacity: 0.62;
}

.hero-grid {
  position: relative;
  min-height: 394px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 585px);
  padding-top: 111px;
}

.hero-copy h1,
.contact-intro h2,
.cta-copy h2,
.site-footer h2 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-copy h1 {
  font-size: clamp(78px, 6.25vw, 100px);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:first-child {
  color: var(--text);
}

.hero-copy h1 span:last-child,
.contact-intro span {
  color: var(--accent);
}

.hero-media {
  position: absolute;
  top: 0;
  right: calc((min(var(--container), calc(100vw - 48px)) - 100vw) / 2);
  z-index: 1;
  width: min(890px, 62vw);
  height: 366px;
  overflow: hidden;
  border-radius: 210px 0 0 210px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-intro {
  padding: 70px 0 34px;
  text-align: center;
}

.intro-inner {
  max-width: 780px;
}

.contact-intro h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.contact-intro p {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.contact-form-section {
  position: relative;
  padding: 18px 0 76px;
  overflow: hidden;
}

.contact-form-section .container {
  width: min(1140px, calc(100% - 48px));
}

.listing-rings {
  position: absolute;
  left: 0;
  bottom: -465px;
  z-index: 0;
  width: clamp(360px, 34vw, 502px);
  height: auto;
  max-width: none;
  opacity: 0.62;
  pointer-events: none;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
  min-width: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card-media {
  position: relative;
  min-height: 540px;
}

.contact-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: min(402px, calc(100% - 32px));
  padding: 29px 21px 36px 21px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(14, 12, 34, 0.12);
}

.info-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 0;
  margin-left: 77px;
}

.info-item + .info-item {
  margin-top: 21px;
}

.info-item-company {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 15px;
  margin-left: 0;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 17px;
  height: 20px;
  margin-top: 5px;
}

.info-icon img {
  width: 100%;
  height: auto;
}

.info-icon-company {
  width: 60px;
  height: 60px;
  margin-top: 2px;
  border-radius: 50%;
  background: #e8f8ff;
}

.info-icon-company img {
  width: 30px;
}

.info-label,
.info-value {
  margin: 0;
}

.info-label {
  color: #4b4b4b;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.info-value {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #545A6C;
}

.info-item-company .info-value {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  color: #545A6C;
}

.contact-card-form {
  min-width: 0;
  padding: 34px 42px 26px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-form {
  height: 100%;
}

.form-row {
  margin-bottom: 29px;
}

.form-row-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  position: relative;
}

.field label {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #666666;
  margin-bottom: 0;
  font-family: 'roboto';
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  height: 37px;
  padding: 0 0 0;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
}

.field textarea {
  min-height: 70px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #292734 50%),
    linear-gradient(135deg, #292734 50%, transparent 50%);
  background-position:
    calc(100% - 13px) calc(6% - 1px),
    calc(100% - 8px) calc(8% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 0;
}

.submit-button {
  width: 114px;
  height: 39px;
  min-width: 114px;
  min-height: 39px;
  padding: 0;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: #12aeef;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  font-family: 'Roboto' !important;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #0b8f3c;
  text-align: center;
  font-size: 13px;
}

.contact-card-form .gform_wrapper.gravity-theme,
.contact-card-form .gform_wrapper {
  margin: 0;
}

.contact-card-form .gform_required_legend,
.contact-card-form .gform_heading {
  display: none;
}

.contact-card-form .gform_wrapper.gravity-theme .gform_fields,
.contact-card-form .gform_wrapper .gform_fields {
  display: grid;
 grid-template-columns: repeat(12, 2fr);
  column-gap: 18px;
  row-gap: 0;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield,
.contact-card-form .gform_wrapper .gfield {
  grid-column: 1 / -1;
  margin: 0 0 29px;
  padding: 0;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield.mes-half,
.contact-card-form .gform_wrapper .gfield.mes-half {
  grid-column: span 6;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield_label,
.contact-card-form .gform_wrapper .gfield_label {
  display: flex;
  align-items: center;
  margin: 0;
  color: #666666;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield_required,
.contact-card-form .gform_wrapper .gfield_required {
  color: #666666;
  font-size: 15px;
  padding-left: 0;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield_required_text,
.contact-card-form .gform_wrapper .gfield_required_text {
  font-size: 0;
}

.contact-card-form .gform_wrapper.gravity-theme .gfield_required_text::before,
.contact-card-form .gform_wrapper .gfield_required_text::before {
  content: "*";
  font-size: 15px;
}

.contact-card-form .gform_wrapper.gravity-theme input[type="text"],
.contact-card-form .gform_wrapper.gravity-theme input[type="tel"],
.contact-card-form .gform_wrapper.gravity-theme input[type="email"],
.contact-card-form .gform_wrapper.gravity-theme select,
.contact-card-form .gform_wrapper.gravity-theme textarea,
.contact-card-form .gform_wrapper input[type="text"],
.contact-card-form .gform_wrapper input[type="tel"],
.contact-card-form .gform_wrapper input[type="email"],
.contact-card-form .gform_wrapper select,
.contact-card-form .gform_wrapper textarea {
  width: 100%;
  height: 37px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background-color: transparent;
  color: var(--text);
  box-shadow: none;
  font: inherit;
}

.contact-card-form .gform_wrapper.gravity-theme textarea,
.contact-card-form .gform_wrapper textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-card-form .gform_wrapper.gravity-theme select,
.contact-card-form .gform_wrapper select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #292734 50%),
    linear-gradient(135deg, #292734 50%, transparent 50%);
  background-position:
    calc(100% - 13px) calc(6% - 1px),
    calc(100% - 8px) calc(8% - 1px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-card-form .gform_wrapper.gravity-theme input:focus,
.contact-card-form .gform_wrapper.gravity-theme select:focus,
.contact-card-form .gform_wrapper.gravity-theme textarea:focus,
.contact-card-form .gform_wrapper input:focus,
.contact-card-form .gform_wrapper select:focus,
.contact-card-form .gform_wrapper textarea:focus {
  outline: none;
}

.contact-card-form .gform_wrapper.gravity-theme .gform_footer,
.contact-card-form .gform_wrapper .gform_footer {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.contact-card-form .gform_wrapper.gravity-theme .gform_button,
.contact-card-form .gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 114px;
  min-width: 114px;
  height: 39px;
  min-height: 39px;
  padding: 0;
  border: 1px solid #12aeef;
  border-radius: 5px;
  background: #12aeef;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-card-form .gform_wrapper.gravity-theme .gform_button:hover,
.contact-card-form .gform_wrapper.gravity-theme .gform_button:focus,
.contact-card-form .gform_wrapper.gravity-theme .gform_button:focus-visible,
.contact-card-form .gform_wrapper .gform_button:hover,
.contact-card-form .gform_wrapper .gform_button:focus,
.contact-card-form .gform_wrapper .gform_button:focus-visible {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.contact-card-form .gform_wrapper.gravity-theme .gfield_validation_message,
.contact-card-form .gform_wrapper.gravity-theme .validation_message,
.contact-card-form .gform_wrapper .gfield_validation_message,
.contact-card-form .gform_wrapper .validation_message {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b42318;
  font-size: 12px;
}

.contact-card-form .gform_wrapper.gravity-theme .gform_validation_errors,
.contact-card-form .gform_wrapper .gform_validation_errors {
  margin: 0 0 20px;
  padding: 12px 50px;
  border-color: rgba(180, 35, 24, 0.18);
  border-radius: 8px;
  box-shadow: none;
}

.cta-section {
  position: relative;
  min-height: 313px;
  background: var(--bg);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 90px 0 0 auto;
  z-index: 0;
  width: calc((100vw - var(--container)) / 2 + var(--container) + 116px);
  background: var(--surface);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 246px 1fr;
  gap: 82px;
  align-items: start;
  min-width: 0;
}

.cta-image {
  width: 490px;
  height: 246px;
  margin-left: calc((var(--container) - 100vw) / 2);
  overflow: hidden;
  border-radius: 0 130px 130px 0;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  min-width: 0;
  padding-top: 174px;
  max-width: none;
}

.cta-content h2 {
  max-width: 812px;
  margin: 0 0 30px;
  font-size: clamp(42px, 3.75vw, 60px);
  line-height: 1.02;
}

.cta-content h2 span {
  color: var(--muted-dark);
}

.email-button {
  min-width: 458px;
  height: 65px;
  margin-top: 0;
  margin-bottom: 48px;
  padding: 0 24px;
  font-size: 24px;
  font-weight: 500;
  max-width: 100%;
  text-align: center;
}

.site-footer {
  position: relative;
  background: var(--bg);
  padding: 0 0 89px;
}

.footer-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: calc((100vw - var(--container)) / 2 + var(--container) + 116px);
  background: var(--surface);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 134px;
  border-top: 1px solid rgba(84, 90, 108, 0.16);
  padding-top: 56px;
}

.footer-brand img {
  width: 255px;
  height: auto;
  margin: 0 0 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-brand p,
.footer-links nav,
.footer-links p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.footer-brand a,
.footer-links a {
  transition: color 0.2s ease;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.footer-links h2 {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.footer-links nav {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-links p a {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .contact-intro {
    padding: 0 0 34px;
    text-align: center;
  }

  .hero-grid {
    min-height: 360px;
  }

  .hero-copy {
    width: min(100%, 420px);
    padding-top: 92px;
  }

  .hero-media {
    width: min(620px, 58vw);
    height: 320px;
  }

  .contact-card {
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  }

  .contact-card-form {
    padding-inline: 28px;
  }

  .cta-inner {
    grid-template-columns: 377px minmax(0, 1fr);
    gap: 56px;
  }

  .cta-image {
    width: 398px;
    height: 246px;
    margin-left: -27px;
    overflow: hidden;
    border-radius: 0 130px 130px 0;
  }

  .cta-content {
    padding-top: 148px;
  }

  .email-button {
    min-width: 360px;
    height: 56px;
    font-size: 20px;
  }

  .footer-inner {
    gap: 72px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 100% !important;
    padding: 0 20px !important;
  }

  .contact-form-section .container {
    width: 100% !important;
    padding: 0 20px !important;
  }

  .contact-card {
    grid-template-columns: minmax(0, 47%) minmax(0, 1fr);
  }

  .contact-card-form {
    padding: 30px 26px 24px;
  }

  .form-row {
    margin-bottom: 24px;
  }

  .cta-content h2 {
    font-size: clamp(38px, 4.8vw, 48px);
  }
}

@media (max-width: 820px) {
  .contact-intro {
    padding: 40px 0 34px;
    text-align: center;
  }

  .site-header {
    position: relative;
    height: auto;
    padding-top: 8px;
  }

  .header-inner {
    min-height: auto;
    width: min(var(--container), calc(100% - 48px));
    border-radius: 26px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--surface-soft);
    backdrop-filter: blur(14px);
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-grid,
  .contact-card,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    width: 100%;
    padding: 24px 0;
  }

  .hero-media {
    position: relative;
    right: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
    border-radius: 74px 0 0 74px;
  }

  .contact-card-media {
    min-height: 420px;
  }

  .contact-card-form {
    padding: 28px 22px 24px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 29px;
  }

  .contact-card-form .gform_wrapper.gravity-theme .gform_fields,
  .contact-card-form .gform_wrapper .gform_fields {
    grid-template-columns: 1fr;
  }

  .contact-card-form .gform_wrapper.gravity-theme .gfield.mes-half,
  .contact-card-form .gform_wrapper .gfield.mes-half {
    grid-column: 1 / -1;
  }

  .cta-section {
    min-height: auto;
    padding-top: 24px;
  }

  .cta-bg,
  .footer-bg {
    display: none;
  }

  .cta-inner {
    gap: 28px;
  }

  .cta-image {
    width: min(360px, 100%);
    max-width: 100%;
    height: 200px;
    margin-left: 0;
  }

  .cta-content {
    padding-top: 0;
  }

  .email-button {
    min-width: 0;
    width: 100%;
    max-width: 420px;
    height: auto;
    min-height: 56px;
    line-height: 1.25;
    margin-bottom: 0;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 36px 0 48px;
  }
}

@media (max-width: 575px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    gap: 12px;
    padding: 12px 14px;
  }

  .logo-link img {
    width: 208px;
  }

  .hero-rings {
    left: -130px;
    width: 250px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }


  .hero-media {
    min-height: 100%;
    border-top-left-radius: 46px;
    border-bottom-left-radius: 46px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .contact-intro h2,
  .cta-content h2 {
    font-size: 40px;
  }

  .contact-intro p {
    font-size: 13px;
  }

  .contact-card-media {
    min-height: 300px;
  }

  .contact-form-section .container {
    width: min(100%, calc(100% - 28px));
  }

  .info-card {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 22px 18px 20px;
    border-radius: 24px;
  }

  .info-item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    margin-left: 0;
  }

  .info-item + .info-item {
    margin-top: 18px;
  }

  .info-item-company {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    margin-left: 0;
  }

  .info-icon {
    width: 16px;
    height: 16px;
    margin-top: 0px;
  }

  .info-icon-company {
    width: 48px;
    height: 48px;
  }

  .info-icon-company img {
    width: 26px;
  }

  .info-value {
    font-size: 17px;
    line-height: 1.45;
  }

  .form-row-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .email-button {
    max-width: 100%;
    padding-inline: 16px;
    font-size: 18px;
  }

  .footer-brand img {
    width: 200px;
  }

  .footer-links nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 375px) {
  .header-inner {
    gap: 8px;
  }

  .logo-link img {
    width: 188px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .contact-intro h2,
  .cta-content h2 {
    font-size: 34px;
  }

  .contact-intro {
    padding-bottom: 28px;
  }

  .info-item-company .info-value {
    font-size: 21px;
    line-height: 28px;
  }
}

@media (max-width: 360px) {
  .contact-card-media {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .contact-card-media > img {
    height: auto;
    aspect-ratio: 570 / 710;
    object-fit: cover;
  }

  .info-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: 14px auto;
  }

  .info-item {
    margin-left: 0;
    gap: 12px;
  }

  .info-item-company {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .info-value {
    font-size: 16px;
    line-height: 25px;
  }

  .footer-inner {
    gap: 34px;
  }
}

@media (max-width: 340px) {
  .logo-link img {
    width: 170px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .contact-intro h2,
  .cta-content h2 {
    font-size: 30px;
  }

  .contact-intro h2 span {
    display: block;
  }

  .email-button {
    font-size: 16px;
  }
}

@media (max-width: 1366px) {
  .logo-link img {
    width: 260px;
  }
}

@media (max-width: 1199px) {
  .logo-link img {
    width: 238px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: absolute;
    height: 78px;
    padding-top: 0;
  }

  .header-inner {
    width: min(100% - 48px, var(--container));
    height: 100%;
    min-height: 0;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .logo-link img {
    width: 218px;
  }

  .menu-toggle {
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border-radius: 5px;
    padding: 10px;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: flex;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    border: 1px solid rgba(18, 174, 239, 0.16);
    border-radius: 0 0 10px 10px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
    padding: 0 18px;
    transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease, padding 180ms ease;
  }

  .site-nav.is-open {
    max-height: 310px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 18px 18px;
  }

  .site-nav a {
    padding: 15px 0;
    font-size: 16px;
  }

  .site-nav .nav-button,
  .nav-button {
    width: 152px;
    height: 42px;
    min-width: 152px;
    min-height: 42px;
    margin-top: 8px;
    padding: 0 18px;
    border-radius: 5px;
  }

  .hero-section {
    padding-top: 78px;
  }
}

@media (max-width: 991px) {
  .footer-bg {
    left: 0;
    width: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 44px !important;
  }
}

@media (max-width: 900px) {
  .site-footer {
    position: relative;
    padding: 37px 0 50px;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: absolute;
    height: 70px;
    padding-top: 0;
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .logo-link img {
    width: 205px;
  }

  .site-nav {
    top: 70px;
    left: 18px;
    right: 18px;
  }

  .hero-section {
    padding-top: 70px;
  }

  .footer-links nav {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .header-inner {
    width: calc(100% - 30px);
    gap: 24px;
    padding: 0;
  }

  .site-header {
    height: 66px;
  }

  .logo-link img {
    width: 182px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .site-nav {
    top: 66px;
    left: 15px;
    right: 15px;
  }

  .hero-section {
    padding-top: 66px;
  }

  .footer-brand img {
    width: 220px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .logo-link img {
    width: 170px;
  }
}

@media (max-width: 390px) {
  .logo-link img {
    width: 164px;
  }
}

@media (max-width: 375px) {
  .header-inner {
    width: calc(100% - 24px);
    gap: 24px;
  }

  .logo-link img {
    width: 198px;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .footer-brand img {
    width: 190px;
  }
}

@media (max-width: 320px) {
  .header-inner {
    width: calc(100% - 20px);
  }

  .logo-link img {
    width: 142px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    padding: 7px;
  }
}
