:root {
  --blue: #3195EB;
  --blue-dark: #1d6fb8;
  --blue-tint: #eaf4ff;
  --orange: #f5a623;
  --orange-dark: #d98407;
  --navy: #17417a;
  --text: #263447;
  --muted: #5b6b81;
  --bg: #f4f7fa;
  --border: #dbe6f2;
}

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

html, body {
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.top-accent {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue) 60%, var(--navy) 100%);
}

.hero {
  min-height: calc(100vh - 5px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg); /* 60% - dominant neutral */
  color: var(--text);
  padding: 3rem 1.5rem;
}

.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.logo {
  height: 56px;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue-tint);
  color: var(--blue-dark);
  border: 1px solid #cfe6fb;
  border-radius: 9999px;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange); /* 10% accent */
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-weight: 800;
}

.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted);
}

.intro {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
}

.icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  color: currentColor;
}

.icon-sm {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--orange);
}

.address-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  background: var(--blue-tint);
  border: 1px solid #cfe6fb;
  border-radius: 0.75rem;
  color: var(--blue-dark);
}

.cta {
  background: var(--orange); /* 10% accent - primary action */
  border: none;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta strong { color: #ffffff; }

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

.address-line-repeat {
  font-weight: 500;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  text-align: left;
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.assurance {
  width: 100%;
  background: var(--navy); /* 30% - secondary structural color */
  border: none;
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem;
  text-align: left;
  color: #ffffff;
}

.assurance-title {
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.assurance ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.assurance li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: #dbe8fb;
}

.signoff {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--navy);
}
