@import url(
  "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap"
);

:root {
  --royal-blue: #123ccf;
  --royal-dark: #08247e;
  --deep-blue: #06184d;
  --navy: #04133d;
  --sky-blue: #38bdf8;
  --light-blue: #e9f7ff;
  --pale-blue: #f5fbff;
  --white: #ffffff;
  --text: #101828;
  --muted: #667085;
  --border: #dce7f4;
  --success: #16a36a;
  --shadow: 0 24px 70px rgba(8, 36, 126, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
}


/* HEADER */

.siteHeader {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 14px clamp(20px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 60, 207, 0.09);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brandIcon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}

.brandIcon img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.brandText {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brandText strong {
  color: var(--deep-blue);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: 0.09em;
}

.brandText small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mainNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.mainNav > a {
  padding: 11px 14px;
  border-radius: 11px;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
  transition: 0.25s ease;
}

.mainNav > a:hover,
.mainNav > a.active {
  color: var(--royal-blue);
  background: var(--light-blue);
}

.mainNav .supportButton {
  margin-left: 8px;
  padding: 12px 20px;
  background: linear-gradient(
    135deg,
    var(--royal-blue),
    #2468f2
  );
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 60, 207, 0.2);
}

.mainNav .supportButton:hover {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--royal-dark),
    var(--royal-blue)
  );
  transform: translateY(-2px);
}

.menuButton {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: none;
  place-items: center;
  background: var(--light-blue);
  color: var(--royal-blue);
  font-size: 20px;
}


/* HERO */

.contactHero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding: 85px clamp(22px, 7vw, 120px) 105px;
  background:
    linear-gradient(
      120deg,
      rgba(4, 19, 61, 0.98),
      rgba(8, 36, 126, 0.96) 52%,
      rgba(18, 60, 207, 0.92)
    );
  position: relative;
  overflow: hidden;
}

.contactHero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent);
}

.heroGlow {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  filter: blur(10px);
}

.heroGlowOne {
  width: 420px;
  height: 420px;
  top: -230px;
  right: 15%;
  background: rgba(56, 189, 248, 0.3);
}

.heroGlowTwo {
  width: 300px;
  height: 300px;
  bottom: -180px;
  left: 28%;
  background: rgba(72, 138, 255, 0.27);
}

.heroContent,
.heroVisual {
  position: relative;
  z-index: 2;
}

.heroBadge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 9px 14px;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 50px;
  background: rgba(56, 189, 248, 0.12);
  color: #c9efff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.heroContent h1 {
  max-width: 720px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.heroContent h1 span {
  display: block;
  color: #74d4ff;
}

.heroContent > p {
  max-width: 650px;
  margin-top: 25px;
  color: rgba(234, 246, 255, 0.83);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.8;
}

.heroButtons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primaryButton,
.secondaryButton {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 21px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  transition: 0.25s ease;
}

.primaryButton {
  background: var(--sky-blue);
  color: var(--deep-blue);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.22);
}

.primaryButton:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.secondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.secondaryButton:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}


/* HERO VISUAL */

.heroVisual {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualCard {
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(22px);
  box-shadow: 0 35px 80px rgba(0, 10, 50, 0.35);
  transform: rotate(1.5deg);
}

.visualTop {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.visualIcon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky-blue), #5b7cfa);
  color: var(--white);
  font-size: 21px;
}

.visualTop div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visualTop span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 600;
}

.visualTop strong {
  color: var(--white);
  font-size: 17px;
}

.messageBubble {
  width: fit-content;
  max-width: 84%;
  margin-bottom: 14px;
  padding: 14px 17px;
  border-radius: 17px;
  font-size: 13px;
  line-height: 1.55;
}

.bubbleOne {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: var(--sky-blue);
  color: var(--deep-blue);
  font-weight: 650;
}

.bubbleTwo {
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.visualInput {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 24px;
  padding: 12px 13px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(3, 15, 50, 0.28);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.visualInput i {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--sky-blue);
  color: var(--deep-blue);
}

.floatingCard {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(1, 12, 48, 0.27);
  font-size: 12px;
  font-weight: 700;
  position: absolute;
}

.floatingCard i {
  color: #84ddff;
}

.floatingCardOne {
  top: 40px;
  right: -15px;
}

.floatingCardTwo {
  bottom: 30px;
  left: -20px;
}


/* CONTACT OPTIONS */

.contactOptions {
  padding: 100px clamp(22px, 7vw, 110px);
  background: var(--white);
}

.sectionHeading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.sectionHeading > span,
.sectionLabel {
  color: var(--royal-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sectionHeading h2 {
  margin-top: 13px;
  color: var(--deep-blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.sectionHeading p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contactCardGrid {
  max-width: 1270px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.contactCard {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 17px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff, #f8fcff);
  box-shadow: 0 13px 35px rgba(8, 36, 126, 0.07);
  transition: 0.28s ease;
}

.contactCard:hover {
  border-color: rgba(18, 60, 207, 0.3);
  box-shadow: 0 24px 55px rgba(8, 36, 126, 0.13);
  transform: translateY(-6px);
}

.contactIcon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    var(--royal-blue),
    #2684f5
  );
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 60, 207, 0.22);
  font-size: 19px;
}

.contactCard span {
  display: block;
  margin-bottom: 8px;
  color: var(--royal-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contactCard h3 {
  color: var(--deep-blue);
  font-size: 18px;
  line-height: 1.35;
}

.contactCard p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.cardArrow {
  color: var(--royal-blue);
  font-size: 14px;
}


/* MAIN CONTACT SECTION */

.contactSection {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(45px, 7vw, 100px);
  padding: 105px clamp(22px, 7vw, 110px);
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(56, 189, 248, 0.14),
      transparent 28%
    ),
    linear-gradient(135deg, #eef8ff, #f8fbff);
}

.contactInfo {
  align-self: center;
}

.contactInfo > h2 {
  max-width: 580px;
  margin-top: 14px;
  color: var(--deep-blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4.2vw, 55px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contactIntro {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.infoList {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.infoItem {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 17px;
}

.infoNumber {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18, 60, 207, 0.18);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  color: var(--royal-blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8, 36, 126, 0.08);
}

.infoItem h3 {
  color: var(--deep-blue);
  font-size: 16px;
}

.infoItem p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.supportPanel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
  padding: 20px;
  border: 1px solid rgba(18, 60, 207, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px rgba(8, 36, 126, 0.08);
}

.supportPanelIcon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--royal-blue);
}

.supportPanel span {
  color: var(--muted);
  font-size: 11px;
}

.supportPanel h3 {
  margin-top: 3px;
  color: var(--deep-blue);
  font-size: 14px;
}

.supportPanel > a {
  padding: 10px 13px;
  border-radius: 10px;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}


/* FORM CARD */

.formCard {
  min-width: 0;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(18, 60, 207, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.formHeading span {
  color: var(--royal-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.formHeading h2 {
  margin-top: 8px;
  color: var(--deep-blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.035em;
}

.formHeading p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.formGroup {
  min-width: 0;
}

.formGroup label {
  display: block;
  margin-bottom: 9px;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}

.inputWrap {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  background: #fbfdff;
  transition: 0.22s ease;
}

.inputWrap:focus-within {
  border-color: var(--sky-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.13);
}

.inputWrap > i {
  width: 18px;
  color: #6481a4;
  font-size: 14px;
  text-align: center;
}

.inputWrap input,
.inputWrap select {
  width: 100%;
  min-width: 0;
  height: 53px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

.inputWrap input::placeholder {
  color: #98a2b3;
}

.selectWrap select {
  cursor: pointer;
}

.textareaWrap {
  position: relative;
}

.textareaWrap textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 17px 18px 34px;
  border: 1px solid #d8e2ee;
  border-radius: 14px;
  outline: none;
  background: #fbfdff;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
  transition: 0.22s ease;
}

.textareaWrap textarea:focus {
  border-color: var(--sky-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.13);
}

.textareaWrap textarea::placeholder {
  color: #98a2b3;
}

.characterCount {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #98a2b3;
  font-size: 10px;
}

.consentCheck {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.consentCheck input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customCheck {
  width: 20px;
  height: 20px;
  border: 1px solid #cbd7e5;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: transparent;
  transition: 0.2s ease;
}

.customCheck i {
  font-size: 10px;
}

.consentCheck input:checked + .customCheck {
  border-color: var(--royal-blue);
  background: var(--royal-blue);
  color: var(--white);
}

.submitButton {
  width: 100%;
  min-height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--royal-blue),
    #287cf5
  );
  color: var(--white);
  box-shadow: 0 16px 35px rgba(18, 60, 207, 0.22);
  font-size: 14px;
  font-weight: 750;
  transition: 0.25s ease;
}

.submitButton:hover {
  box-shadow: 0 20px 42px rgba(18, 60, 207, 0.31);
  transform: translateY(-2px);
}

.submitButton:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.formNotice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #7b8ba1;
  font-size: 10px;
  text-align: center;
}

.formNotice i {
  color: var(--success);
}


/* SUCCESS MESSAGE */

.successMessage {
  display: none;
  padding: 65px 20px 35px;
  text-align: center;
}

.successMessage.show {
  display: block;
}

.successIcon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8fff5;
  color: var(--success);
  font-size: 27px;
}

.successMessage h3 {
  color: var(--deep-blue);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
}

.successMessage p {
  max-width: 440px;
  margin: 12px auto 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.successMessage button {
  padding: 13px 19px;
  border-radius: 12px;
  background: var(--royal-blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}


/* SERVICE STRIP */

.serviceStrip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--royal-blue);
}

.serviceStrip div {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-align: center;
}

.serviceStrip div:last-child {
  border-right: none;
}

.serviceStrip i {
  color: #86dfff;
  font-size: 20px;
}

.serviceStrip span {
  font-size: 13px;
  font-weight: 700;
}


/* FOOTER */

.siteFooter {
  padding: 75px clamp(22px, 7vw, 110px) 25px;
  background: var(--navy);
  color: var(--white);
}

.footerMain {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 55px;
}

.footerLogo .brandText strong {
  color: var(--white);
}

.footerLogo .brandText small {
  color: #8ba6d7;
}

.footerBrand > p {
  max-width: 370px;
  margin-top: 20px;
  color: #96a8ca;
  font-size: 13px;
  line-height: 1.75;
}

.socialLinks {
  display: flex;
  gap: 10px;
  margin-top: 23px;
}

.socialLinks a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #a9c4f2;
  font-size: 13px;
  transition: 0.25s ease;
}

.socialLinks a:hover {
  border-color: var(--sky-blue);
  background: var(--sky-blue);
  color: var(--deep-blue);
  transform: translateY(-3px);
}

.footerColumn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footerColumn h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.footerColumn a,
.footerColumn p {
  color: #96a8ca;
  font-size: 12px;
  line-height: 1.6;
  transition: 0.2s ease;
}

.footerColumn a:hover {
  color: var(--sky-blue);
}

.footerContact a,
.footerContact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  overflow-wrap: anywhere;
}

.footerContact i {
  margin-top: 3px;
  color: var(--sky-blue);
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7890ba;
  font-size: 10px;
}


/* TABLET */

@media (max-width: 1100px) {

  .contactHero {
    grid-template-columns: 1fr 0.85fr;
    gap: 45px;
  }

  .floatingCardOne {
    right: 0;
  }

  .floatingCardTwo {
    left: 0;
  }

  .contactCardGrid {
    grid-template-columns: 1fr;
  }

  .contactCard {
    min-height: auto;
  }

  .contactSection {
    grid-template-columns: 1fr;
  }

  .contactInfo {
    max-width: 800px;
  }

  .footerMain {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footerContact {
    grid-column: 2 / 4;
  }

}


/* MOBILE NAVIGATION */

@media (max-width: 850px) {

  .siteHeader {
    min-height: 74px;
    padding: 12px 20px;
  }

  .brandIcon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .brandIcon span {
    font-size: 22px;
  }

  .brandText strong {
    font-size: 18px;
  }

  .menuButton {
    display: grid;
  }

  .mainNav {
    width: calc(100% - 30px);
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 55px rgba(8, 36, 126, 0.18);
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    right: 15px;
    transition: 0.3s ease;
  }

  .mainNav.open {
    max-height: 460px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-color: var(--border);
    opacity: 1;
  }

  .mainNav > a {
    width: 100%;
    padding: 13px 14px;
  }

  .mainNav .supportButton {
    margin: 5px 0 0;
    text-align: center;
  }

  .contactHero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 80px;
    text-align: center;
  }

  .heroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .heroButtons {
    justify-content: center;
  }

  .heroVisual {
    width: 100%;
    min-height: 390px;
    max-width: 570px;
    margin: 0 auto;
  }

  .visualCard {
    transform: none;
  }

  .serviceStrip {
    grid-template-columns: 1fr 1fr;
  }

  .serviceStrip div:nth-child(2) {
    border-right: none;
  }

  .serviceStrip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footerMain {
    grid-template-columns: 1fr 1fr;
  }

  .footerBrand {
    grid-column: 1 / -1;
  }

  .footerContact {
    grid-column: auto;
  }

}


/* SMALL MOBILE */

@media (max-width: 620px) {

  .brandText small {
    display: none;
  }

  .contactHero {
    gap: 35px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .heroContent h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .heroContent > p {
    font-size: 15px;
  }

  .heroButtons {
    width: 100%;
  }

  .primaryButton,
  .secondaryButton {
    width: 100%;
  }

  .heroVisual {
    min-height: 350px;
  }

  .visualCard {
    padding: 21px;
    border-radius: 22px;
  }

  .floatingCard {
    display: none;
  }

  .contactOptions,
  .contactSection {
    padding-left: 17px;
    padding-right: 17px;
  }

  .contactCard {
    grid-template-columns: auto 1fr;
    padding: 21px;
  }

  .cardArrow {
    display: none;
  }

  .formCard {
    padding: 24px 17px;
    border-radius: 23px;
  }

  .formRow {
    grid-template-columns: 1fr;
  }

  .supportPanel {
    grid-template-columns: auto 1fr;
  }

  .supportPanel > a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .serviceStrip {
    grid-template-columns: 1fr;
  }

  .serviceStrip div {
    min-height: 82px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .serviceStrip div:last-child {
    border-bottom: none;
  }

  .footerMain {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footerBrand,
  .footerContact {
    grid-column: auto;
  }

  .footerBottom {
    flex-direction: column;
    text-align: center;
  }

}


/* VERY SMALL MOBILE */

@media (max-width: 390px) {

  .siteHeader {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brandText strong {
    font-size: 16px;
  }

  .heroContent h1 {
    font-size: 39px;
  }

  .visualCard {
    padding: 17px;
  }

  .messageBubble {
    max-width: 92%;
    font-size: 12px;
  }

  .contactIcon {
    width: 46px;
    height: 46px;
  }

}
