/* ================================================================
   HARDHAND — Landing Page Hi-Fi
   Design : industriel / chantier, noir + jaune #F5C518, bold.
   ================================================================ */

/* ---- tokens ---- */
:root {
  --hh-yellow:       #F5C518;
  --hh-yellow-dk:    #c49a0e;
  --hh-yellow-lt:    #ffe566;
  --hh-black:        #0f0e0b;
  --hh-anthracite:   #1a1815;
  --hh-dark:         #22201a;
  --hh-dark-2:       #2c2a22;
  --hh-mid:          #3a3830;
  --hh-border:       #4e4c42;
  --hh-muted:        #7a7568;
  --hh-on-dark:      #ddd9d0;
  --hh-on-dark-sub:  #a09b90;
  --hh-light-bg:     #f0ece3;
  --hh-light-2:      #e3dfd6;
  --hh-on-light:     #1a180e;

  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --hazard-h: 14px;
  --hazard: repeating-linear-gradient(
    -45deg,
    var(--hh-yellow) 0 14px,
    #0a0a08 14px 28px
  );

  --max-w: 1180px;
  --gutter: max(20px, 5vw);
  --sec-v: 88px;

  --r-sm:   4px;
  --r-md:   6px;
  --r-chip: 3px;

  --sh-card: 0 4px 20px rgba(0,0,0,.35);
  --sh-btn:  4px 4px 0 rgba(0,0,0,.7);

  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--hh-anthracite);
  color: var(--hh-on-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- typography helpers ---- */
.hh-display {
  font-family: var(--font-display);
  font-weight: 400;          /* Bebas has no weight axis */
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.hh-cond {
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hh-kicker {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hh-yellow);
}
.hh-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: var(--hh-on-dark-sub);
  max-width: 54ch;
}
.hh-on-light .hh-sub { color: #6a6558; }

/* ---- layout ---- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sec {
  padding-block: var(--sec-v);
}
.sec--light { background: var(--hh-light-bg); color: var(--hh-on-light); }
.sec--dark  { background: var(--hh-dark); }
.sec--black { background: var(--hh-black); }
.sec--mid   { background: var(--hh-dark-2); }

.grid { display: grid; }
.g-2 { grid-template-columns: 1fr 1fr; }
.g-3 { grid-template-columns: 1fr 1fr 1fr; }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }

/* ---- hazard band ---- */
.hazard {
  height: var(--hazard-h);
  background: var(--hazard);
  border-block: 2px solid #0a0a08;
  flex: none;
}
.hazard--thick { --hazard-h: 22px; }
.hazard--thin  { --hazard-h: 10px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  min-height: 52px;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .1s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--hh-yellow);
  color: #0f0e0b;
  box-shadow: var(--sh-btn);
}
.btn--primary:hover  { background: var(--hh-yellow-lt); transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.7); }
.btn--primary:active { transform: translate(1px,1px); box-shadow: 2px 2px 0 rgba(0,0,0,.7); }
.btn--outline {
  background: transparent;
  border-color: var(--hh-on-dark);
  color: var(--hh-on-dark);
}
.btn--outline:hover { border-color: var(--hh-yellow); color: var(--hh-yellow); }
.btn--sm { font-size: 15px; padding: 10px 18px; min-height: 42px; }
.btn:disabled { opacity: .6; cursor: progress; transform: none; box-shadow: var(--sh-btn); }

/* ---- chips / tags ---- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid var(--hh-border);
  border-radius: var(--r-chip);
  padding: 7px 14px;
  color: var(--hh-on-dark);
}
.chip--yellow { border-color: var(--hh-yellow); color: var(--hh-yellow); }
.chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hh-yellow); }

/* ---- section label ---- */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hh-yellow);
  margin-bottom: 20px;
}
.sec-label::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--hh-yellow);
  flex: none;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--hh-black);
  border-bottom: 2px solid var(--hh-border);
  transition: border-color .3s;
}
.site-header.scrolled { border-bottom-color: var(--hh-yellow); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: .04em;
  color: #fff;
  flex: none;
}
.site-logo .dot { color: var(--hh-yellow); }

.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-nav a {
  color: var(--hh-on-dark-sub);
  transition: color .15s;
}
.site-nav a:hover { color: var(--hh-yellow); }

.site-header__ctas { display: flex; gap: 10px; align-items: center; flex: none; }

@media (max-width: 860px) { .site-nav { display: none; } }
@media (max-width: 640px) { .site-header__ctas .btn--outline { display: none; } }

/* ================================================================
   HERO — split
   ================================================================ */
.hero {
  background: var(--hh-anthracite);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* concrete noise overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero__body {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding-block: 64px 56px;
}
@media (min-width: 860px) {
  .hero__body { grid-template-columns: 55fr 45fr; gap: 48px; }
}

.hero__text { display: flex; flex-direction: column; gap: 20px; }

.hero__title {
  font-size: clamp(68px, 10vw, 130px);
  color: #fff;
  margin: 0;
}
.hero__title .accent { color: var(--hh-yellow); }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.hero__img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.55));
  transform: rotate(1.5deg);
  transition: transform .4s var(--ease);
}
.hero__img:hover { transform: rotate(0deg) scale(1.02); }

/* diagonal yellow accent behind image */
.hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,197,24,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================================
   PRODUIT — fiche technique
   ================================================================ */
.produit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 720px) {
  .produit__grid { grid-template-columns: 1fr 1fr; }
}

.produit__desc { display: flex; flex-direction: column; gap: 18px; }
.produit__title {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--hh-on-light);
  margin: 0;
}
.produit__body {
  font-size: 16px;
  line-height: 1.7;
  color: #6a6558;
}

.spec-table { display: flex; flex-direction: column; border: 2px solid var(--hh-light-2); border-radius: var(--r-md); overflow: hidden; }
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hh-light-2);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: #fff; }
.spec-row__k {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hh-on-light);
}
.spec-row__v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--hh-on-light);
  letter-spacing: .04em;
}
.spec-row__v.accent { color: #8a6d00; }

/* key pictos row */
.pictos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.picto {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px solid var(--hh-light-2);
  border-radius: var(--r-md);
  flex: 1;
  min-width: 160px;
  transition: border-color .15s, box-shadow .15s;
}
.picto:hover { border-color: var(--hh-yellow); box-shadow: 0 4px 16px rgba(245,197,24,.15); }
.picto__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--hh-on-light);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.picto__icon svg { width: 22px; height: 22px; color: var(--hh-yellow); }
.picto__info { display: flex; flex-direction: column; gap: 2px; }
.picto__val {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--hh-on-light);
}
.picto__lbl {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a6558;
}

/* ================================================================
   BÉNÉFICES — 2×2 dark
   ================================================================ */
.benefit-card {
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, background .2s;
}
.benefit-card:hover { border-color: var(--hh-yellow); background: var(--hh-dark-2); }

.benefit-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--hh-yellow);
  opacity: .25;
  margin-bottom: -8px;
}
.benefit-card__title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.benefit-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hh-on-dark-sub);
}

/* ================================================================
   COMMENT ÇA MARCHE — steps
   ================================================================ */
.steps { display: flex; flex-wrap: wrap; gap: 0; align-items: stretch; }
.step {
  flex: 1;
  min-width: 220px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 2px solid var(--hh-border);
}
.step:last-child { border-right: none; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--hh-yellow);
  color: var(--hh-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  flex: none;
}
.step__title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.step__body { font-size: 14px; line-height: 1.6; color: var(--hh-on-dark-sub); }

/* ================================================================
   POUR QUI
   ================================================================ */
.trade-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trade-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--hh-on-dark);
  transition: border-color .15s, color .15s;
}
.trade-tag:hover { border-color: var(--hh-yellow); color: var(--hh-yellow); }
.trade-tag__icon { font-size: 20px; }

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}

.form-card {
  background: var(--hh-dark);
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hh-on-dark-sub);
}
.form-label .req { color: var(--hh-yellow); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  background: var(--hh-dark-2);
  border: 2px solid var(--hh-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--hh-on-dark);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--hh-yellow);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--hh-muted); }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: "▾";
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--hh-muted); pointer-events: none;
  font-size: 13px;
}

/* inline validation error */
.form-error {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(186,26,26,.15);
  border: 1.5px solid rgba(186,26,26,.5);
  border-radius: var(--r-sm);
  color: #ff8a80;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.form-error[hidden] { display: none; }

/* confirm message */
.form-confirm {
  text-align: center;
  padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.form-confirm[hidden] { display: none; }
.form-confirm__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--hh-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--hh-black);
}
.form-confirm__title { font-family: var(--font-display); font-size: 32px; color: #fff; letter-spacing: .04em; }
.form-confirm__sub { color: var(--hh-on-dark-sub); font-size: 15px; max-width: 40ch; line-height: 1.6; }

/* contact info sidebar */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-info-card__title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hh-yellow);
  margin-bottom: 4px;
}
.contact-info-card__line { font-size: 15px; color: var(--hh-on-dark-sub); line-height: 1.5; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--hh-black);
  border-top: 2px solid var(--hh-border);
  padding-block: 48px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__logo { font-family: var(--font-display); font-size: 32px; color: #fff; }
.footer__logo .dot { color: var(--hh-yellow); }
.footer__tagline { font-size: 14px; color: var(--hh-muted); margin-top: 6px; max-width: 28ch; line-height: 1.5; }
.footer__col-title {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hh-on-dark);
  margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 14px; color: var(--hh-muted); transition: color .15s; }
.footer__links a:hover { color: var(--hh-yellow); }
.footer__bottom {
  border-top: 1px solid var(--hh-border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--hh-muted);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ================================================================
   RESPONSIVE tweaks
   ================================================================ */
@media (max-width: 600px) {
  :root { --sec-v: 56px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step { border-right: none; border-bottom: 2px solid var(--hh-border); }
  .step:last-child { border-bottom: none; }
  .form-card { padding: 24px 18px; }
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.ann-bar {
  background: var(--hh-yellow);
  color: var(--hh-black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  height: 40px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.ann-bar__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  animation: ann-scroll 22s linear infinite;
}
@media (min-width: 860px) {
  .ann-bar__track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .ann-bar__track [aria-hidden="true"] { display: none; }
}
.ann-sep { color: rgba(0,0,0,.35); }
@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* keep sticky header below ann-bar */
.site-header { top: 40px; }

/* ================================================================
   HERO — social proof strip
   ================================================================ */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding: 12px 16px;
  border: 1.5px solid rgba(245,197,24,.22);
  border-radius: var(--r-md);
  background: rgba(245,197,24,.04);
}
.hero__proof-icons {
  display: flex;
}
.hero__proof-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hh-dark-2);
  border: 2px solid var(--hh-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.hero__proof-icon + .hero__proof-icon { margin-left: -8px; }
.hero__proof-text {
  font-size: 13px;
  color: var(--hh-on-dark-sub);
  line-height: 1.4;
}
.hero__proof-text strong { color: var(--hh-yellow); font-weight: 700; }

/* mobile: image before text */
@media (max-width: 859px) {
  .hero__img-wrap { order: -1; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s;
}
.testi-card:hover { border-color: var(--hh-yellow); }
.testi-openquote {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: .8;
  color: var(--hh-yellow);
  margin-bottom: -4px;
}
.testi-quote {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--hh-on-dark);
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--hh-border);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--hh-yellow);
  color: var(--hh-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  flex: none;
}
.testi-meta { display: flex; flex-direction: column; gap: 2px; }
.testi-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.testi-role { font-size: 12px; color: var(--hh-muted); }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}
.price-card {
  border: 2px solid var(--hh-border);
  border-radius: var(--r-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--hh-dark);
  transition: border-color .2s, transform .2s;
  position: relative;
}
.price-card:hover { border-color: rgba(245,197,24,.5); transform: translateY(-3px); }
.price-card--featured { border-color: var(--hh-yellow); background: var(--hh-dark-2); }
.price-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--hh-yellow);
  color: var(--hh-black);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 3px;
  white-space: nowrap;
}
.price-card__tier {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hh-yellow);
}
.price-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  color: #fff;
  line-height: 1;
  margin: 0;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 58px);
  color: var(--hh-yellow);
  line-height: 1;
}
.price-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price-card__currency {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 18px;
  color: var(--hh-on-dark-sub);
  align-self: flex-start;
  margin-top: 8px;
}
.price-card__unit { font-size: 13px; color: var(--hh-muted); align-self: flex-end; padding-bottom: 6px; }
.price-card__desc { font-size: 14px; color: var(--hh-on-dark-sub); line-height: 1.6; }
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--hh-on-dark);
  line-height: 1.4;
}
.price-feature__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(245,197,24,.12);
  border: 1.5px solid var(--hh-yellow);
  flex: none;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.price-feature__check svg { width: 10px; height: 10px; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--hh-muted);
  margin-top: 24px;
  line-height: 1.6;
}

/* ================================================================
   REASSURANCE BADGES
   ================================================================ */
.reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.reassurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid var(--hh-border);
  border-radius: 100px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hh-on-dark-sub);
  background: var(--hh-dark);
}
.reassurance-badge svg {
  width: 15px; height: 15px;
  color: var(--hh-yellow);
  flex: none;
}
