.hero {
  padding: 80px 0 48px;
  position: relative;
  overflow: hidden;
}

/* Grain texture subtile */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ─────────────────────────────────────────
   HERO BENTO — composition 12 colonnes
   ───────────────────────────────────────── */
.hero-bento-section {
  padding: 64px 0 64px;
  position: relative;
}

.hero-mesh {
  position: absolute;
  inset: -10% -5% 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 32%, rgba(111, 132, 153, 0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(200, 178, 122, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 65% 88%, rgba(15, 33, 56, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 12% 92%, rgba(200, 178, 122, 0.08) 0%, transparent 35%);
  filter: blur(48px);
  opacity: 1;
  animation: mesh-drift 24s ease-in-out infinite alternate;
  /* Fade-out doux vers le bas pour transition invisible avec la section suivante */
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
}

@keyframes mesh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2%, 1%, 0) scale(1.06); }
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.bento-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s;
}

/* Tile principale : titre + lead + CTA — 8 col sur desktop */
.bento-main {
  grid-column: span 8;
  padding: 40px 40px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) both;
}

/* Tile latérale : photo + statut — 4 col, span 2 rangées */
.bento-aside {
  grid-column: span 4;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}
.bento-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
}

/* Photo intégrée à la card avail */
.avail-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--surface);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  margin-bottom: 16px;
  display: block;
}

/* Tiles métriques — 4 col chacune, sous le hero bento principal */
.bento-metric {
  grid-column: span 4;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.bento-metric .metric-value {
  font-size: 48px;
}
.bento-metric:nth-child(3) { animation-delay: 0.3s; }
.bento-metric:nth-child(4) { animation-delay: 0.4s; }
.bento-metric:nth-child(5) { animation-delay: 0.5s; }

/* Hover bento métrique : lift et accent */
.bento-metric:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.hero-h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
  font-weight: 700;
  font-variation-settings: "opsz" 144;
}
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.05em;
}

.hero-lead {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 0.8s var(--ease) 0.25s both;
}

/* Availability card — radius-lg pour distinction hero */
.availability-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.availability-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #2db39a);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-meta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 18px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.4s infinite;
  flex-shrink: 0;
}

.avail-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.avail-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-card-compact);
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 400;
}
hr.sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.avail-label {
  font-size: var(--font-size-meta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin-bottom: 10px;
}

/* ==============================================
   METRICS
   ============================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.metric-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--highlight), rgba(176,112,32,0));
  opacity: 0.6;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.metric-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ==============================================
   FEATURED PROJECTS
   ============================================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
}
.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transition: width 0.4s var(--ease);
}
.featured-card:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-light);
  border-color: var(--accent-mid);
}
.featured-card:hover::before {
  width: 100%;
}
.featured-card:hover h3 {
  color: var(--accent);
}
.featured-card h3 {
  transition: color 0.25s var(--ease);
}

.featured-card h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.featured-card p {
  color: var(--muted);
  font-size: var(--font-size-card);
  line-height: var(--line-card);
  font-weight: 400;
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

/* ==============================================
   Section
   ============================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-mid), transparent);
}

.t-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 20px;
}
.t-item:last-child { padding-bottom: 0; }

.t-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent-mid);
  margin-top: 3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.t-item:last-child .t-dot {
  background: var(--accent);
  border-color: var(--accent);
}

.t-title {
  font-family: var(--font-display);
  font-size: var(--font-size-card);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.t-desc {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

/* ==============================================
   FEATURE PILLS (1, 2, 3)
   ============================================== */
.icon-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  line-height: 1;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
}
.feature-card p {
  font-size: var(--font-size-card-compact);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 10px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--border-strong) 70%, transparent);
}

.method-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.method-item-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 40px;
}

.method-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  align-self: center;
}

.method-item .icon-pill {
  flex-shrink: 0;
  align-self: center;
}

.method-item p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38ch;
}

/* ==============================================
   Section
   ============================================== */

.metric-card[data-spark] {
  position: relative;
}

.metric-card[data-spark] .metric-value {
  margin-bottom: 4px;
}

.sparkline-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 38px;
  margin: 6px 0 14px;
}

.sparkline {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.95;
}

.sparkline-path {
  fill: none;
  stroke: var(--highlight);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s var(--ease);
  filter: drop-shadow(0 1px 0 color-mix(in srgb, var(--highlight) 40%, transparent));
}

.sparkline-wrap.is-visible .sparkline-path {
  stroke-dashoffset: 0;
}

.sparkline-area {
  /* fill défini inline dans le SVG via url(#spark-grad-N) */
  opacity: 0;
  transition: opacity 1.4s var(--ease) 0.2s;
}

.sparkline-wrap.is-visible .sparkline-area {
  opacity: 1;
}

/* Dot rendu en CSS positionné en % (cercle parfait, indépendant du
   stretch SVG non-uniforme) */
.sparkline-dot {
  position: absolute;
  left: 98%;
  top: 10%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--highlight);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease) 1.4s;
  box-shadow: 0 0 6px color-mix(in srgb, var(--highlight) 60%, transparent);
}

.sparkline-wrap.is-visible .sparkline-dot {
  opacity: 1;
}

/* Variante teal pour les KPI "stabilité" / "0 bug" */
.metric-card[data-spark="stability"] .sparkline-path {
  stroke: var(--accent);
  filter: drop-shadow(0 1px 0 color-mix(in srgb, var(--accent) 40%, transparent));
}
.metric-card[data-spark="stability"] .sparkline-dot {
  top: 63%;
  background: var(--accent);
  box-shadow: 0 0 6px color-mix(in srgb, var(--accent) 60%, transparent);
}

/* Sur écrans étroits, on réduit la hauteur */
@media (max-width: 600px) {
  .sparkline-wrap { height: 30px; margin: 4px 0 10px; }
}

/* ==============================================
   Preuves sociales
   ============================================== */

.clients-strip {
  padding: 28px 0 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.clients-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.clients-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  flex-shrink: 0;
}
.clients-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.clients-link {
  display: inline-flex;
  align-items: center;
  padding-left: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.15s;
}
.clients-link:hover { color: var(--accent-strong); }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.client-pill {
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  user-select: none;
}
.client-pill:hover {
  color: var(--text);
  border-color: var(--accent-mid);
  background: var(--accent-light);
}

@media (max-width: 700px) {
  .clients-strip { padding: 24px 0 20px; }
  .clients-grid { gap: 8px; }
  .client-pill { padding: 6px 12px; font-size: 12px; }
  .clients-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .clients-divider { display: none; }
  .clients-link { align-self: flex-end; }
}

/* ==============================================
   IA APPLIQUÉE — bloc différenciation homepage
   ============================================== */
.ai-practice {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, var(--accent-light) 30%, var(--accent-light) 70%, transparent 100%);
}
.ai-practice-head {
  max-width: 720px;
  margin-bottom: 32px;
}
.ai-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.ai-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--highlight));
  transition: width 0.4s var(--ease);
}
.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-light);
  border-color: var(--accent-mid);
}
.ai-card:hover::before {
  width: 100%;
}
.ai-card-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  flex-shrink: 0;
}
.ai-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.ai-card p {
  color: var(--muted);
  font-size: var(--font-size-card);
  line-height: var(--line-card);
  flex: 1;
  margin: 0;
}
.ai-card-gain {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--on-accent);
  font-size: var(--font-size-meta);
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: flex-start;
  background: transparent !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .ai-practice-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   Section
   ============================================== */

/* ── HERO BENTO : dark cohérent ── */
.bento-tile {
  background: var(--surface) !important;
  border: 0.5px solid var(--rule) !important;
  box-shadow: none !important;
  color: var(--text);
}
.bento-tile:hover { box-shadow: none; transform: none; }

.hero-h1 {
  font-family: var(--font-display) !important;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
}
.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.hero-lead {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.bento-metric .metric-value,
.metric-value {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-weight: 500;
  color: var(--accent) !important;
  letter-spacing: -0.02em;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--subtle);
  line-height: 1.5;
}

/* ── Cards génériques ── */
.card {
  background: var(--surface) !important;
  border: 0.5px solid var(--rule) !important;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
}

/* ── AI cards : retirer le pill rond, look éditorial ── */
.ai-card {
  background: var(--surface) !important;
  border: 0.5px solid var(--rule) !important;
  box-shadow: none !important;
}
.ai-card::before { display: none !important; }
.ai-card-gain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 0.5px solid var(--rule);
  padding-top: 10px;
  margin-top: 14px;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
}

/* ── Feature cards (méthode, what I bring) ── */

/* ── Featured cards (home) ── */
.featured-card {
  background: var(--surface) !important;
  border: 0.5px solid var(--rule) !important;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
}
.featured-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

/* ── Sector pills (marquee) ── */
.sector-pill {
  background: var(--surface) !important;
  border: 0.5px solid var(--rule) !important;
  box-shadow: none !important;
}
.sector-pill h3 {
  font-family: var(--font-display);
  font-weight: 500;
}
.sector-pill p {
  font-family: var(--font-display);
  color: var(--muted);
}

/* ── Client pills (preuves sociales) ── */
.client-pill {
  background: transparent !important;
  border: 0.5px solid var(--rule) !important;
  color: var(--text) !important;
  font-family: var(--font-display) !important;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.client-pill:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* ── Status indicator (en recherche active) ── */
.status-indicator {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.status-dot {
  background: var(--accent) !important;
}

/* ── Avail card sur la home ── */
.avail-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
}
.avail-detail,
.avail-label {
  font-family: var(--font-display);
  color: var(--muted);
  font-style: italic;
  font-size: var(--font-size-card-compact);
}

/* ── Hero mesh : retirer le glow vert qui était fait pour le light mode ── */
.hero-mesh { opacity: 0.4 !important; }

/* ── Hero bento : retirer l'épaisseur / ombre SaaS ── */
.hero-bento-section {
  background: transparent !important;
}
.hero-mesh {
  display: none !important; /* on retire ce mesh décoratif, pas dans l'esprit DS */
}
.bento-main {
  background: transparent !important;
  border: none !important;
}

/* ── Cards features (parcours / méthode home) ── */
.grid-features { gap: 18px !important; }

@media (max-width: 1024px) {
  .hero-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }
  .bento-main {
    grid-column: span 6;
  }
  .bento-aside {
    grid-column: span 6;
    grid-row: auto;
  }
  .bento-metric {
    grid-column: span 2;
    padding: 22px 16px;
  }
  .bento-metric .metric-value {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .metrics-grid,
  .featured-grid,
  .ai-practice-grid {
    grid-template-columns: 1fr;
  }
  .method-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .method-item-head {
    grid-column: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
  }
  .method-item .icon-pill,
  .method-item h3,
  .method-item p {
    grid-column: auto;
  }
  .grid-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bento-main,
  .bento-aside,
  .bento-metric {
    grid-column: auto;
  }
  .bento-main {
    padding: 28px 22px;
  }
  .bento-aside,
  .availability-card {
    padding: 22px 20px;
  }
  .bento-metric {
    padding: 20px;
  }
  .bento-metric .metric-value {
    font-size: 40px;
  }
  .method-item {
    padding: 16px 0;
  }
  .method-item h3 {
    font-size: 20px;
  }
  .method-item p {
    max-width: none;
  }
  .grid-features {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .hero-badges {
    width: 100%;
  }
}
