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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 760px;
}

.section {
  padding: 80px 0;
}

.light-bg {
  background: #f7f7f7;
}

.dark-bg {
  background: #111;
  color: #fff;
}

/* HEADER */
.site-header {
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
}

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


.header-cta {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 120px 0;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.85)
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.brand-name {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #111;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
}

.hero h1 span {
  font-weight: 400;
}

.hero-subtext {
  margin: 20px 0 30px;
  font-size: 18px;
  color: #444;
}

.primary-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.micro-trust {
  margin-top: 16px;
  font-size: 14px;
  color: #777;
}

.hero-image img {
  width: 100%;
  border-radius: 6px;
}

/* TYPOGRAPHY */
h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* LISTS */
.fact-list {
  margin: 20px 0;
  padding-left: 20px;
}

.fact-list li {
  margin-bottom: 10px;
}

.emphasis {
  font-weight: 500;
}

/* BENEFITS */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* STEPS */
.steps li {
  margin-bottom: 24px;
}

/* FORM */
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.contact-form input {
  padding: 14px;
  font-size: 16px;
}

.contact-form button {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: #111;
  border: none;
  cursor: pointer;
}

/* FOOTER */
.footer {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

