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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: #ffffff;
  color: #111827;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  padding: 8px 12px;
  background: #111827;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  z-index: 1000;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
}

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

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 32px;
}

/* Nav */

.main-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: #111827;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  margin: 4px 0;
}

/* Hero */

.hero {
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

h1, h2, h3 {
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

p {
  margin: 0 0 10px;
  color: #4b5563;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: #16a34a;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.badge-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
}

.badge-text {
  font-size: 0.8rem;
  color: #111827;
}

/* Buttons */

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #ffffff;
  color: #111827;
  border-color: #e5e7eb;
}

.btn-ghost:hover {
  background: #ecfdf3;
  border-color: #16a34a;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* Hero side card */

.hero-panel {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 20px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

.trust-card {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 163, 74, 0.3);
  background: linear-gradient(135deg, #ecfdf3, #ffffff);
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #16a34a;
}

.trust-stars {
  font-size: 1.1rem;
  margin: 4px 0;
}

.trust-sub {
  font-size: 0.88rem;
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.hero-stats > div {
  flex: 1;
  border-radius: 14px;
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.stat-value {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
}

.hero-note {
  font-size: 0.86rem;
  margin-top: 12px;
  border-radius: 14px;
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
}

/* Sections */

.section {
  padding: 56px 0;
}

.section-alt {
  background: #f9fafb;
}

.section-header {
  max-width: 600px;
  margin: 0 auto 26px;
  text-align: center;
}

/* Claim form */

.claim-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: flex-start;
}

.claim-form {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.form-row {
  margin-bottom: 12px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #111827;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid #16a34a;
  border-color: transparent;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

/* Steps */

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

.step-card {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 16px 16px 18px;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.4);
  background: rgba(22, 163, 74, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #166534;
  margin-bottom: 10px;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-top: 40px;
  padding: 32px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 24px;
}

.footer-intro {
  font-size: 0.9rem;
}

.footer-contact a {
  color: #111827;
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-column h4 {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: #111827;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 4px;
}

.footer-column a {
  font-size: 0.85rem;
  color: #6b7280;
  text-decoration: none;
}

.footer-column a:hover {
  color: #111827;
}

.microcopy {
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 16px;
  padding-top: 10px;
}

.footer-legal {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-grid,
  .claim-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    order: -1;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    min-width: 190px;
  }

  .nav-links.open {
    display: flex;
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
