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

:root {
  --green: #4CAF50;
  --green-dark: #388E3C;
  --orange: #E8500A;
  --orange-hover: #c94208;
  --dark: #1a1a1a;
  --mid: #555;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  display: flex;
  flex:1;
}

/* ── Header ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
}

.pin-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  color: var(--mid);
  line-height: 1.2;
}

.contact-phone {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  white-space: nowrap;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  flex: 1;
  min-height: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.62)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.maintenance-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-subtitle {
  color: #d0d0d0;
  font-size: clamp(1rem, 3vw, 1.7rem);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-top: 20px;
  line-height: 1.7;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 40px auto;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 28px;
  min-width: 100px;
}

.countdown-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.countdown-sep {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  padding: 0 8px;
  margin-bottom: 18px;
}

/* ── CTA Button ── */
.cta-button {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* ── Info Section ── */
.info-section {
  background: var(--light);
  border-top: 1px solid var(--border);
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow 0.2s ease;
}

.info-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.info-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-pi {
  width: 32px;
  height: 32px;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-links span {
  opacity: 0.3;
}

/* ── Progress bar ── */
body::after {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 9999;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .header-contact {
    display: none;
  }

  .hero {
    min-height: 480px;
    padding: 60px 16px;
  }

  .countdown-item {
    min-width: 72px;
    padding: 12px 16px;
  }

  .countdown-value {
    font-size: 2rem;
  }

  .info-inner {
    padding: 48px 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
