.hero{
  position:relative;
  overflow:hidden;
  padding:112px 0 96px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-220px -160px auto auto;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(199,154,59,.24), rgba(199,154,59,0) 70%);
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto auto -260px -180px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(8,8,8,.10), rgba(8,8,8,0) 70%);
  pointer-events:none;
}

.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:64px;
  align-items:center;
}

.hero__content{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.hero__eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:8px 14px;
  border:1px solid rgba(184,135,47,.28);
  border-radius:999px;
  background:rgba(255,250,240,.82);
  color:#8a6423;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.hero__title{
  max-width:880px;
  font-size:clamp(2.9rem, 6vw, 5rem);
  line-height:.98;
  letter-spacing:-.06em;
  color:#080808;
}

.hero__description{
  max-width:700px;
  font-size:1.13rem;
  line-height:1.75;
  color:var(--color-text-soft);
}

.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:4px;
}

.hero__trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

.hero__trust span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border:1px solid rgba(184,135,47,.18);
  border-radius:999px;
  background:rgba(255,255,255,.76);
  box-shadow:0 8px 24px rgba(8,8,8,.05);
  color:#3f3a32;
  font-size:.88rem;
  font-weight:700;
}

.hero__trust span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#b8872f;
}

.hero__card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,250,240,.90));
  border:1px solid rgba(184,135,47,.20);
  border-radius:30px;
  box-shadow:0 28px 80px rgba(8,8,8,.16), 0 1px 0 rgba(255,255,255,.9) inset;
  overflow:hidden;
  backdrop-filter:blur(18px);
}

.hero__card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(199,154,59,.18), rgba(199,154,59,0) 40%);
  pointer-events:none;
}

.hero__card-header{
  position:relative;
  padding:26px 28px 20px;
  border-bottom:1px solid rgba(184,135,47,.18);
}

.hero__card-header h3{
  font-size:1.2rem;
  letter-spacing:-.02em;
  color:#111;
}

.hero__card-body{
  position:relative;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contract-preview-step{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px;
  border:1px solid rgba(184,135,47,.16);
  border-radius:18px;
  background:rgba(255,255,255,.74);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contract-preview-step:hover{
  transform:translateY(-3px);
  border-color:rgba(184,135,47,.35);
  box-shadow:0 16px 36px rgba(8,8,8,.09);
}

.contract-preview-step__number{
  flex:0 0 auto;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#111;
  color:#d7b061;
  font-weight:800;
}

.contract-preview-step strong{
  display:block;
  margin-bottom:4px;
  color:#111;
  letter-spacing:-.01em;
}

.contract-preview-step span{
  display:block;
  color:var(--color-text-soft);
  font-size:.92rem;
  line-height:1.55;
}

.features{
  padding:96px 0;
}

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 58px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.section-heading h2{
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.08;
  letter-spacing:-.045em;
  color:#080808;
}

.section-heading p{
  max-width:720px;
  color:var(--color-text-soft);
  line-height:1.75;
}

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

.feature-card{
  position:relative;
  overflow:hidden;
  min-height:250px;
  background:#fffdf8;
  border:1px solid rgba(184,135,47,.18);
  border-radius:26px;
  padding:30px;
  box-shadow:0 18px 46px rgba(8,8,8,.055);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card::after{
  content:"";
  position:absolute;
  inset:auto -80px -120px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(199,154,59,.10);
}

.feature-card:hover{
  transform:translateY(-7px);
  border-color:rgba(184,135,47,.36);
  box-shadow:0 26px 70px rgba(8,8,8,.11);
}

.feature-card__icon{
  width:54px;
  height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#111;
  color:#d7b061;
  font-size:.92rem;
  font-weight:800;
  margin-bottom:24px;
}

.feature-card h3{
  margin-bottom:12px;
  font-size:1.2rem;
  letter-spacing:-.025em;
  color:#111;
}

.feature-card p{
  position:relative;
  z-index:1;
  color:var(--color-text-soft);
  line-height:1.7;
}

.categories{
  padding:96px 0;
  background:linear-gradient(180deg, rgba(247,243,235,0), rgba(238,228,208,.65));
}

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

.category-card{
  position:relative;
  overflow:hidden;
  background:#fffdf8;
  border:1px solid rgba(184,135,47,.18);
  border-radius:26px;
  padding:30px;
  box-shadow:0 18px 46px rgba(8,8,8,.05);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card:hover{
  transform:translateY(-6px);
  border-color:rgba(184,135,47,.36);
  box-shadow:0 28px 80px rgba(8,8,8,.11);
}

.category-card span{
  display:inline-flex;
  margin-bottom:14px;
  color:#8a6423;
  font-size:.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.category-card h3{
  margin-bottom:12px;
  font-size:1.35rem;
  letter-spacing:-.035em;
  color:#111;
}

.category-card p{
  color:var(--color-text-soft);
  line-height:1.7;
}

.cta{
  padding:96px 0;
}

.cta-card{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(215,176,97,.28), transparent 34%),
    linear-gradient(135deg, #080808, #181818 55%, #3a2a11);
  color:#fff;
  border-radius:34px;
  padding:64px 48px;
  text-align:center;
  box-shadow:0 34px 90px rgba(8,8,8,.28);
}

.cta-card::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(215,176,97,.22);
  border-radius:26px;
  pointer-events:none;
}

.cta-card .section-kicker{
  margin:0 auto 18px;
  background:rgba(215,176,97,.12);
  border-color:rgba(215,176,97,.28);
  color:#f7dfaa;
}

.cta-card h2{
  position:relative;
  z-index:1;
  max-width:860px;
  margin:0 auto 18px;
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  line-height:1.08;
  letter-spacing:-.045em;
}

.cta-card p{
  position:relative;
  z-index:1;
  max-width:700px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.78);
  line-height:1.75;
}

.cta-card .button{
  position:relative;
  z-index:1;
}

.footer{
  border-top:1px solid var(--color-border);
  padding:34px 0;
  background:#fffdf8;
}

.footer__content{
  display:grid;
  grid-template-columns:1fr auto 1.3fr auto;
  gap:22px;
  align-items:center;
}

.footer__content p{
  color:var(--color-text-soft);
  font-size:.9rem;
}

.footer__content a{
  color:#111;
  font-weight:800;
}

@media (max-width:1024px){
  .hero{
    padding:84px 0 64px;
  }

  .hero__grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .features-grid,
  .categories-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer__content{
    grid-template-columns:1fr;
    text-align:center;
  }
}

@media (max-width:768px){
  .hero{
    padding:64px 0 44px;
  }

  .hero__title{
    font-size:clamp(2.35rem, 12vw, 3.25rem);
  }

  .hero__description{
    font-size:1rem;
  }

  .hero__actions{
    flex-direction:column;
  }

  .hero__actions .button{
    width:100%;
  }

  .hero__trust{
    flex-direction:column;
  }

  .hero__trust span{
    width:100%;
    justify-content:center;
  }

  .features,
  .categories,
  .cta{
    padding:64px 0;
  }

  .features-grid,
  .categories-grid{
    grid-template-columns:1fr;
  }

  .feature-card,
  .category-card{
    padding:24px;
  }

  .cta-card{
    padding:44px 24px;
    border-radius:26px;
  }
}
