:root {
  --blue: #0a3d91;
  --blue-mid: #1565c0;
  --blue-light: #1e88e5;
  --green: #2e9e44;
  --red: #d32f2f;
  --ink: #1a2744;
  --muted: #4a5a70;
  --bg: #f7f8fa;
  --white: #ffffff;
  --purple: #7b1fa2;
  --orange: #ef6c00;
  --gold: #c79100;
  --grey: #78909c;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cg fill='%23d0d5dd' opacity='0.18'%3E%3Cpath d='M120 420h40v80h-40zm50-40h30v120h-30zm45-60h35v180h-35zm120 20c0-40 30-70 70-70s70 30 70 70v160H335z'/%3E%3Cpath d='M520 380c20-50 60-80 110-80s90 30 110 80v140H520z'/%3E%3Cpath d='M80 500c40-90 100-140 180-140' fill='none' stroke='%23d0d5dd' stroke-width='8'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat left 55% / 420px auto,
    linear-gradient(180deg, #ffffff 0%, #f4f6f9 55%, #eef2f7 100%);
  overflow-x: hidden;
}

.page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px 36px;
  position: relative;
}

/* Header */
.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  margin-bottom: 18px;
  animation: rise 0.6s ease both;
}

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

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8eef8;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text .name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.brand-text .country {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tagline .dot { color: var(--ink); margin: 0 4px; }
.t-blue { color: var(--blue); }
.t-green { color: var(--green); }
.t-red { color: var(--red); }

/* Layout */
.layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 1.1fr);
  gap: 12px 20px;
  align-items: stretch;
  min-height: 620px;
}

.left {
  padding-top: 8px;
  animation: rise 0.7s ease 0.08s both;
  z-index: 2;
}

.headline {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.headline span { color: var(--blue); }
.headline { color: var(--green); }

.desc {
  margin: 0 0 16px;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
}

.flag-line {
  width: 180px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--blue) 33% 66%, var(--green) 66% 100%);
}

.features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.features li {
  width: 78px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.features i { font-size: 1.55rem; }
.f-green { color: var(--green); }
.f-blue { color: var(--blue-mid); }
.f-red { color: var(--red); }

.features span {
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.launch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 10px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(10, 61, 145, 0.16);
  margin-bottom: 18px;
  animation: softPulse 2.6s ease-in-out infinite;
}

.launch .bell {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.launch strong {
  display: block;
  font-size: 0.82rem;
  color: var(--blue);
  letter-spacing: 0.03em;
}

.launch span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.countdown {
  margin-bottom: 20px;
  min-height: 64px;
}

.countdown .unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  margin-right: 8px;
  padding: 8px 10px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
}

.countdown .unit b {
  font-size: 1.25rem;
  line-height: 1;
}

.countdown .unit small {
  margin-top: 3px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.web:hover { color: var(--green); }

.stores { display: flex; flex-wrap: wrap; gap: 10px; }

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  min-width: 150px;
  transition: transform 0.2s ease;
}

.store:hover { transform: translateY(-2px); }
.store i { font-size: 1.4rem; }
.store small {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  line-height: 1;
}
.store b { font-size: 0.9rem; line-height: 1.1; }

/* Right visual panel */
.right {
  position: relative;
  min-height: 640px;
  animation: rise 0.8s ease 0.15s both;
}

.blue-wave {
  position: absolute;
  inset: 0 0 40px 8%;
  background:
    radial-gradient(ellipse 90% 70% at 70% 40%, #1565c0 0%, #0a3d91 55%, #072e6e 100%);
  border-radius: 48% 42% 38% 55% / 42% 48% 52% 45%;
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.blue-wave::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 46% 40% 42% 50% / 44% 46% 48% 42%;
}

.shot {
  position: absolute;
  margin: 0;
  z-index: 3;
  animation: float 5.2s ease-in-out infinite;
}

.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  background: #cfd8e8;
}

.hero-shot {
  width: 190px;
  height: 190px;
  top: 6%;
  left: 4%;
  z-index: 4;
  animation-delay: -0.4s;
}

.hero-shot img { border-width: 6px; }

.shot-elec {
  width: 148px;
  height: 148px;
  top: 4%;
  right: 6%;
}

.shot-plumb {
  width: 138px;
  height: 138px;
  top: 36%;
  right: 2%;
  animation-delay: -1.4s;
}

.shot-solar {
  width: 142px;
  height: 142px;
  bottom: 16%;
  right: 8%;
  animation-delay: -2.2s;
}

.shot-clean {
  width: 130px;
  height: 130px;
  bottom: 4%;
  left: 22%;
  animation-delay: -3s;
  z-index: 6;
}

.label {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.label.blue { background: var(--blue-mid); }
.label.green { background: var(--green); }
.label.red { background: var(--red); }
.label.purple { background: var(--purple); }

/* Phone */
.phone {
  position: absolute;
  left: 42%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: phoneIn 0.9s ease 0.25s both;
}

.phone-bezel {
  width: 236px;
  height: 470px;
  padding: 9px;
  background: #1c1c20;
  border-radius: 34px;
  box-shadow:
    0 0 0 2px #333,
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  height: 100%;
  background: linear-gradient(180deg, #f8faff, #eef2f8);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px 11px 8px;
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--blue);
}

.app-logo img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.app-head > i { color: var(--muted); font-size: 0.85rem; }

.app-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.58rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.app-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.cat {
  aspect-ratio: 1;
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.95rem;
}

.cat span { font-size: 0.48rem; font-weight: 700; }
.cat.blue { background: var(--blue-mid); }
.cat.green { background: var(--green); }
.cat.orange { background: var(--orange); }
.cat.purple { background: var(--purple); }
.cat.gold { background: var(--gold); }
.cat.grey { background: var(--grey); }

.app-verify {
  display: flex;
  gap: 7px;
  padding: 8px;
  background: #e7f7ec;
  border-radius: 10px;
  margin-bottom: auto;
}

.app-verify i { color: var(--green); font-size: 0.8rem; margin-top: 1px; }
.app-verify p {
  margin: 0;
  font-size: 0.5rem;
  line-height: 1.35;
  font-weight: 600;
  color: #355a42;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 12px;
  padding: 7px 2px 4px;
  margin-top: 8px;
}

.app-tabs span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.45rem;
  font-weight: 600;
  color: #94a3b8;
}

.app-tabs span i { font-size: 0.8rem; }
.app-tabs .on { color: var(--blue); }

/* Doorstep CTA */
.doorstep {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: rise 1s ease 0.4s both;
}

.door-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.door-text span {
  padding: 3px 10px;
  color: #fff;
}

.d1 { background: var(--blue); }
.d2 { background: var(--green); }
.d3 { background: var(--red); }

.door-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(var(--red), var(--blue), var(--green), var(--red));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(10, 61, 145, 0.3);
}

.door-badge::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
}

.door-badge {
  position: relative;
}

.door-badge i {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.35rem;
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

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

@keyframes phoneIn {
  from { opacity: 0; transform: translate(-50%, -42%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .right {
    min-height: 560px;
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .phone {
    left: 50%;
  }
}

@media (max-width: 560px) {
  .page { padding: 16px 14px 28px; }

  .logo-img { width: 58px; height: 58px; }
  .brand-text .name { font-size: 1.15rem; }

  .right { min-height: 480px; }

  .hero-shot { width: 130px; height: 130px; }
  .shot-elec { width: 100px; height: 100px; }
  .shot-plumb { width: 96px; height: 96px; }
  .shot-solar { width: 100px; height: 100px; }
  .shot-clean { width: 92px; height: 92px; }

  .phone-bezel {
    width: 196px;
    height: 390px;
    border-radius: 28px;
  }

  .features li { width: 64px; }
  .launch { width: 100%; }
}
