* {
  box-sizing: border-box;
}

:root {
  --blue: #087fc2;
  --blue-dark: #045d94;
  --cyan: #30c7ef;
  --white: #ffffff;
  --text: #08253b;
  --muted: #4e6b7d;
  --danger: #ef4046;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(0, 74, 126, 0.24);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(48, 199, 239, 0.38), transparent 34%),
    linear-gradient(135deg, #e8f8ff 0%, #ffffff 44%, #d7f5ff 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: #27bce8;
  top: -110px;
  left: -80px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  bottom: -90px;
  right: 8%;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: #0c89ca;
  right: -70px;
  top: 28%;
  animation-delay: 3s;
}

.page-shell {
  position: relative;
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 32px 0;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.8s ease both;
}

.brand-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.logo {
  width: min(360px, 56vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
}

.isolir-label {
  width: min(300px, 42vw);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(239, 64, 70, 0.18);
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 89, 138, 0.15);
  backdrop-filter: blur(16px);
}

.notice-card {
  padding: 32px;
}

.status-pill {
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(239, 64, 70, 0.12);
  color: #b60d17;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  color: #063958;
}

p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--muted);
}

.countdown-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 127, 194, 0.10);
  border: 1px solid rgba(8, 127, 194, 0.14);
}

.countdown-box span {
  color: #245067;
  font-size: 15px;
}

.countdown-box strong {
  min-width: 74px;
  text-align: center;
  padding: 9px 12px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 20px;
}

.billing-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.billing-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(8, 127, 194, 0.28);
  outline: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.billing-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 127, 194, 0.14);
}

.billing-form button {
  border: 0;
  border-radius: 16px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--danger), #ff6b6f);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(239, 64, 70, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.billing-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(239, 64, 70, 0.35);
}

.side-card {
  padding: 20px;
  overflow: hidden;
}

.info-image {
  width: 100%;
  display: block;
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(0, 90, 140, 0.18);
}

.contact-box h2 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #063958;
}

.wa-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 13px 14px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 127, 194, 0.12);
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-button:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.95);
}

.wa-button .wa-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
}

.wa-button .wa-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.wa-button b {
  font-size: 15px;
}

.wa-button small {
  font-size: 14px;
  color: var(--muted);
}

.footer-note {
  text-align: center;
  margin-top: 22px;
  font-weight: 700;
  color: #35677f;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(22px) scale(1.04);
  }
}

@keyframes pulseSoft {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@media (max-width: 900px) {
  .hero-card {
    padding: 18px;
    border-radius: 26px;
  }

  .brand-area {
    flex-direction: column;
    text-align: center;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .notice-card {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: 96%;
    padding: 14px 0;
  }

  .logo,
  .isolir-label {
    width: 86%;
  }

  .billing-form {
    flex-direction: column;
  }

  .billing-form button {
    width: 100%;
    padding: 16px 20px;
  }

  .countdown-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
