:root {
  --brand-blue: #195f95;
  --brand-blue-dark: #0f3d66;
  --brand-blue-deep: #092f50;
  --brand-cyan: #1aa6b7;
  --brand-orange: #f28b24;
  --brand-orange-dark: #d97112;
  --ink: #102133;
  --muted: #5f6f80;
  --line: #d9e4ee;
  --surface: #ffffff;
  --surface-soft: #f5f9fc;
  --shadow: 0 24px 60px rgba(15, 61, 102, .13);
  --shadow-soft: 0 16px 38px rgba(15, 61, 102, .09);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--brand-blue-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 228, 238, .75);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 236px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--brand-blue-dark);
  font-size: 15px;
  font-weight: 620;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  transition: color .18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-orange-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(25, 95, 149, .18);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 24px rgba(15, 61, 102, .08);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--brand-blue-dark);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-anchor {
  scroll-margin-top: 98px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  background:
    radial-gradient(circle at 90% 16%, rgba(242, 139, 36, .16), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(26, 166, 183, .16), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #fff 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25, 95, 149, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 95, 149, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(540px, 1.04fr);
  align-items: stretch;
  gap: clamp(42px, 4.8vw, 68px);
}

.hero-copy {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 8px 0;
}

.eyebrow {
  margin: 0 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.eyebrow.light {
  color: #ffc86f;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 650;
}

h1::first-line {
  color: var(--brand-blue-dark);
}

.hero h1 {
  text-wrap: balance;
}

.hero h1 strong,
.hero .highlight {
  color: var(--brand-orange);
}

.hero-text {
  margin: 26px 0 30px;
  max-width: 500px;
  color: #40576b;
  font-size: clamp(17px, 1.48vw, 20px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), #ffb33f);
  color: #fff;
  box-shadow: 0 14px 28px rgba(242, 139, 36, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242, 139, 36, .34);
}

.hero-media {
  position: relative;
  border-radius: 34px;
  padding: 12px;
  align-self: stretch;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(237, 248, 252, .92));
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 132px;
  height: 132px;
  right: -30px;
  top: -30px;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(242, 139, 36, .22), rgba(26, 166, 183, .08));
  transform: rotate(12deg);
  z-index: -1;
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 102px;
  height: 102px;
  left: -25px;
  bottom: -28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 95, 149, .18), rgba(26, 166, 183, .16));
  z-index: -1;
}

.hero-media picture,
.hero-media img {
  border-radius: 24px;
}

.hero-media img {
  width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}

.section {
  padding: 86px 0;
}

.offers {
  background: #fff;
}

.clients {
  background: var(--surface-soft);
}

.specialties {
  background: #fff;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.service-copy h2 {
  margin: 0;
  color: var(--brand-blue-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
  text-wrap: balance;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.offers .cards-grid-two {
  gap: clamp(38px, 7vw, 76px);
}

.cards-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(217, 228, 238, .94);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b), var(--accent-c));
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -58px;
  top: -58px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 166, 183, .13), transparent 66%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(15, 61, 102, .14);
  border-color: rgba(26, 166, 183, .28);
}

.card-large {
  padding: 36px;
}

.compact {
  padding: 26px;
}

.card-icon {
  width: 76px;
  height: 76px;
  margin: 0 0 21px;
  filter: drop-shadow(0 12px 18px rgba(15, 61, 102, .12));
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--brand-blue-dark);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.feature-card.compact h3 {
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.card-large p {
  font-size: 18px;
}

.accent-cyan { --accent-a: #1aa6b7; --accent-b: #3478f6; --accent-c: #ff9f43; }
.accent-purple { --accent-a: #7c3aed; --accent-b: #06b6d4; --accent-c: #f59e0b; }
.accent-blue { --accent-a: #1d4ed8; --accent-b: #14b8a6; --accent-c: #a3e635; }
.accent-orange { --accent-a: #f97316; --accent-b: #f43f5e; --accent-c: #8b5cf6; }
.accent-green { --accent-a: #22c55e; --accent-b: #06b6d4; --accent-c: #3b82f6; }
.accent-pink { --accent-a: #9333ea; --accent-b: #ec4899; --accent-c: #f97316; }
.accent-teal { --accent-a: #0ea5e9; --accent-b: #14b8a6; --accent-c: #84cc16; }
.accent-red { --accent-a: #f59e0b; --accent-b: #ef4444; --accent-c: #7c3aed; }
.accent-indigo { --accent-a: #06b6d4; --accent-b: #6366f1; --accent-c: #ec4899; }
.accent-lime { --accent-a: #2563eb; --accent-b: #22c55e; --accent-c: #f97316; }

.service-band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 184, 76, .28), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(28, 196, 188, .28), transparent 30%),
    linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue) 52%, #0b84a1);
}

.service-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(420px, 1.02fr);
  gap: clamp(44px, 5vw, 74px);
  align-items: stretch;
}

.service-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-copy h2 {
  color: #fff;
  max-width: 560px;
  font-size: clamp(31px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 650;
}

.service-visual {
  margin: auto 0 0;
  max-width: 100%;
}

.service-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,.22));
}

.service-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.service-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.11);
  font-size: 17px;
  font-weight: 600;
}

.service-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 9px;
  background:
    linear-gradient(135deg, #ffb33f, #1fd5c8);
  box-shadow: 0 8px 16px rgba(0,0,0,.16);
}

.service-list li::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 25px;
  width: 9px;
  height: 15px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.methodology {
  background:
    linear-gradient(180deg, #fff, #f6fbff);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 13%;
  right: 13%;
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 139, 36, .32), rgba(26, 166, 183, .32), rgba(25, 95, 149, .32));
  z-index: 0;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(217, 228, 238, .9);
  box-shadow: var(--shadow-soft);
}

.process-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 54px;
  padding: 0 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-cyan));
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.02em;
  box-shadow: 0 12px 24px rgba(25, 95, 149, .2);
}

.process-icon {
  width: 70px;
  height: 70px;
}

.process-card h3 {
  margin: 0 0 11px;
  color: var(--brand-blue-dark);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  padding: 44px 0 18px;
  color: #d6e7f5;
  background: #071f35;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.footer-brand img {
  width: 188px;
  height: auto;
  padding: 6px 8px;
  border-radius: 12px;
  background: #fff;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(22px, 2.35vw, 32px);
  line-height: 1.14;
  letter-spacing: -.025em;
  font-weight: 650;
}

.footer-contact {
  display: grid;
  gap: 10px;
  padding-top: 0;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  color: #eaf5ff;
  font-size: 16px;
}

.footer-contact a::before,
.footer-contact span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
  flex: 0 0 auto;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #ffbf62;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p {
  margin: 0;
  color: #aabed0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

@media (max-width: 1060px) {
  .brand img {
    width: 210px;
  }

  .main-nav {
    gap: 14px;
    font-size: 14px;
  }

  .hero-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 760px;
    margin: 0 auto;
    align-self: auto;
  }

  .service-visual {
    max-width: 620px;
  }

  .hero-copy,
  .service-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-copy h2 {
    max-width: 760px;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 34px, var(--max-width));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 198px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 17px;
    right: 17px;
    display: grid;
    gap: 2px;
    padding: 13px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(217, 228, 238, .95);
    box-shadow: 0 24px 60px rgba(15, 61, 102, .22);
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #f4f9fd;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 62px 0 72px;
  }

  .section {
    padding: 72px 0;
  }

  .service-band {
    padding: 76px 0;
  }

  .cards-grid-two,
  .cards-grid-four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom p {
    align-items: flex-start;
  }
}

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

  .brand img {
    width: 176px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-text {
    margin: 22px 0 26px;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    border-radius: 24px;
    padding: 10px;
  }

  .hero-media picture,
  .hero-media img {
    border-radius: 22px;
  }

  .card-large,
  .compact,
  .process-card {
    padding: 24px;
    border-radius: 24px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .service-list li {
    padding: 16px 16px;
    font-size: 16px;
  }

  .footer-brand p {
    font-size: 30px;
  }

  .footer-contact a,
  .footer-contact span {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
}


@media (max-width: 720px) {
  h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .hero-media {
    max-width: 100%;
  }

  .offers .cards-grid-two {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom p {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.hero-copy .btn-row {
  margin-top: 14px;
}

@media (min-width: 981px) {
  .hero-grid {
    min-height: 560px;
  }

  .hero-copy {
    align-self: stretch;
  }

  .hero-media {
    height: 100%;
  }

  .hero-media picture,
  .hero-media img {
    height: 100%;
  }

  .service-copy {
    justify-content: space-between;
  }
}

@media (max-width: 980px) {
  .hero-copy {
    padding: 0;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-copy {
    justify-content: flex-start;
  }

  .service-visual {
    margin-top: 22px;
  }
}


/* Version 4 refinements */
.hero .btn,
.hero .btn-primary {
  width: fit-content;
  min-width: 0;
  padding-inline: 30px;
}

.service-copy h2 {
  max-width: 620px;
  margin-bottom: 28px;
}

.service-visual {
  margin-top: 34px;
}

.service-visual img {
  border-radius: 24px;
  overflow: hidden;
}

.footer-contact {
  gap: 14px;
}

.footer-contact a,
.footer-contact span {
  gap: 14px;
  min-height: 40px;
}

.footer-contact a::before,
.footer-contact span::before {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: linear-gradient(135deg, #8bd1ff, #1aa6b7);
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-contact .contact-email::before {
  background: linear-gradient(135deg, #9fd4ff, #37a3ff);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.5A2.5 2.5 0 0 1 5.5 3h13A2.5 2.5 0 0 1 21 5.5v13a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5zm2.2-.5L12 10.26 18.8 5zM19 6.4l-6.42 4.98a1 1 0 0 1-1.16 0L5 6.4v12.1c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5.5A2.5 2.5 0 0 1 5.5 3h13A2.5 2.5 0 0 1 21 5.5v13a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5zm2.2-.5L12 10.26 18.8 5zM19 6.4l-6.42 4.98a1 1 0 0 1-1.16 0L5 6.4v12.1c0 .28.22.5.5.5h13a.5.5 0 0 0 .5-.5z'/%3E%3C/svg%3E");
}

.footer-contact .contact-whatsapp::before {
  background: linear-gradient(135deg, #6cf286, #25D366);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.11 4.93A9.9 9.9 0 0 0 12.06 2C6.56 2 2.08 6.48 2.08 11.98c0 1.76.46 3.48 1.34 5L2 22l5.17-1.36a9.9 9.9 0 0 0 4.89 1.25h.01c5.5 0 9.98-4.48 9.98-9.98a9.9 9.9 0 0 0-2.94-6.98m-7.05 15.28h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.07.81.82-2.99-.2-.31a8.22 8.22 0 0 1-1.27-4.4c0-4.53 3.69-8.22 8.23-8.22a8.14 8.14 0 0 1 5.83 2.42 8.16 8.16 0 0 1 2.41 5.8c0 4.54-3.69 8.23-8.22 8.23m4.51-6.16c-.25-.12-1.49-.74-1.72-.82s-.4-.12-.57.12-.65.82-.8.99-.3.19-.55.06a6.72 6.72 0 0 1-1.97-1.22 7.43 7.43 0 0 1-1.37-1.7c-.14-.24-.01-.37.11-.49.11-.11.25-.29.37-.43s.16-.25.24-.41.04-.31-.02-.43-.57-1.37-.78-1.88-.41-.43-.57-.44h-.49a.94.94 0 0 0-.68.31 2.86 2.86 0 0 0-.89 2.12c0 1.25.91 2.46 1.04 2.62s1.78 2.72 4.31 3.81c.6.26 1.08.42 1.45.54.61.19 1.16.16 1.6.1.49-.07 1.49-.61 1.7-1.2.21-.58.21-1.08.15-1.18s-.22-.16-.47-.29'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.11 4.93A9.9 9.9 0 0 0 12.06 2C6.56 2 2.08 6.48 2.08 11.98c0 1.76.46 3.48 1.34 5L2 22l5.17-1.36a9.9 9.9 0 0 0 4.89 1.25h.01c5.5 0 9.98-4.48 9.98-9.98a9.9 9.9 0 0 0-2.94-6.98m-7.05 15.28h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.07.81.82-2.99-.2-.31a8.22 8.22 0 0 1-1.27-4.4c0-4.53 3.69-8.22 8.23-8.22a8.14 8.14 0 0 1 5.83 2.42 8.16 8.16 0 0 1 2.41 5.8c0 4.54-3.69 8.23-8.22 8.23m4.51-6.16c-.25-.12-1.49-.74-1.72-.82s-.4-.12-.57.12-.65.82-.8.99-.3.19-.55.06a6.72 6.72 0 0 1-1.97-1.22 7.43 7.43 0 0 1-1.37-1.7c-.14-.24-.01-.37.11-.49.11-.11.25-.29.37-.43s.16-.25.24-.41.04-.31-.02-.43-.57-1.37-.78-1.88-.41-.43-.57-.44h-.49a.94.94 0 0 0-.68.31 2.86 2.86 0 0 0-.89 2.12c0 1.25.91 2.46 1.04 2.62s1.78 2.72 4.31 3.81c.6.26 1.08.42 1.45.54.61.19 1.16.16 1.6.1.49-.07 1.49-.61 1.7-1.2.21-.58.21-1.08.15-1.18s-.22-.16-.47-.29'/%3E%3C/svg%3E");
}

.footer-contact .contact-linkedin::before {
  background: linear-gradient(135deg, #8ebdff, #0A66C2);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.45 20.45h-3.56v-5.58c0-1.33-.03-3.05-1.86-3.05-1.86 0-2.14 1.45-2.14 2.95v5.68H9.33V9h3.42v1.56h.05c.48-.9 1.64-1.86 3.38-1.86 3.61 0 4.27 2.38 4.27 5.47zM5.31 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14M7.09 20.45H3.52V9h3.57z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.45 20.45h-3.56v-5.58c0-1.33-.03-3.05-1.86-3.05-1.86 0-2.14 1.45-2.14 2.95v5.68H9.33V9h3.42v1.56h.05c.48-.9 1.64-1.86 3.38-1.86 3.61 0 4.27 2.38 4.27 5.47zM5.31 7.43a2.07 2.07 0 1 1 0-4.14 2.07 2.07 0 0 1 0 4.14M7.09 20.45H3.52V9h3.57z'/%3E%3C/svg%3E");
}

.footer-contact .contact-location::before {
  background: linear-gradient(135deg, #ffc46d, #f28b24);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5'/%3E%3C/svg%3E");
}

@media (max-width: 980px) {
  .hero .btn,
  .hero .btn-primary {
    width: auto;
    max-width: 280px;
  }
}
