:root {
  --ink: #07111f;
  --ink-2: #111827;
  --muted: #5b6678;
  --line: #dce6f3;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --panel: #0c1727;
  --blue: #0647c9;
  --blue-2: #0587ff;
  --cyan: #00c8ff;
  --teal: #00a7b5;
  --green: #11a36a;
  --shadow: 0 22px 65px rgba(7, 17, 31, 0.15);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 230, 243, 0.85);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 78px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: var(--radius);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.15rem;
  color: var(--ink-2);
}

.brand-copy small {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  position: fixed;
  top: 17px;
  right: 16px;
  z-index: 70;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid #d9e0ea;
  border-radius: var(--radius);
  background: #ffffff;
  color: #9aa7b7;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  cursor: pointer;
}

@media (min-width: 1081px) {
  .nav-toggle {
    display: none;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > a {
  padding: 10px 11px;
  color: #2c3748;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu > a:hover {
  color: var(--blue);
  background: #eef6ff;
}

.nav-store,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.nav-menu .nav-store {
  color: var(--blue);
  background: #edf6ff;
}

.nav-menu .nav-whatsapp {
  color: #ffffff;
  background: var(--green);
}

.section-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(760px, calc(100vh - 96px));
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 71, 201, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #070d18 0%, #0d2038 46%, #052f70 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(0, 200, 255, 0.12) 38% 39%, transparent 39% 100%),
    linear-gradient(150deg, transparent 0 62%, rgba(5, 135, 255, 0.14) 62% 63%, transparent 63% 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: min(760px, calc(100vh - 96px));
  margin: 0 auto;
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 4.85rem);
  line-height: 1.02;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

h3 {
  color: var(--ink-2);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero p {
  max-width: 680px;
  margin-bottom: 30px;
  color: #dcecff;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 15px 30px rgba(5, 135, 255, 0.28);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  min-height: 460px;
  position: relative;
}

.hero-logo-card {
  width: min(320px, 86vw);
  min-height: 156px;
  margin-left: auto;
  padding: 22px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-panel {
  width: min(420px, 92vw);
  margin: 22px 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.panel-header {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.panel-header span:nth-child(2) {
  background: var(--blue-2);
}

.panel-header span:nth-child(3) {
  background: #7dd3fc;
}

.network-lines {
  min-height: 210px;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  gap: 12px;
  padding: 26px;
}

.network-lines i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.1);
}

.network-lines span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(360px, 92vw);
  margin: 16px 0 0 auto;
}

.hero-metrics article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.65rem;
}

.hero-metrics span {
  color: #d7e6f8;
  font-size: 0.86rem;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading p,
.about-content p,
.store-content p {
  color: var(--muted);
  font-size: 1rem;
}

.services-grid,
.portfolio-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.project-card,
.testimonial-card,
.signature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.07);
}

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

.service-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5, 135, 255, 0.45);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.13);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.tag-row {
  margin: 2px 0 18px;
}

.tag-row span {
  padding: 6px 10px;
  color: #075985;
  border: 1px solid #bae6fd;
  border-radius: var(--radius);
  background: #eef9ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.about {
  background:
    linear-gradient(90deg, rgba(6, 71, 201, 0.06) 1px, transparent 1px),
    linear-gradient(#ffffff 0%, #edf5ff 100%);
  background-size: 36px 36px, auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: start;
  gap: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  gap: 42px;
  justify-content: center;
}

.about-content {
  max-width: 700px;
}

.about-content p {
  max-width: 62ch;
  margin-bottom: 14px;
}

.about-lead {
  color: var(--ink-2);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-points span {
  padding: 8px 12px;
  color: #153a73;
  border: 1px solid #d7e6fb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.signature-card {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(7, 17, 31, 0.12);
}

.signature-logo {
  width: 220px;
  margin-bottom: 24px;
  padding: 16px;
}

.signature-card strong,
.signature-card span {
  display: block;
}

.signature-card strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.2rem;
}

.signature-image {
  width: min(190px, 70%);
  margin: 10px 0 0;
  border: 1px solid #eef2f7;
  border-radius: var(--radius);
}

.signature-card span {
  color: var(--blue);
  font-weight: 800;
}

.signature-card p {
  margin: 0;
  color: var(--muted);
}

.project-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-image {
  aspect-ratio: 16 / 10;
  min-height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #111827, #0647c9);
  background-size: 28px 28px, 28px 28px, auto;
}

.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0.62));
}

.project-image i {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.48);
  font-size: 1.35rem;
  backdrop-filter: blur(8px);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.project-card h3 {
  min-height: 70px;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
}

.store-section,
.testimonials {
  background: var(--soft);
}

.store-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-content h2 {
  margin-bottom: 8px;
}

.store-content p {
  margin-bottom: 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.07);
}

.client-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #243244;
  border: 1px solid #e8eef6;
  border-radius: var(--radius);
  background: #f8fbff;
  font-weight: 800;
  text-align: center;
}

.client-logo {
  overflow: hidden;
}

.client-logo img {
  max-width: 86%;
  max-height: 64px;
  object-fit: contain;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-card p {
  color: #2b3544;
  font-size: 1rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--ink);
}

.testimonial-card span {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: 28px;
}

.contact-main,
.contact-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.08);
}

.contact-main {
  padding: 30px;
}

.contact-feature {
  position: sticky;
  top: 104px;
  padding: 28px;
  color: #f4f8ff;
  background:
    linear-gradient(180deg, rgba(0, 200, 255, 0.08), rgba(0, 0, 0, 0)),
    linear-gradient(135deg, #081425 0%, #0d2240 52%, #0a4ca8 100%);
  border-color: rgba(151, 196, 255, 0.18);
  overflow: hidden;
}

.contact-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.contact-main > *,
.contact-feature > * {
  position: relative;
  z-index: 1;
}

.contact-main h2 {
  margin-bottom: 10px;
}

.contact-intro {
  max-width: 62ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1rem;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  min-height: 144px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  color: var(--ink);
  border: 1px solid #dce6f3;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 135, 255, 0.35);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.11);
}

.contact-card-primary {
  border-color: rgba(18, 163, 106, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f2fff8 100%);
}

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

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

.contact-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(5, 135, 255, 0.2);
}

.contact-card-primary .contact-icon {
  background: linear-gradient(135deg, #0f9f67, #22c55e);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.2);
}

.contact-icon i {
  font-size: 1.2rem;
}

.contact-card-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-card-copy strong {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.2;
}

.contact-card-copy small {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card-copy em {
  color: #334155;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-action {
  grid-column: 2;
  margin-top: 6px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-feature-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: #b8e6ff;
  border: 1px solid rgba(184, 230, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-feature h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1.08;
}

.contact-feature p {
  margin-bottom: 22px;
  color: #d9e8fb;
  font-size: 1rem;
}

.contact-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-feature-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #eaf4ff;
  border: 1px solid rgba(234, 244, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-feature .btn {
  width: 100%;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 18px 36px rgba(17, 163, 106, 0.34);
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp i {
  font-size: 1.9rem;
}

.site-footer {
  color: #dce8f8;
  background: #070d18;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  width: 160px;
  padding: 12px;
  border-radius: var(--radius);
  background: white;
}

.footer-inner p {
  max-width: 620px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: #dce8f8;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-inner small {
  color: #9fb1c8;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .nav-toggle {
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 78px);
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 24px 52px rgba(7, 17, 31, 0.16);
    overflow-y: auto;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-menu > a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 11px 16px;
  }

  .nav-store,
  .nav-whatsapp {
    margin-left: 0;
  }

  .hero-grid,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    gap: 34px;
    padding-top: 62px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-logo-card,
  .network-panel,
  .hero-metrics {
    margin-right: auto;
    margin-left: 0;
  }

  .signature-card,
  .contact-feature {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .navbar,
  .section-wrap,
  .hero-grid,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .navbar {
    min-height: 70px;
  }

  .brand-logo {
    width: 64px;
    height: 42px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-menu {
    top: 70px;
    max-height: calc(100vh - 70px);
  }

  .nav-toggle {
    top: 13px;
    right: 12px;
  }

  .section-wrap {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 64px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.25rem);
    line-height: 1.1;
    text-wrap: auto;
  }

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

  .hero p {
    max-width: 34ch;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .store-content {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-main,
  .contact-feature {
    padding: 22px;
  }

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

  .contact-card {
    min-height: 0;
  }

  .contact-feature h3 {
    font-size: 1.55rem;
  }

  .hero-actions .btn,
  .store-content .btn {
    width: 100%;
  }

  .network-lines {
    grid-template-columns: 48px 1fr 48px;
    padding: 18px;
  }

  .network-lines i {
    width: 48px;
    height: 48px;
  }

  .hero-metrics,
  .services-grid,
  .portfolio-grid,
  .testimonial-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .project-card h3 {
    min-height: 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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