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

:root {
  --orange: #e8691e;
  --blue:   #29a8e0;
  --green:  #8dc63f;
  --navy:   #1d3a5c;
  --white:  #ffffff;
  --text:   #2c2c2c;
  --light:  #f5f7fa;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('cropped-spring-lake-g0662fcfa8_1920.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 47, 0.55) 0%,
    rgba(10, 25, 47, 0.70) 60%,
    rgba(10, 25, 47, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}

.tagline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.claim {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.claim-question {
  font-weight: 400;
}

.claim-answer {
  position: relative;
  padding-bottom: 0.6em;
}

.claim-answer::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2px;
  margin: 0.45rem auto 0;
  background: linear-gradient(to right, var(--orange), var(--blue));
  border-radius: 2px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-download svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.8;
}

.btn-download:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

/* ── ABOUT ── */
.about {
  background: var(--white);
  padding: 6rem 1.5rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.about h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.about h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--blue));
  border-radius: 2px;
}

.about p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.25rem;
}

.btn-contact {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

.btn-contact:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--light);
  border-top: 1px solid #e0e4ea;
  text-align: center;
  padding: 1.5rem;
}

.site-footer a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .logo {
    width: 100px;
  }

  .btn-download {
    font-size: 0.88rem;
    padding: 0.75rem 1.5rem;
  }
}
