:root {
  --bg: #f3f4f9;
  --bg-soft: #e9eaf4;
  --bg-card: #f9f9ff;
  --text: #1f0f33;
  --text-muted: #3f3154;
  --gold: #301050;
  --cyan: #00d0ff;
  --line: rgba(48, 16, 80, 0.18);
  --glass: rgba(249, 249, 255, 0.78);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-gold: 0 14px 34px rgba(48, 16, 80, 0.18);
  --shadow-cyan: 0 14px 34px rgba(0, 208, 255, 0.22);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(circle at 15% -10%, rgba(0, 208, 255, 0.16), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(48, 16, 80, 0.1), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", sans-serif;
  overflow-x: clip;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 96px;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1.06;
  margin-bottom: 0.8rem;
}

.btn {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  animation: pulse-glow 2.8s ease-in-out infinite;
}

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

.btn-primary {
  background: linear-gradient(92deg, #301050, #00d0ff);
  color: #ffffff;
  box-shadow: var(--shadow-gold), var(--shadow-cyan);
}

.btn-ghost {
  border-color: rgba(0, 208, 255, 0.4);
  color: #23113b;
  background: rgba(0, 208, 255, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(48, 16, 80, 0.5);
  box-shadow: 0 0 0 1px rgba(48, 16, 80, 0.2) inset;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

#preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader-logo {
  width: min(520px, 78vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(48, 16, 80, 0.2)) drop-shadow(0 12px 30px rgba(0, 208, 255, 0.16));
}

.preloader-scan {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, rgba(0, 208, 255, 0.28), transparent);
  animation: scan 1.8s linear infinite;
  mix-blend-mode: screen;
}

@keyframes scan {
  to {
    transform: translateY(420%);
  }
}

#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 990;
  padding: 1rem 0;
  transition: background-color 0.22s ease, backdrop-filter 0.22s ease, border-color 0.22s ease;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  backdrop-filter: blur(15px);
  background: var(--glass);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(48, 16, 80, 0.14)) drop-shadow(0 10px 24px rgba(0, 208, 255, 0.1));
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: #ffffff !important;
  background: linear-gradient(98deg, #301050, #00d0ff);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.mobile-social a {
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.btn:hover,
.nav-cta:hover,
.mobile-social a:hover {
  animation-play-state: paused;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(0, 208, 255, 0.18);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 10px rgba(0, 208, 255, 0);
  }
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(48, 16, 80, 0.04);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1.7px;
  background: var(--text);
  transition: transform 0.25s ease;
}

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

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-43deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: linear-gradient(140deg, rgba(48, 16, 80, 0.95), rgba(0, 208, 255, 0.9));
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2rem;
  padding: 6rem 1.2rem 2rem;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.mobile-nav a {
  font-family: "Bodoni Moda", serif;
  font-size: 2.1rem;
  color: #f7fbff;
}

.mobile-social {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-social a {
  font-size: 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f7fbff;
  padding: 0.48rem 0.84rem;
  border-radius: 999px;
}

.hero {
  padding: 7rem 0 3.2rem;
  background: transparent;
  color: var(--text);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-areas:
    "copy"
    "media"
    "cta";
}

.hero-copy {
  text-align: left;
  grid-area: copy;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 208, 255, 0.12);
  border: 1px solid rgba(0, 208, 255, 0.22);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1.2rem;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 208, 255, 0.6);
}

.hero-copy h1 {
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  max-width: 18ch;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-description {
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
  animation: none;
  background: linear-gradient(92deg, #301050, #00d0ff);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold), var(--shadow-cyan);
}

.hero-actions .btn-ghost {
  background: linear-gradient(92deg, #301050, #00d0ff);
  color: #ffffff;
  border: 1px solid transparent;
}

.hero-actions .btn-shine::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 40%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(0) skewX(-18deg);
  animation: btn-shine 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0% {
    transform: translateX(-20%) skewX(-18deg);
  }
  60% {
    transform: translateX(280%) skewX(-18deg);
  }
  100% {
    transform: translateX(280%) skewX(-18deg);
  }
}

.hero-cta {
  grid-area: cta;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}

.hero-benefits {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
}

@media (max-width: 759px) {
  .hero-benefits {
    display: none;
  }

  .hero {
    padding-bottom: 2.4rem;
  }

  .services {
    padding-top: 2.4rem;
  }
}

.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  background: rgba(0, 208, 255, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  justify-content: center;
  text-align: center;
}

.benefit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 0.4rem;
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  grid-area: media;
}

.hero-media img {
  width: min(520px, 85%);
  height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.services .bento-grid {
  display: grid;
  gap: 1rem;
}

.services {
  padding-top: 3rem;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  border: 1px solid var(--line);
  padding: 1.35rem;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.72rem;
  margin: 0.75rem 0 0.5rem;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(48, 16, 80, 0.12), transparent 38%, rgba(0, 208, 255, 0.12) 75%, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(135deg, rgba(48, 16, 80, 0.2), rgba(0, 208, 255, 0.16));
  opacity: 0.75;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 208, 255, 0.48);
  box-shadow: var(--shadow-gold), var(--shadow-cyan);
}

.service-card:hover::before {
  opacity: 1;
}

.service-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.service-tag {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid rgba(48, 16, 80, 0.3);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background: rgba(48, 16, 80, 0.06);
}

.service-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.service-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.service-media {
  display: none;
  margin-top: 0.7rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 8.8;
}

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

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(48, 16, 80, 0.08), rgba(0, 208, 255, 0.1));
  border: 1px solid rgba(48, 16, 80, 0.22);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-panel {
  background: linear-gradient(140deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.case-visual {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  padding: 1.5rem 1.1rem;
}

.case-content h3 {
  font-size: 1.85rem;
  margin-bottom: 0.7rem;
}

.portfolio-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}

.case-head {
  margin-top: 1.8rem;
}

.portfolio-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 208, 255, 0.5);
  box-shadow: var(--shadow-cyan);
}

.portfolio-thumb {
  aspect-ratio: 2.09 / 1;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.portfolio-data {
  padding: 1.15rem;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}

.portfolio-data h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 1.16;
}

.portfolio-data a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 208, 255, 0.45);
  background: linear-gradient(92deg, #301050, #00d0ff);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-gold), var(--shadow-cyan);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.portfolio-data a::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: btn-shine 2.6s ease-in-out infinite;
}

.portfolio-data a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
}

.case-metrics {
  margin: 1rem 0;
  display: grid;
  gap: 0.65rem;
}

.case-metrics article {
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(48, 16, 80, 0.03);
}

.case-metrics strong {
  color: var(--gold);
  font-size: 1.28rem;
  margin-bottom: 0.2rem;
  display: block;
}

.testimonials .dz7-swiper {
  padding-bottom: 2.5rem;
}

.testimonial-card {
  min-height: 300px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  padding: 1.3rem;
}

.testimonial-card img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
  border: 2px solid rgba(0, 208, 255, 0.7);
}

.testimonial-card h3 {
  font-size: 1.5rem;
}

.testimonial-card .role {
  font-size: 0.8rem;
  margin: 0.22rem 0 0.9rem;
}

.stars {
  margin-top: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.swiper-pagination-bullet {
  background: rgba(48, 16, 80, 0.22);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

.team-grid {
  display: grid;
  gap: 0.95rem;
}

.team-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 208, 255, 0.5);
  box-shadow: var(--shadow-cyan);
}

.team-card.founder {
  border-color: rgba(48, 16, 80, 0.35);
}

.team-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 1rem;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(48, 16, 80, 0.28);
  color: var(--gold);
  background: rgba(48, 16, 80, 0.06);
  padding: 0.26rem 0.62rem;
  font-size: 0.72rem;
  margin-bottom: 0.6rem;
}

.team-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-info {
  display: grid;
  align-content: start;
}

.contact-info h2 {
  margin-bottom: 0.6rem;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 300px;
  filter: saturate(0.7) contrast(1.05);
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.62rem;
}

.contact-item {
  background: linear-gradient(145deg, rgba(249, 249, 255, 0.98), rgba(233, 234, 244, 0.98));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}

.contact-item span {
  display: block;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}

.contact-item a {
  font-weight: 600;
}

.contact-item p {
  color: var(--text-muted);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 970;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.25) inset;
  animation: pulse 1.8s infinite;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 10px 24px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 10px 24px rgba(37, 211, 102, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 24px rgba(37, 211, 102, 0.4);
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  margin-top: 1rem;
}

.footer-inner {
  display: grid;
  gap: 0.4rem;
}

.site-footer p {
  font-size: 0.78rem;
}

.seo-stealth-link {
  margin-left: 0.45rem;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  opacity: 0.22;
  transition: opacity 0.2s ease;
}

.seo-stealth-link:hover,
.seo-stealth-link:focus-visible {
  opacity: 0.8;
}

@media (min-width: 760px) {
  .section {
    padding: 5.2rem 0;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    grid-template-areas:
      "copy media"
      "cta media";
  }

  .hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: stretch;
  }

  .hero-cta {
    justify-items: start;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-benefit {
    justify-content: flex-start;
    text-align: left;
  }

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

  .service-card.large {
    grid-column: span 4;
    grid-row: span 1;
  }

  .service-card.wide {
    grid-column: span 2;
  }

  .service-card:not(.large):not(.wide) {
    grid-column: span 2;
  }

  .service-media {
    display: block;
  }

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

  .case-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .portfolio-item {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .portfolio-thumb {
    aspect-ratio: 2.09 / 1;
    min-height: auto;
  }

  .case-visual {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .case-content {
    padding: 1.7rem 1.5rem;
  }

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

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .map-wrap {
    min-height: 100%;
    height: 100%;
  }

  .map-wrap iframe {
    min-height: 100%;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .section {
    padding: 6.2rem 0;
  }

  .hero {
    padding-top: 8.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
  }

  .service-card {
    padding: 1.5rem;
  }

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