:root{
  --hf-bg: #f6f1eb;
  --hf-surface: rgba(255,255,255,0.78);
  --hf-card: #ffffff;
  --hf-text: #1f1a17;
  --hf-muted: #6f6257;
  --hf-accent: #8a5a44;
  --hf-accent-dark: #6d4330;
  --hf-border: rgba(138, 90, 68, 0.14);
  --hf-shadow: 0 18px 50px rgba(54, 35, 24, 0.12);
  --hf-radius: 24px;
  --hf-max: 1200px;
}

* { box-sizing: border-box; }

body {
  color: var(--hf-text);
}

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

.hf-hero{
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.75), transparent 35%),
    linear-gradient(135deg, #f8f4ef 0%, #efe5db 100%);
}

.hf-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(138,90,68,0.10), transparent 22%),
    radial-gradient(circle at 15% 80%, rgba(138,90,68,0.08), transparent 18%);
  pointer-events: none;
}

.hf-hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.hf-badge,
.hf-kicker,
.hf-card__eyebrow{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(138,90,68,0.10);
  color: var(--hf-accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hf-hero h1{
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hf-hero h1 span{
  color: var(--hf-accent-dark);
}

.hf-subline{
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--hf-muted);
  margin-bottom: 22px;
}

.hf-benefits{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.hf-benefits li{
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.hf-benefits li::before{
  content: "•";
  position: absolute;
  left: 8px;
  top: -1px;
  color: var(--hf-accent);
  font-size: 1.35rem;
  font-weight: 700;
}

.hf-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: 220ms ease;
  border: 1px solid transparent;
}

.hf-btn--primary{
  background: var(--hf-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(138,90,68,0.18);
}

.hf-btn--primary:hover{
  background: var(--hf-accent-dark);
  transform: translateY(-1px);
}

.hf-btn--ghost{
  background: rgba(255,255,255,0.65);
  color: var(--hf-text);
  border-color: rgba(31,26,23,0.08);
}

.hf-btn--ghost:hover{
  background: #fff;
}

.hf-btn--full{
  width: 100%;
}

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

.hf-proof{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
}

.hf-proof strong{
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.hf-proof span{
  display: block;
  color: var(--hf-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hf-card{
  background: var(--hf-card);
  border: 1px solid var(--hf-border);
  border-radius: var(--hf-radius);
  padding: 28px;
  box-shadow: var(--hf-shadow);
}

.hf-card h2{
  margin: 14px 0 12px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.hf-card__text{
  color: var(--hf-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.hf-form{
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.hf-label{
  font-weight: 600;
  font-size: 0.95rem;
}

.hf-input{
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(31,26,23,0.14);
  font-size: 1rem;
  outline: none;
}

.hf-input:focus{
  border-color: var(--hf-accent);
  box-shadow: 0 0 0 4px rgba(138,90,68,0.10);
}

.hf-small{
  font-size: 0.86rem;
  color: var(--hf-muted);
  line-height: 1.5;
}

.hf-pains{
  padding: 48px 0 84px;
  background: #fffdfb;
}

.hf-section-head{
  max-width: 760px;
  margin-bottom: 28px;
}

.hf-section-head h2{
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.12;
  margin: 14px 0 12px;
}

.hf-section-head p{
  color: var(--hf-muted);
  line-height: 1.7;
}

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

.hf-pain-card{
  background: #fff;
  border: 1px solid rgba(31,26,23,0.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(31,26,23,0.04);
}

.hf-pain-card h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hf-pain-card p{
  margin: 0;
  color: var(--hf-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

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

  .hf-proofbar,
  .hf-pain-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .hf-hero{
    padding-top: 56px;
  }

  .hf-proofbar,
  .hf-pain-grid{
    grid-template-columns: 1fr;
  }

  .hf-card{
    padding: 22px;
  }

  .hf-hero__actions{
    flex-direction: column;
  }

  .hf-btn{
    width: 100%;
  }
}