:root {
  --blue-950: #001f3f;
  --blue-900: #003d79;
  --blue-800: #0056a8;
  --blue-700: #0072ce;
  --blue-100: #e6f5ff;
  --ink: #102033;
  --muted: #5d6b7a;
  --line: #d8e5ef;
  --surface: #ffffff;
  --soft: #f4f9fd;
  --orange: #ff8a00;
  --shadow: 0 24px 70px rgba(0, 40, 86, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(0, 31, 63, 0.92);
  box-shadow: 0 12px 34px rgba(0, 20, 45, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 18, 42, 0.2);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.brand:hover {
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 18, 42, 0.26);
  transform: translateY(-1px);
}

.brand img,
.footer-brand {
  width: 100%;
  height: auto;
  aspect-ratio: 2.63 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.main-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.28);
}

.main-nav .nav-cta:hover {
  background: #ff9d24;
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--blue-950);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-bg::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 31, 63, 0.92), rgba(0, 52, 101, 0.72) 48%, rgba(0, 114, 206, 0.34)),
    linear-gradient(180deg, rgba(0, 31, 63, 0.68), rgba(0, 31, 63, 0.12) 46%, rgba(0, 31, 63, 0.76));
}

.hero-bg::after {
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--surface), rgba(255, 255, 255, 0));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 760ms ease, transform 4200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide-contained {
  display: grid;
  place-items: center end;
  padding: 92px clamp(28px, 7vw, 110px) 70px clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 48%, rgba(0, 114, 206, 0.42), transparent 34%),
    linear-gradient(135deg, #00264d, #0064b8);
}

.hero-slide-contained img {
  width: min(46vw, 620px);
  height: auto;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 18, 42, 0.24);
}

.hero-slide-robot img {
  width: min(34vw, 430px);
  max-height: 78vh;
  object-position: center bottom;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 130px clamp(20px, 5vw, 72px) 86px;
}

.hero-copy {
  max-width: 850px;
}

.construction-page .hero-copy {
  max-width: 760px;
}

.construction-page h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 70px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.construction-page .hero-text {
  max-width: 820px;
}

.hero-slogans {
  position: relative;
  min-height: 58px;
  max-width: min(100%, 860px);
  margin: -4px 0 20px;
}

.hero-slogan {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 138, 0, 0.16), transparent 42%),
    rgba(0, 31, 63, 0.64);
  box-shadow: 0 16px 38px rgba(0, 18, 42, 0.18);
  backdrop-filter: blur(10px);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.slogan-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #ffb84d, var(--orange));
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.32);
}

.slogan-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.hero-slogan.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.launch-countdown {
  position: relative;
  width: min(100%, 820px);
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 31, 63, 0.64);
  box-shadow: 0 24px 60px rgba(0, 18, 42, 0.24);
  backdrop-filter: blur(14px);
}

.countdown-mascot {
  position: absolute;
  right: -200px;
  bottom: 155px;
  z-index: 0;
  width: 520px;
  max-width: none;
  opacity: 0.98;
  filter: drop-shadow(0 24px 40px rgba(0, 18, 42, 0.34));
  pointer-events: none;
}

.countdown-head,
.countdown-grid,
.countdown-businesses {
  position: relative;
  z-index: 2;
}

@media (min-width: 981px) {
  .construction-hero .launch-countdown {
    position: absolute;
    right: clamp(150px, 13vw, 230px);
    bottom: 94px;
    z-index: 3;
    width: min(430px, 34vw);
    margin: 0;
  }

  .construction-hero .launch-countdown {
    padding-right: 18px;
  }

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

.countdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.countdown-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-head strong {
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown-item {
  position: relative;
  overflow: hidden;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.countdown-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  animation: countdown-shine 3.8s ease-in-out infinite;
}

.countdown-item strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.countdown-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-businesses {
  margin-top: 14px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.business-icon-track {
  display: flex;
  width: max-content;
  gap: 11px;
  animation: business-marquee 16s linear infinite;
}

.countdown-businesses:hover .business-icon-track {
  animation-play-state: paused;
}

.business-icon-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 184, 77, 0.98), rgba(255, 138, 0, 0.98));
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.24);
}

.business-icon-chip svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.business-icon-chip:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 203, 115, 1), rgba(255, 138, 0, 1));
}

@keyframes countdown-shine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes business-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255, 138, 0, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-whatsapp {
  position: relative;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
  overflow: hidden;
}

.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn-whatsapp:hover::after {
  transform: translateX(120%);
}

.btn-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.btn-whatsapp span {
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.construction-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.construction-status span {
  padding: 18px 18px 18px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.construction-status strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.hero-stats span {
  padding: 18px 18px 18px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.hero-controls {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 31, 63, 0.72);
  box-shadow: 0 14px 34px rgba(0, 22, 48, 0.26);
  cursor: pointer;
  transition: background 170ms ease, transform 170ms ease;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.slider-arrow:hover {
  background: var(--orange);
  transform: scale(1.04);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 170ms ease, background 170ms ease;
}

.slider-dots button.is-active {
  width: 52px;
  background: var(--orange);
}

.section {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

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

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 24px;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-panel,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 47, 96, 0.08);
}

.about-panel {
  padding: 28px;
}

.about-panel p,
.service-card p,
.contact-info p {
  color: var(--muted);
  line-height: 1.7;
}

.panel-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-700);
  font-size: 42px;
  font-weight: 800;
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 250px;
  padding: 30px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  font-size: 15px;
  font-weight: 900;
}

.business-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 76px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.business-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.construction-business {
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.98), rgba(0, 86, 168, 0.92)),
    url("img/business-hero.png") center / cover;
}

.business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.business-list span {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 114, 206, 0.1), transparent 32%),
    #fff;
}

.contact-info {
  align-self: start;
}

.contact-info > p {
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 12px 24px rgba(0, 86, 168, 0.16);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd9e4;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(0, 114, 206, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: #137d3c;
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-950);
}

.footer-brand {
  width: 176px;
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.developer-credit img {
  width: 142px;
  height: auto;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  opacity: 0.88;
  transition: opacity 170ms ease, transform 170ms ease;
}

.developer-credit:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .about-grid,
  .business-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .hero {
    min-height: auto;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand {
    width: 154px;
    padding: 5px 8px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 31, 63, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-content {
    align-items: flex-start;
    min-height: auto;
    padding: 104px 16px 112px;
    overflow: hidden;
  }

  .hero-copy,
  .construction-page .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .construction-page h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .construction-page .hero-text {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-slogans {
    min-height: 92px;
    margin-bottom: 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-slogan {
    width: 100%;
    max-width: 100%;
    padding: 9px 12px 9px 9px;
    font-size: 17px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .slogan-icon {
    width: 38px;
    height: 38px;
  }

  .slogan-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-stats,
  .construction-status,
  .service-grid,
  .two-cols {
    grid-template-columns: 1fr;
  }

  .launch-countdown {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 13px;
    overflow: hidden;
  }

  .countdown-mascot {
    display: none;
  }

  .countdown-head {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
  }

  .countdown-head span {
    font-size: 11px;
  }

  .countdown-head strong {
    font-size: 14px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .countdown-item {
    min-width: 0;
    padding: 11px 10px;
  }

  .countdown-item strong {
    font-size: 32px;
  }

  .countdown-item span {
    font-size: 11px;
  }

  .business-icon-chip {
    width: 38px;
    height: 38px;
  }

  .business-icon-chip svg {
    width: 21px;
    height: 21px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .btn-whatsapp {
    font-size: 15px;
  }

  .construction-status {
    display: none;
  }

  .hero-stats span {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .construction-status span {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 18px;
    justify-content: center;
    gap: 10px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-dots button {
    width: 26px;
  }

  .slider-dots button.is-active {
    width: 38px;
  }

  .hero-slide-contained {
    place-items: end center;
    padding: 120px 18px 95px;
  }

  .hero-slide-contained img,
  .hero-slide-robot img {
    width: min(78vw, 330px);
    max-height: 42vh;
  }

  .section,
  .business-band {
    padding-inline: 18px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .footer-copy {
    justify-items: start;
  }

  .site-footer p {
    text-align: left;
  }

  .developer-credit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 146px;
  }

  .hero-content {
    padding: 96px 14px 104px;
  }

  h1,
  .construction-page h1 {
    font-size: clamp(32px, 10.4vw, 40px);
  }

  .hero-slogan {
    font-size: 15px;
  }

  .slogan-icon {
    width: 36px;
    height: 36px;
  }

  .launch-countdown {
    padding: 12px;
  }

  .countdown-item strong {
    font-size: 30px;
  }

  .countdown-item span {
    font-size: 10px;
  }

  .hero-controls {
    left: 14px;
    right: 14px;
  }
}
