:root {
  --primary: #ed8936;
  --primary-dark: #dd6b20;
  --teal: #004a61;
  --bg: #f8fafc;
  --dark: #1a140f;
  --radius: 16px;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: #1f2937;
  line-height: 1.6;
}

/* BRAND TEXT LOGO */

.brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--teal);
  letter-spacing: -0.3px;
}

.brand span {
  color: var(--primary);
}

.brand-footer {
  color: var(--teal);
  margin-bottom: 10px;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 80px;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--teal);
  font-weight: 600;
}

/* BUTTONS */

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-large {
  padding: 16px 30px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

/* HERO */

.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('pexels-hillaryfox-1595391.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 140px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

.hero p {
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
}

.badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  margin-top: 40px;
}

/* DEADLINE */

.deadline {
  margin-top: -60px;
}

.deadline-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
}

.countdown span {
  font-size: 40px;
  font-weight: 800;
  color: var(--teal);
  display: block;
}

/* FEATURES */

.features {
  padding: 100px 0;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* PROCESS */

.process {
  padding: 100px 0;
}

.steps {
  margin-top: 50px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* CTA */

.cta {
  background: var(--dark);
  color: white;
  padding: 100px 0;
  text-align: center;
}

/* FOOTER */

.footer {
  background: white;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE */

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

  .countdown {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }
}
