@charset "UTF-8";

:root {
  --primary: #001831;
  --primary-deep: #00101f;
  --secondary: #add4ff;
  --secondary-soft: #e8f3ff;
  --text: #7d8896;
  --text-dark: #2a3441;
  --accent: #fe801e;
  --accent-dark: #e56f12;
  --white: #ffffff;
  --line: rgba(0, 24, 49, 0.08);
  --shadow: 0 18px 50px rgba(0, 24, 49, 0.12);
  --radius: 32px;
  --radius-sm: 16px;
  --container: 1140px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-dark);
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(173, 212, 255, 0.35), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(254, 128, 30, 0.08), transparent 55%),
    var(--white);
  -webkit-font-smoothing: antialiased;
}

#topo {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 700;
}

p {
  margin: 0 0 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

.container {
  width: min(100% - 4rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 1.6rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 7.6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: auto;
}

.brand-mark {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), #06325f);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 24, 49, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}

.brand-text em {
  font-style: normal;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 4.4rem;
  height: 4.4rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 2.2rem;
  height: 2px;
  margin: 0.5rem auto;
  background: var(--primary);
  transition: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5rem;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn svg {
  width: 1.8rem;
  height: 1.8rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 4.4rem;
  padding: 1rem 2.4rem;
  font-size: 1.5rem;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1ebe5a;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(254, 128, 30, 0.28);
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(0, 24, 49, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 24, 49, 0.04);
}

.btn-header {
  padding-inline: 2.2rem;
}

.hero {
  position: relative;
  padding: 7rem 0 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 24, 49, 0.94), rgba(0, 24, 49, 0.78)),
    radial-gradient(circle at 70% 40%, rgba(254, 128, 30, 0.35), transparent 45%),
    linear-gradient(160deg, #06325f, #001831 55%, #000b16);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 48px 48px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
  animation: gridDrift 18s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero .hat {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero h1,
.hero .hero-lead,
.hero .hero-support {
  color: var(--white);
}

.hero .hero-lead {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero .hero-support {
  color: rgba(255, 255, 255, 0.78);
  max-width: 48rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-card {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.15);
  animation: floatY 5.5s ease-in-out infinite;
  background: #061628;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 24, 49, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.4rem;
  color: var(--white);
}

.hero-device-brand {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.hero-image-overlay strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-image-overlay p {
  margin: 0.4rem 0 0;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-badge-floating {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 25px rgba(0, 24, 49, 0.2);
  color: var(--primary);
  z-index: 2;
}

.hero-badge-floating .badge-icon {
  width: 2.4rem;
  height: 2.4rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.hero-badge-floating strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-badge-floating span {
  font-size: 1.1rem;
  color: var(--text);
  display: block;
}

.section {
  padding: 8rem 0;
}

.section-head {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto 4rem;
}

.section-head p {
  margin: 0;
}

.feedbacks {
  background: linear-gradient(180deg, var(--secondary-soft), var(--white));
}

.rating-badge {
  margin-top: 1.6rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 1.4rem;
}

.rating-google-icon {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.rating-badge strong {
  color: var(--primary);
  font-family: var(--font-display);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.feedback-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feedback-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2.4rem;
  box-shadow: 0 10px 30px rgba(0, 24, 49, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feedback-card p {
  color: var(--text-dark);
  font-size: 1.6rem;
  min-height: 8rem;
}

.feedback-card footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 1.3rem;
  color: var(--text);
}

.feedback-card footer strong {
  color: var(--primary);
}

.videos {
  background: var(--primary);
  color: var(--white);
}

.videos h2,
.videos .section-head p {
  color: var(--white);
}

.videos .section-head p {
  opacity: 0.75;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.video-card {
  position: relative;
  min-height: 24rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  background: #0d2744;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.06);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 24, 49, 0.35) 0%, rgba(0, 24, 49, 0.82) 100%);
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: linear-gradient(180deg, rgba(0, 24, 49, 0.25) 0%, rgba(0, 24, 49, 0.75) 100%);
}

.video-label {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  margin-top: 1.2rem;
  text-align: center;
  padding: 0 1.6rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.play {
  position: relative;
  z-index: 2;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.9rem 0 0.9rem 1.5rem;
  border-color: transparent transparent transparent var(--white);
}

.video-card:hover .play {
  transform: scale(1.12);
  background: var(--accent-dark);
}

.expertise {
  background: linear-gradient(180deg, var(--white), var(--secondary-soft));
}

.expertise-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0 2.8rem;
}

.check-list li {
  position: relative;
  padding-left: 3.2rem;
  font-weight: 600;
  color: var(--primary);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 1.2rem no-repeat;
}

.expertise-panel {
  display: grid;
  gap: 1.6rem;
}

.stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 2.4rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--text);
}

.service-list {
  display: grid;
  gap: 2.8rem;
}

.service-item {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 2.8rem;
  align-items: center;
  padding: 2.8rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 24, 49, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 24, 49, 0.1);
}

.service-media {
  width: 22rem;
  height: 18rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--secondary-soft);
  box-shadow: 0 8px 24px rgba(0, 24, 49, 0.08);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-item:hover .service-media img {
  transform: scale(1.05);
}

.service-body ul {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2rem;
}

.service-body li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text);
}

.service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.brands {
  background: var(--primary);
}

.brands h2 {
  color: var(--white);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

.brand-item {
  width: 14rem;
  height: 7.4rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  padding: 1rem 1.6rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.brand-item:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.brand-item img {
  max-width: 100%;
  max-height: 4.8rem;
  object-fit: contain;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage {
  padding: 2.8rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--secondary-soft), var(--white));
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 24rem 24rem;
  gap: 1.6rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 24, 49, 0.08);
  background: #12345a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 24, 49, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.2rem;
  color: var(--white);
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-info {
  background: linear-gradient(180deg, transparent 30%, rgba(0, 24, 49, 0.94) 100%);
}

.gallery-tag {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.gallery-info strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.15;
}

.gallery-item.g1 {
  grid-row: span 2;
}

.gallery-item.g1 .gallery-info strong {
  font-size: 2.4rem;
}

.about {
  background: linear-gradient(180deg, var(--white), var(--secondary-soft));
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--secondary-soft);
  box-shadow: var(--shadow);
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(254, 128, 30, 0.4);
  text-align: center;
  line-height: 1.1;
}

.about-exp-badge strong {
  font-family: var(--font-display);
  font-size: 2.8rem;
  display: block;
}

.about-exp-badge span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content {
  display: grid;
  gap: 2.4rem;
}

.about-copy {
  max-width: 58rem;
}

.contact-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3.2rem;
  box-shadow: var(--shadow);
}

.payment {
  background: linear-gradient(180deg, var(--white), var(--secondary-soft));
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pay-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 24, 49, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pay-icon {
  width: 4.8rem;
  height: 4.8rem;
  min-width: 4.8rem;
  border-radius: 1.2rem;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pay-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pay-info strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1.2;
}

.pay-info span {
  font-size: 1.3rem;
  color: var(--text);
}

.contact {
  background: var(--primary);
}

.contact h2,
.contact h3,
.contact p,
.contact a {
  color: var(--white);
}

.contact p {
  opacity: 0.8;
}

.contact-list {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  font-weight: 700;
}

.contact-list a {
  font-size: 1.8rem;
  font-weight: 700;
}

.contact-cta {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-cta p {
  margin-bottom: 2rem;
}

.contact-address {
  display: block;
  margin: 1.6rem 0 0.8rem;
  font-style: normal;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  opacity: 1;
}

.map-link {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--secondary) !important;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.map-link:hover {
  color: var(--accent) !important;
}

.location {
  background: linear-gradient(180deg, var(--secondary-soft), var(--white));
}

.location .section-head {
  margin-bottom: 2.4rem;
}

.location .section-head h2 {
  color: var(--primary);
}

.location .section-head p {
  color: var(--text);
}

.location .map-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
  aspect-ratio: 21 / 9;
  min-height: 36rem;
  position: relative;
  overflow: hidden;
}

.location .map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-reveal {
  width: 100%;
}

.map-block {
  margin-top: 4rem;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 21 / 9;
  min-height: 32rem;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.4rem 0;
  font-size: 1.4rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-top {
  color: var(--secondary);
  font-weight: 700;
}

.float-whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  z-index: 60;
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.float-whatsapp svg {
  width: 3rem;
  height: 3rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(48px, 24px, 0);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .expertise-grid,
  .about-grid,
  .contact-grid,
  .advantage-grid,
  .feedback-track,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .pay-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-media {
    width: 100%;
    height: 22rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 20rem 20rem 20rem;
  }

  .gallery-item.g1 {
    grid-column: span 2;
    grid-row: auto;
    min-height: 22rem;
  }

  .nav {
    position: fixed;
    inset: 7.6rem 1.6rem auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    padding: 1.6rem;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .btn-header {
    display: none;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2.4rem, var(--container));
  }

  .map-frame,
  .location .map-frame {
    aspect-ratio: 4 / 5;
    min-height: 28rem;
    border-radius: var(--radius-sm);
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .section {
    padding: 5.6rem 0;
  }

  .feedback-track,
  .video-grid,
  .gallery-grid,
  .advantage-grid,
  .pay-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }

  .gallery-item {
    min-height: 22rem;
  }

  .gallery-item.g1 {
    grid-column: auto;
  }

  .hero-image-card {
    width: 100%;
  }

  .brand-item {
    width: 12rem;
    height: 6.4rem;
  }

  .float-whatsapp {
    right: 1.2rem;
    bottom: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-image-card,
  .float-whatsapp,
  .hero-bg::after {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
