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

:root {
  --g900: #13382a;
  --g800: #1e5239;
  --g700: #2d6b4a;
  --g600: #3a7d58;
  --g500: #4e9468;
  --g400: #6baf85;
  --g300: #9acfb0;
  --g100: #e1f3e9;
  --g50:  #f2fbf5;
}

html { height: 100%; }

body {
  font-family: 'Noto Sans Armenian', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #f0fdf4, #ffffff, #e8f7ef, #f7fdfb);
  background-size: 400% 400%;
  animation: bgDrift 18s ease infinite;
  color: var(--g900);
  overflow-x: hidden;
  position: relative;
}

@keyframes bgDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── decorative blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.blob-tl {
  top: -200px; left: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(78,148,104,.12) 0%, transparent 68%);
  animation: blobFloat 22s ease-in-out infinite alternate;
}

.blob-br {
  bottom: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(45,107,74,.10) 0%, transparent 68%);
  animation: blobFloat 28s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

/* ── top accent bar ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--g800), var(--g500), var(--g400), var(--g500), var(--g800));
  background-size: 200% 100%;
  animation: barShimmer 4s linear infinite;
  z-index: 100;
}

@keyframes barShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── main content ── */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem 4rem;
  max-width: 740px;
  width: 100%;
}

/* ── logo ── */
.logo-wrap {
  margin-bottom: 2.5rem;
  animation: fadeDown .8s cubic-bezier(.22,1,.36,1) both;
}

.logo-wrap img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(30,82,57,.18));
  animation: logoFloat 5s ease-in-out infinite;
}

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

/* ── badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--g100);
  border: 1.5px solid rgba(78,148,104,.3);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g700);
  margin-bottom: 1.75rem;
  animation: fadeUp .7s .15s cubic-bezier(.22,1,.36,1) both;
}

.pulse-ring {
  position: relative;
  width: 9px;
  height: 9px;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.pulse-ring::before { background: var(--g600); }

.pulse-ring::after {
  background: var(--g400);
  opacity: 0;
  animation: ripple 2.4s ease-out infinite;
}

@keyframes ripple {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(3); opacity: 0; }
}

/* ── heading ── */
h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--g800) 0%, var(--g500) 60%, var(--g400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .5rem;
  animation: fadeUp .7s .25s cubic-bezier(.22,1,.36,1) both;
}

/* ── ornament divider ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem auto;
  animation: fadeUp .7s .35s cubic-bezier(.22,1,.36,1) both;
}

.ornament-line {
  width: 60px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--g400));
}

.ornament-line:last-child {
  background: linear-gradient(90deg, var(--g400), transparent);
}

.ornament-leaf { color: var(--g500); font-size: 1.1rem; }

/* ── tagline ── */
.tagline {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  font-weight: 600;
  color: var(--g700);
  letter-spacing: .04em;
  margin-bottom: 1rem;
  animation: fadeUp .7s .4s cubic-bezier(.22,1,.36,1) both;
}

/* ── description ── */
.desc {
  font-size: clamp(.95rem, 2vw, 1.07rem);
  font-weight: 300;
  line-height: 1.85;
  color: #537565;
  max-width: 480px;
  margin: 0 auto 3rem;
  animation: fadeUp .7s .48s cubic-bezier(.22,1,.36,1) both;
}

/* ── feature cards ── */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  animation: fadeUp .7s .56s cubic-bezier(.22,1,.36,1) both;
}

.feature {
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(78,148,104,.16);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,82,57,.12);
  border-color: rgba(78,148,104,.35);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--g100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--g800);
  line-height: 1.3;
}

.feature-sub {
  font-size: .78rem;
  font-weight: 300;
  color: var(--g500);
  line-height: 1.4;
}

/* ── countdown ── */
.countdown-section {
  margin: 0 auto 2.75rem;
  animation: fadeUp .7s .52s cubic-bezier(.22,1,.36,1) both;
}

.countdown-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g400);
  text-align: center;
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  position: relative;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(78,148,104,.18);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  min-width: 82px;
  box-shadow: 0 4px 18px rgba(30,82,57,.07), inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

/* green top accent stripe */
.cd-unit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g700), var(--g400));
}

.cd-unit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(30,82,57,.13), inset 0 1px 0 rgba(255,255,255,.9);
  border-color: rgba(78,148,104,.32);
}

.cd-num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--g800) 0%, var(--g500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* tick animation on digit change */
@keyframes cdTick {
  0%   { transform: scale(1.18); opacity: .6; }
  100% { transform: scale(1);    opacity: 1; }
}
.cd-tick { animation: cdTick .18s cubic-bezier(.22,1,.36,1) both; }

.cd-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g400);
}

.cd-sep {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--g300);
  margin-bottom: 1.5rem;
  line-height: 1;
  opacity: .65;
  user-select: none;
}

/* ── CTA buttons ── */
.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .85rem;
  animation: fadeUp .7s .64s cubic-bezier(.22,1,.36,1) both;
}

/* shared button base */
.btn-call,
.btn-whatsapp,
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  border-radius: 100px;
  padding: .85rem 1.75rem;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-call,
.btn-whatsapp,
.btn-telegram {
  color: #fff;
}

.btn-call:hover,
.btn-whatsapp:hover,
.btn-telegram:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-call {
  background: linear-gradient(135deg, var(--g700), var(--g600));
  box-shadow: 0 6px 22px rgba(30,82,57,.28);
}

.btn-call:hover { box-shadow: 0 10px 30px rgba(30,82,57,.36); }

.btn-whatsapp {
  background: #25d366;
  box-shadow: 0 6px 22px rgba(37,211,102,.28);
}

.btn-whatsapp:hover { box-shadow: 0 10px 30px rgba(37,211,102,.38); }

.btn-telegram {
  background: #229ed9;
  box-shadow: 0 6px 22px rgba(34,158,217,.28);
}

.btn-telegram:hover { box-shadow: 0 10px 30px rgba(34,158,217,.38); }

/* ── footer ── */
footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  padding: .9rem 1.5rem;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(78,148,104,.1);
  z-index: 100;
}

.copyright {
  font-size: .76rem;
  color: var(--g300);
  font-weight: 400;
}

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

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

/* ── responsive ── */
@media (max-width: 760px) {
  .content { padding: 4.5rem 1.5rem 3.5rem; }
}

@media (max-width: 480px) {
  .content { padding: 4rem 1.25rem 3rem; }
  .logo-wrap img { width: 175px; }
  h1 { font-size: 2.2rem; }
  .tagline { font-size: 1rem; }
  .desc { font-size: .92rem; }
  .features { grid-template-columns: 1fr 1fr; max-width: 320px; gap: .75rem; }
  .feature { padding: 1.1rem .75rem; }
  .feature-icon-wrap { width: 44px; height: 44px; font-size: 1.25rem; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn-call, .btn-whatsapp, .btn-telegram { width: 100%; max-width: 280px; justify-content: center; }
  .cd-num  { font-size: 1.75rem; }
  .cd-unit { min-width: 62px; padding: .9rem .85rem; }
  .cd-sep  { font-size: 1.6rem; margin-bottom: 1.2rem; }
}

@media (max-width: 340px) {
  .features { grid-template-columns: 1fr; }
  h1 { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
