:root {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: #f5a524;
  color: #0b1728;
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  background: #f5a524;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-link:hover {
  color: #1254a3;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
  line-height: 1;
}

.site-logo {
  display: block;
  height: 58px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  width: 58px;
}

.brand-copy {
  display: grid;
  gap: 0.22rem;
}

.brand-title {
  color: #0b1728;
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-tagline {
  color: #526174;
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(82, 97, 116, 0.14);
  border-radius: 8px;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 40px;
  z-index: 80;
}

.mobile-menu-toggle:hover {
  background: #fff;
  border-color: rgba(18, 84, 163, 0.22);
  box-shadow: 0 10px 24px rgba(11, 23, 40, 0.08);
}

.hamburger-icon {
  height: 22px;
  object-fit: contain;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 22px;
}

.menu-close-line {
  background: #0b1728;
  border-radius: 999px;
  height: 1.6px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.mobile-menu-toggle.is-open .hamburger-icon {
  opacity: 0;
  transform: scale(0.8);
}

.mobile-menu-toggle.is-open .menu-close-line:nth-of-type(1) {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(42deg);
}

.mobile-menu-toggle.is-open .menu-close-line:nth-of-type(2) {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-42deg);
}

.mobile-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow: 28px 0 70px rgba(11, 23, 40, 0.26);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100vh;
  left: 0;
  max-width: 370px;
  overflow-y: auto;
  padding: 1.25rem;
  position: fixed;
  top: 0;
  transform: translateX(-105%);
  transition: transform 240ms ease;
  width: min(88vw, 370px);
  z-index: 70;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  align-items: center;
  background: #0b1728;
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
}

.mobile-menu-logo {
  background: #fff;
  border-radius: 8px;
  flex: 0 0 58px;
  height: 58px;
  object-fit: cover;
  object-position: center;
  width: 58px;
}

.mobile-menu-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
}

.mobile-menu-header span {
  color: #cbd5e1;
  display: block;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.mobile-menu-summary {
  color: #526174;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.65;
}

.mobile-menu-links {
  display: grid;
  gap: 0.45rem;
}

.mobile-menu a {
  border-radius: 8px;
  display: flex;
  font-weight: 800;
}

.mobile-menu-links a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(82, 97, 116, 0.12);
  color: #0b1728;
  gap: 0.7rem;
  padding: 0.85rem 0.75rem;
}

.mobile-menu-links a:hover {
  background: #e8f2ff;
  border-color: rgba(18, 84, 163, 0.18);
  color: #1254a3;
}

.mobile-menu-links svg {
  color: #f5a524;
  flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.mobile-menu-actions {
  border-top: 1px solid rgba(82, 97, 116, 0.16);
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
}

.mobile-phone-link {
  align-items: center;
  background: #e8f2ff;
  color: #1254a3;
  gap: 0.55rem;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem;
}

.mobile-phone-link svg {
  height: 18px;
  width: 18px;
}

.mobile-menu-backdrop {
  background: rgba(7, 17, 31, 0.48);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 200ms ease;
  z-index: 60;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.925rem;
  font-weight: 800;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #f5a524;
  color: #0b1728;
  box-shadow: 0 16px 32px rgba(245, 165, 36, 0.24);
}

.btn-primary:hover {
  background: #ffb948;
}

.btn-whatsapp {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.2);
}

.btn-whatsapp:hover {
  background: #15803d;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  background: #fff;
  color: #0b1728;
  outline: 1px solid rgba(11, 23, 40, 0.12);
}

.section {
  padding-block: 6rem;
}

.section-heading {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-top: 1rem;
}

.section-heading p {
  color: #526174;
  font-size: 1.075rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.eyebrow {
  align-items: center;
  background: #e8f2ff;
  border-radius: 999px;
  color: #1254a3;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.75rem;
  text-transform: uppercase;
}

.hero {
  isolation: isolate;
}

.hero-slider {
  background: #0b1728;
}

.hero-slide {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: none;
  transition: opacity 900ms ease;
  width: 100%;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 23, 40, 0.82) 0%, rgba(11, 23, 40, 0.7) 42%, rgba(11, 23, 40, 0.32) 72%, rgba(11, 23, 40, 0.14) 100%),
    linear-gradient(180deg, rgba(11, 23, 40, 0.12) 0%, rgba(11, 23, 40, 0.36) 100%);
}

.hero-title {
  font-size: clamp(2.2rem, 3.05vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 1.14;
  text-wrap: balance;
}

.hero-copy p {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.hero-dots button {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  height: 10px;
  transition: background 180ms ease, width 180ms ease;
  width: 10px;
}

.hero-dots button.is-active {
  background: #f5a524;
  width: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 680px;
}

.hero-trust span {
  align-items: center;
  background: rgba(11, 23, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
}

.hero-trust svg {
  color: #f5a524;
  height: 17px;
  width: 17px;
}

.glass-panel {
  background: linear-gradient(145deg, rgba(11, 23, 40, 0.86), rgba(18, 84, 163, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.hero-panel {
  align-self: center;
}

.hero-checklist {
  display: grid;
  gap: 0.9rem;
}

.hero-checklist span {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: flex;
  font-weight: 800;
  gap: 0.7rem;
  padding: 0.85rem;
}

.hero-checklist svg {
  background: #f5a524;
  border-radius: 50%;
  color: #0b1728;
  flex: 0 0 24px;
  height: 24px;
  padding: 0.25rem;
  width: 24px;
}

.hero-panel-footer {
  background: rgba(11, 23, 40, 0.72);
  border-left: 3px solid #f5a524;
  border-radius: 8px;
  padding: 1rem;
}

.hero-panel-footer strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel-footer span {
  color: #d7e1ee;
  display: block;
  margin-top: 0.4rem;
}

.metric-card {
  border-left: 3px solid #f5a524;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.metric-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
}

.metric-card span {
  color: #d7e1ee;
  display: block;
  margin-top: 0.35rem;
}

.service-card,
.process-step {
  background: #fff;
  border: 1px solid rgba(82, 97, 116, 0.16);
  border-radius: 8px;
  padding: 1.6rem;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-featured {
  border-color: rgba(18, 84, 163, 0.24);
  box-shadow: 0 20px 55px rgba(11, 23, 40, 0.08);
}

.service-card:hover,
.process-step:hover {
  border-color: rgba(18, 84, 163, 0.28);
  box-shadow: 0 20px 60px rgba(11, 23, 40, 0.1);
  transform: translateY(-3px);
}

.service-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.service-top svg {
  background: #e8f2ff;
  border-radius: 8px;
  color: #1254a3;
  height: 46px;
  padding: 0.65rem;
  width: 46px;
}

.service-number,
.process-step span {
  color: #f5a524;
  font-weight: 900;
}

.service-badge {
  align-self: flex-start;
  background: #e8f2ff;
  border-radius: 999px;
  color: #1254a3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 1.15rem;
  padding: 0.4rem 0.65rem;
  text-transform: uppercase;
}

.service-card h3,
.process-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 0.75rem;
}

.service-card p,
.process-step p {
  color: #526174;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.service-link {
  align-items: center;
  color: #1254a3;
  display: inline-flex;
  font-weight: 900;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.service-link svg {
  height: 17px;
  transition: transform 180ms ease;
  width: 17px;
}

.service-link:hover svg {
  transform: translateX(3px);
}

.services-cta {
  align-items: center;
  background: #0b1728;
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1.5rem;
}

.services-cta span {
  color: #f5a524;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.services-cta h3 {
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.4;
  max-width: 760px;
}

.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(82, 97, 116, 0.16);
  border-radius: 8px;
  padding: 1.5rem;
}

.trust-card svg {
  background: #0b1728;
  border-radius: 8px;
  color: #f5a524;
  height: 48px;
  padding: 0.7rem;
  width: 48px;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  margin-top: 1.25rem;
}

.trust-card p {
  color: #526174;
  line-height: 1.7;
  margin-top: 0.7rem;
}

.check-item {
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 8px;
  color: #334155;
  display: flex;
  font-weight: 700;
  gap: 0.75rem;
  padding: 1rem;
}

.check-item::before {
  background: #1254a3;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  display: grid;
  flex: 0 0 24px;
  font-size: 0.8rem;
  height: 24px;
  place-items: center;
  width: 24px;
}

.industry-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.industry-row span {
  color: #f5a524;
  font-weight: 900;
}

.project-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(11, 23, 40, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card img {
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.project-type {
  color: #1254a3;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 0.55rem;
}

.project-card p {
  color: #526174;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.project-tags span {
  background: #e8f2ff;
  border-radius: 999px;
  color: #1254a3;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.42rem 0.6rem;
}

.projects-cta {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(18, 84, 163, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(11, 23, 40, 0.08);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1.35rem;
}

.projects-cta p {
  color: #334155;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.6;
  max-width: 760px;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.98) 0%, rgba(11, 23, 40, 0.96) 48%, rgba(18, 84, 163, 0.88) 100%),
    radial-gradient(circle at top right, rgba(245, 165, 36, 0.18), transparent 28rem);
  position: relative;
}

.contact-section::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.contact-section > div {
  position: relative;
}

.contact-copy h2 {
  line-height: 1.08;
  max-width: 620px;
}

.contact-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-benefits div {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 1rem;
}

.contact-benefits svg {
  color: #f5a524;
  height: 24px;
  width: 24px;
}

.contact-benefits strong {
  color: #fff;
  display: block;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.contact-benefits span {
  color: #cbd5e1;
  display: block;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.35rem;
}

.contact-info {
  display: grid;
  gap: 0.85rem;
}

.contact-info p {
  align-items: flex-start;
  color: #e2e8f0;
  display: flex;
  font-weight: 700;
  gap: 0.65rem;
  line-height: 1.65;
}

.contact-info svg {
  color: #f5a524;
  flex: 0 0 20px;
  height: 20px;
  margin-top: 0.2rem;
  width: 20px;
}

.contact-form-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.form-heading {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
}

.form-heading span {
  color: #1254a3;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  font-size: 1.6rem;
  font-weight: 950;
  margin-top: 0.35rem;
}

.form-heading p {
  color: #526174;
  line-height: 1.65;
  margin-top: 0.45rem;
}

label span {
  color: #334155;
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  font: inherit;
  padding: 0.85rem 0.95rem;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1254a3;
  box-shadow: 0 0 0 4px rgba(18, 84, 163, 0.12);
  outline: none;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(18, 84, 163, 0.28), transparent 34rem),
    #07111f;
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.7fr 0.75fr 1fr;
}

.footer-brand p {
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 430px;
}

.footer-logo {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 0.75rem;
}

.footer-logo span {
  background: #f5a524;
  border-radius: 8px;
  color: #07111f;
  display: grid;
  flex: 0 0 48px;
  font-weight: 950;
  height: 48px;
  place-items: center;
  width: 48px;
}

.footer-logo strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 950;
}

.footer-logo small {
  color: #94a3b8;
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-column,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-column h3,
.footer-contact h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.footer-column a {
  color: #cbd5e1;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
  color: #f5a524;
  transform: translateX(2px);
}

.footer-contact p {
  align-items: flex-start;
  display: flex;
  gap: 0.65rem;
  line-height: 1.7;
}

.footer-contact svg {
  color: #f5a524;
  flex: 0 0 18px;
  height: 18px;
  margin-top: 0.25rem;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  display: flex;
  font-size: 0.85rem;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
}

.mobile-quick-actions {
  background: #fff;
  border-top: 1px solid rgba(82, 97, 116, 0.16);
  bottom: 0;
  box-shadow: 0 -12px 30px rgba(11, 23, 40, 0.14);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  left: 0;
  padding: 0.75rem;
  position: fixed;
  right: 0;
  z-index: 60;
}

.mobile-quick-actions a {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  gap: 0.45rem;
  justify-content: center;
  min-height: 46px;
}

.mobile-quick-actions a:first-child {
  background: #0b1728;
  color: #fff;
}

.mobile-quick-actions a:last-child {
  background: #16a34a;
  color: #fff;
}

.mobile-quick-actions svg {
  height: 18px;
  width: 18px;
}

body.menu-open .mobile-quick-actions {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 4rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.16;
  }

  .site-logo {
    height: 50px;
    width: 50px;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .hero .min-h-\[720px\] {
    min-height: auto;
  }

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

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .services-cta .btn {
    justify-content: center;
  }

  .projects-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .projects-cta .btn {
    justify-content: center;
  }

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

  .footer-actions {
    display: grid;
  }

  .footer-actions .btn {
    justify-content: center;
  }

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

@media (min-width: 769px) and (max-width: 1180px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-benefits {
    grid-template-columns: 1fr;
  }
}
