:root {
  --orange: #e8814a;
  --orange-dark: #c96936;
  --teal: #4ba8b0;
  --teal-dark: #357a80;
  --bg: #fdf8f4;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --card: #ffffff;
  --shadow: 0 10px 30px -12px rgba(201, 105, 54, 0.25);
  --radius: 18px;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #fff2e6 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.logo-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.logo {
  width: 400px; max-width: 65vw; height: auto; margin-top: 40px;
  
}

.hero { text-align: center; padding: 16px 8px 32px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(75, 168, 176, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--orange-dark);
  margin-bottom: 14px;
  line-height: 1.15;
}
.lead { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 17px; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
}
.unit {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 6px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center;
}
.num {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}
.label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--muted); margin-top: 4px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-top: 36px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}
.card h2, .contact h2 {
  color: var(--teal-dark);
  font-size: 22px;
  margin-bottom: 14px;
}

.schedule { list-style: none; margin: 14px 0 24px; }
.schedule li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  color: var(--text);
}
.schedule li:last-child { border-bottom: none; }
.schedule strong { color: var(--orange-dark); display: inline-block; min-width: 90px; }

.pricing-title { font-weight: 600; margin-bottom: 12px; color: var(--text); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.price {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.price .duration { font-size: 13px; opacity: 0.9; }
.price .amount { font-size: 22px; font-weight: 800; }

.contact {
  text-align: center;
  margin-top: 36px;
  padding: 28px 20px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
.btn {
  display: inline-block;
  margin: 10px 0 18px;
  padding: 14px 28px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { background: var(--teal-dark); transform: translateY(-2px); }
address { font-style: normal; color: var(--muted); font-size: 15px; }

footer {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .card { padding: 24px 18px; }
}
