:root {
  --primary: #0b72d9;
  --primary-dark: #0754a5;
  --primary-soft: #eaf5ff;
  --ink: #10243e;
  --muted: #60738a;
  --white: #ffffff;
  --border: rgba(11, 114, 217, 0.12);
  --shadow: 0 24px 70px rgba(17, 56, 94, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #eef7ff;
}

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

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(1180px, 100%);
  min-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, rgba(73, 172, 255, 0.17), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(11, 114, 217, 0.09), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fcff 55%, #edf7ff 100%);
  box-shadow: var(--shadow);
}

.topbar {
  position: relative;
  z-index: 3;
  padding: 26px clamp(22px, 5vw, 64px);
}

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

.brand-logo-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 114, 217, 0.15);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0b72d9, #083d78);
  font-weight: 800;
  font-size: 16px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand-name small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin: auto;
  padding: 22px 28px 42px;
  text-align: center;
}

.logo-card {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 8px solid rgba(11, 114, 217, 0.08);
  box-shadow:
    0 16px 35px rgba(10, 90, 160, 0.12),
    0 0 0 1px rgba(11, 114, 217, 0.08);
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-fallback-large {
  font-size: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1aa260;
  box-shadow: 0 0 0 5px rgba(26, 162, 96, 0.10);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(26, 162, 96, 0);
  }
}

h1 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

h1 span {
  color: var(--primary);
}

.intro {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
}

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

.coming-soon {
  width: min(560px, 100%);
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(20, 71, 116, 0.07);
}

.coming-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #0b72d9, #2ca3ff);
  font-size: 20px;
}

.coming-soon strong,
.coming-soon small {
  display: block;
}

.coming-soon strong {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.coming-soon small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:focus-visible,
.contact-item:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(11, 114, 217, 0.3);
  outline-offset: 4px;
}

.btn-whatsapp {
  color: #fff;
  background: #159447;
  box-shadow: 0 10px 24px rgba(21, 148, 71, 0.2);
}

.btn-whatsapp:hover {
  background: #117c3b;
}

.btn-phone {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(11, 114, 217, 0.16);
  box-shadow: 0 8px 20px rgba(20, 71, 116, 0.08);
}

.btn-icon {
  font-size: 18px;
}

.contact-grid {
  width: min(850px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  text-align: left;
  border: 1px solid rgba(11, 114, 217, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  background: #fff;
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 12px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 17px;
}

.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  color: #8091a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-item strong {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 20px 22px 24px;
  color: #8291a3;
  font-size: 10px;
}

.footer-dot {
  color: var(--primary);
}

.decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-one {
  width: 320px;
  height: 320px;
  top: -130px;
  right: -80px;
  border: 50px solid rgba(11, 114, 217, 0.045);
}

.decor-two {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: -80px;
  border: 32px solid rgba(11, 114, 217, 0.04);
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0;
  }

  .hero {
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }

  .topbar {
    padding: 20px;
  }

  .hero-content {
    padding: 15px 20px 30px;
  }

  .logo-card {
    width: 112px;
    height: 112px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .intro {
    line-height: 1.65;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .contact-item {
    padding: 12px;
  }

  .footer {
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-name strong {
    font-size: 12px;
  }

  .brand-name small {
    font-size: 8px;
  }

  .coming-soon {
    padding: 13px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
