:root {
  --bg-1: #f7f3ec;
  --bg-2: #ffffff;
  --bg-3: #eef5f7;
  --text: #1f2933;
  --muted: #667085;
  --line: rgba(31,41,51,0.12);
  --accent: #c9363f;
  --accent-2: #2f9fc4;
  --max: 1180px;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(31,41,51,0.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(31,41,51,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  height: 84px;
  border-radius: 10px;
}

.brand-title {
  color: #17202a;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.05;
}

.brand-subtitle {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  color: #667085;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #17202a;
  background: #f0f4f7;
}

.hero {
  padding: 28px 0 38px;
}

.hero-panel {
  min-height: 560px;
  display: grid;
  align-content: end;
  border-radius: 34px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(9,14,24,0.95) 0%, rgba(9,14,24,0.78) 50%, rgba(9,14,24,0.34) 100%),
    var(--hero-image) center / cover no-repeat;
  box-shadow: 0 36px 80px rgba(31,41,51,0.18);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

h1 {
  max-width: 840px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -1.4px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.30);
}

.lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}

.actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d9434c, #b92d36);
  box-shadow: 0 18px 38px rgba(201,54,63,0.30);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
}

section { padding: 44px 0; }

.section-title {
  margin: 0 0 12px;
  color: #17202a;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
}

.section-copy {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(31,41,51,0.10);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31,41,51,0.08);
}

.card h3 {
  margin: 0 0 8px;
  color: #17202a;
  font-size: 22px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p { margin: 0; }

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq details {
  padding: 18px 20px;
  border: 1px solid rgba(31,41,51,0.10);
  border-radius: 18px;
  background: #ffffff;
}

.faq summary {
  color: #17202a;
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

footer {
  padding: 34px 0 50px;
  color: #7b8794;
}

.footer-bar {
  border-top: 1px solid rgba(31,41,51,0.10);
  padding-top: 20px;
}

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .brand img {
    height: 68px;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-panel {
    min-height: 560px;
    border-radius: 24px;
    padding: 26px 20px;
    background:
      linear-gradient(180deg, rgba(9,14,24,0.94) 0%, rgba(9,14,24,0.76) 68%, rgba(9,14,24,0.54) 100%),
      var(--hero-image) center / cover no-repeat;
  }

  .btn {
    width: 100%;
  }
}
