@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand:       #007866;
  --brand-d:     #005a4e;
  --brand-l:     #00a88f;
  --brand-faint: rgba(0,120,102,0.10);
  --bg:          #f2f6f5;
  --surface:     #ffffff;
  --text:        #0d1f1c;
  --muted:       #5a7470;
  --border:      #d5e3e0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 0% 0%,    rgba(0,120,102,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(0,168,143,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* page wrapper */
.page {
  position: relative;
  z-index: 1;
  width: min(1020px, 95vw);
  padding: 48px 16px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* top nav */
.topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
  animation: fadeDown 0.7s ease both;
}

.topbar img {
  height: 46px;
  object-fit: contain;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand-faint);
  border: 1px solid rgba(0,120,102,0.22);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

/* hero */
.hero {
  text-align: center;
  max-width: 680px;
  margin-bottom: 60px;
  animation: fadeUp 0.85s 0.05s ease both;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}

h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 38px;
}

.hero-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(620px, 100%);
  margin: 0 auto;
}

.hero-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.86));
  border: 1.5px solid rgba(0,120,102,0.16);
  box-shadow: 0 10px 30px rgba(0,120,102,0.08);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hero-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,120,102,0.36);
  box-shadow: 0 14px 34px rgba(0,120,102,0.12);
}

.hero-contact-icon-contact {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-faint);
  color: var(--brand);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.hero-contact-icon-email {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-faint);
  color: var(--brand);
  font-size: 1.6rem;
  flex: 0 0 auto;
}

.hero-contact-copy {
  text-align: left;
  min-width: 0;
}

.hero-contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.hero-contact-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}

/* notify form */
.notify-form {
  display: flex;
  gap: 8px;
  width: min(460px, 100%);
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input::placeholder {
  color: #b0c8c4;
}

.notify-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,120,102,0.13);
}

.notify-form button {
  background: var(--brand);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,120,102,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.notify-form button:hover {
  background: var(--brand-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0,120,102,0.38);
}

.notify-form button:active {
  transform: translateY(0);
}

/* countdown */
.countdown-wrap {
  width: 100%;
  max-width: 520px;
  margin-bottom: 72px;
  animation: fadeUp 0.85s 0.15s ease both;
}

.section-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cd-block {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 8px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.cd-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--brand);
}

.cd-lbl {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* services */
.services-section {
  width: 100%;
  margin-bottom: 72px;
  animation: fadeUp 0.85s 0.25s ease both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 26px 22px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,120,102,0.11);
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.service-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* footer */
.bottombar {
  width: 100%;
  padding-top: 28px;
  border-top: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.85s 0.35s ease both;
}

.copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.contact-links a:hover {
  border-color: var(--brand);
  background: var(--brand-faint);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.social-links a:hover {
  border-color: var(--brand);
  background: var(--brand-faint);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 500px) {
  .topbar-tag {
    display: none;
  }

  h1 {
    letter-spacing: -0.5px;
  }

  .notify-form {
    flex-direction: column;
  }

  .cd-num {
    font-size: 1.9rem;
  }

  .hero-contacts {
    grid-template-columns: 1fr;
  }

  .bottombar {
    flex-direction: column;
    align-items: flex-start;
  }
}