:root {
  --ink: #10241d;
  --muted: #5c6f66;
  --green: #176a43;
  --green-2: #0e8a56;
  --mint: #dff4ea;
  --sage: #f3f8f3;
  --paper: #fbfdf9;
  --line: #d8e7df;
  --teal: #1d6c73;
  --gold: #b58a34;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 68, 45, 0.09);
  --radius: 8px;
  --shell: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 248, 243, 0.9) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(251, 253, 249, 1) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(251, 253, 249, 0.88);
  border-bottom: 1px solid rgba(216, 231, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green);
}

.brand-mark::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 9px 0 0 -4px var(--gold);
}

.brand-logo {
  width: 148px;
  height: auto;
}

.main-nav,
.language-switcher,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: 4px;
}

.main-nav a,
.language-switcher a {
  border-radius: 999px;
  color: #355046;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1;
  padding: 10px 12px;
  transition: background-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: var(--mint);
  color: var(--green);
}

.header-actions {
  gap: 10px;
  justify-content: flex-end;
}

.language-switcher {
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--green);
  color: var(--white);
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: break-word;
  box-shadow: 0 12px 26px rgba(23, 106, 67, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #115937;
  box-shadow: 0 16px 34px rgba(23, 106, 67, 0.22);
}

.button-secondary {
  background: var(--white);
  color: var(--green);
  box-shadow: none;
}

.button-small {
  min-height: 38px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  min-height: clamp(520px, 82vh, 660px);
  padding: clamp(40px, 5vw, 68px) 0 clamp(36px, 5vw, 58px);
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  color: #0d2c21;
  font-size: clamp(2.35rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  color: #123427;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  color: #173a2c;
  font-size: 1.06rem;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 380px;
  border: 1px solid rgba(216, 231, 223, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(234, 246, 237, 0.7)),
    radial-gradient(circle at 70% 20%, rgba(181, 138, 52, 0.13), transparent 36%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(23, 106, 67, 0.12);
  border-radius: var(--radius);
  transform: rotate(-4deg);
}

.hero-visual::after {
  inset: auto 36px 38px auto;
  width: 132px;
  height: 132px;
  border-color: rgba(29, 108, 115, 0.24);
  transform: rotate(12deg);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: clamp(20px, 4vw, 42px);
}

.intro-band {
  background: #123427;
  color: var(--white);
}

.intro-band p {
  color: rgba(255, 255, 255, 0.78);
}

.intro-band .eyebrow {
  color: #b9e7c9;
}

.intro-band h2 {
  color: var(--white);
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(46px, 7vw, 76px) 0;
}

.intro-grid > *,
.split-section > *,
.representation-panel > *,
.contact-grid > * {
  min-width: 0;
}

.section-block {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.step {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(17, 68, 45, 0.05);
}

.service-card {
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 106, 67, 0.34);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--sage);
  border: 1px solid var(--line);
}

.icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--green);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.icon-route::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 19c2.2-5.6 12-3.1 14-14M5 19h5M5 19v-5M14 5h5v5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-partners::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm10 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM3 22v-2a4 4 0 0 1 4-4h1a4 4 0 0 1 4 4v2m0 0v-2a4 4 0 0 1 4-4h1a4 4 0 0 1 4 4v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-presence::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-5.2 7-11a7 7 0 1 0-14 0c0 5.8 7 11 7 11Zm0-8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-message::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v11H8l-4 4V5Zm4 5h8M8 13h5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-campaign::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 13h4l9 5V6L8 11H4v2Zm4 0v6m9-11 3-2m-3 10 3 2m-3-6h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-feedback::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m4 13 4 4L20 5M5 5h8M5 9h5M5 21h14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 80px);
}

.audience-list,
.format-list,
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-list span,
.format-list span,
.feature-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #2f4a40;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 8px 14px;
  overflow-wrap: break-word;
}

.representation {
  padding: 0 0 clamp(72px, 9vw, 112px);
}

.representation-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(23, 106, 67, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 244, 234, 0.64)),
    repeating-linear-gradient(135deg, rgba(23, 106, 67, 0.05) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.representation-panel::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(181, 138, 52, 0.3);
  border-radius: 50%;
}

.representation-panel .feature-row {
  grid-column: 1 / -1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 24px;
}

.step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.cooperation {
  border-top: 1px solid var(--line);
}

.note {
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  color: #385448;
  font-weight: 650;
}

.contact-section {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #10241d;
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section .eyebrow {
  color: #b9e7c9;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 92% 10%, rgba(185, 231, 201, 0.16), transparent 34%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.contact-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.15rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.contact-action {
  --action-color: #b9e7c9;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 231, 201, 0.46);
  border-color: color-mix(in srgb, var(--action-color), white 22%);
  background: rgba(255, 255, 255, 0.13);
}

.contact-action-static {
  cursor: default;
}

.contact-action-static:hover {
  transform: none;
}

.contact-action:focus-visible {
  outline: 3px solid rgba(185, 231, 201, 0.58);
  outline: 3px solid color-mix(in srgb, var(--action-color), white 30%);
  outline-offset: 3px;
}

.contact-action strong,
.contact-action small {
  display: block;
  overflow-wrap: anywhere;
}

.contact-action strong {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-action small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.35;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(185, 231, 201, 0.12);
  border: 1px solid rgba(185, 231, 201, 0.34);
  background: color-mix(in srgb, var(--action-color), transparent 84%);
  border: 1px solid color-mix(in srgb, var(--action-color), transparent 55%);
}

.contact-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--action-color);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.contact-action-email {
  --action-color: #b9e7c9;
}

.contact-action-phone {
  --action-color: #94d6bd;
}

.contact-action-whatsapp {
  --action-color: #49d86f;
}

.contact-action-viber {
  --action-color: #b99cff;
}

.contact-action-telegram {
  --action-color: #69bff8;
}

.contact-action-email .contact-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4V6Zm1.5 1.5L12 12l6.5-4.5M5.5 16.5l4.8-4m8.2 4-4.8-4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-action-phone .contact-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 4.6 9.7 7c.5.5.5 1.2.1 1.8l-1 1.4c1.1 2.2 2.8 3.9 5 5l1.4-1c.6-.4 1.3-.3 1.8.1l2.4 2.3c.5.5.6 1.3.2 1.9-.8 1.2-2 1.9-3.4 1.9C9.3 20.4 3.6 14.7 3.6 7.8c0-1.4.7-2.6 1.9-3.4.6-.4 1.4-.3 1.9.2Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-action-whatsapp .contact-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.1 19 6 15.7A7.6 7.6 0 1 1 8.2 18l-3.1 1Zm5-10.8c-.2-.5-.4-.5-.8-.5h-.6c-.4 0-.9.5-.9 1.4s.7 2 1.6 3c1.1 1.3 2.6 2.3 4.2 2.7 1 .3 1.7.2 2.3-.5.4-.4.6-1 .7-1.3.1-.3 0-.5-.3-.6l-1.8-.8c-.3-.1-.5-.1-.7.2l-.6.8c-.2.2-.4.2-.7.1-1-.4-1.8-.9-2.5-1.8-.2-.3-.2-.5 0-.7l.5-.6c.1-.2.2-.4.1-.6l-.5-1.3Z' fill='black'/%3E%3C/svg%3E");
}

.contact-action-viber .contact-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4.5h10A3.5 3.5 0 0 1 20.5 8v5A3.5 3.5 0 0 1 17 16.5h-4.4L8 20v-3.5H7A3.5 3.5 0 0 1 3.5 13V8A3.5 3.5 0 0 1 7 4.5Zm3.1 4c-.3-.5-.6-.5-1-.4-.5.2-.9.6-1 1.1-.2 1.4 2.2 4.7 5.2 5.5.6.2 1.2 0 1.6-.5.3-.4.5-.8.2-1.1l-1.2-.9c-.3-.2-.6-.1-.8.1l-.4.5c-.2.2-.4.2-.6.1-.9-.4-1.6-1-2.1-1.8-.1-.2-.1-.4.1-.6l.4-.5c.2-.2.2-.5 0-.8l-.4-.7Zm3.1-.6c1.1.2 2 .9 2.2 2.2M13 6.3c2.2.3 3.8 1.8 4.1 4.1' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-action-telegram .contact-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 4 3 11.1l5.8 2.1L11 20l3.2-5 4.8 3.5L21 4ZM9 13l7.6-5.2-5.3 6.4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-location {
  margin: 0;
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(20px, calc((100vw - 1120px) / 2));
  color: #4a6258;
  font-size: 0.92rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--green);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .main-nav {
    order: 3;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero,
  .intro-grid,
  .split-section,
  .representation-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .services-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .main-nav a,
  .language-switcher a {
    font-size: 0.83rem;
    padding: 9px 10px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.08;
  }

  html[lang="ka"] h1 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1.14;
  }

  html[lang="ka"] h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

  .hero-visual {
    min-height: 280px;
  }

  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .contact-card {
    padding: 22px;
  }

  .audience-list span,
  .format-list span,
  .feature-row span {
    width: 100%;
    border-radius: var(--radius);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final image-based GeoNex visuals */
.hero-visual img {
  object-fit: contain;
  padding: clamp(10px, 2.6vw, 26px);
}

.icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 68, 45, 0.08);
}

.icon::before,
.contact-icon::before {
  display: none;
}

.icon img,
.contact-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-icon img {
  width: 25px;
  height: 25px;
}
