/* ==========================================================================
   ESPOOO — homepage sections
   ========================================================================== */

/* --- Brand corner motif (purple wedge + translucent hill, from the identity) --- */
.motif {
  position: absolute; inset-inline-end: 0; bottom: 0; z-index: 0;
  width: clamp(14rem, 30vw, 30rem); height: auto; pointer-events: none; opacity: .95;
}
html[dir="ltr"] .motif { transform: none; }
html[dir="rtl"] .motif { transform: scaleX(-1); }
.motif--faint { opacity: .55; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 5vw, 7rem) clamp(4rem, 3rem + 5vw, 8rem);
  background:
    radial-gradient(60rem 30rem at 100% 0%, rgba(124, 58, 237, .07), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--off) 100%);
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2.5rem, 2rem + 3vw, 6rem); align-items: center; }
.hero-copy { max-width: 38rem; }
.hero-descriptor { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-en); font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--fg-muted); margin-bottom: var(--sp-6); direction: ltr; }
.hero-descriptor::before { content: ""; width: 1.75rem; height: 2px; background: var(--grad-accent); border-radius: 2px; }
html[dir="rtl"] .hero-descriptor { flex-direction: row-reverse; }
.hero .display { margin-bottom: var(--sp-6); }
.hero .display span { display: block; }
.hero .display .display-b { color: var(--fg-muted); font-weight: var(--fw-medium); }
html[lang="ar"] .hero .display .display-b { font-weight: var(--fw-medium); }
.hero .lead { margin-bottom: var(--sp-8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Stack diagram ------------------------------------------------------------- */
.stack { position: relative; display: grid; gap: 0; max-width: 32rem; margin-inline: auto; }
.stack-layer {
  position: relative; border-radius: var(--r-lg); padding: 1.1rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-lg);
}
.stack-layer__label { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: var(--fs-xs); color: var(--fg-subtle); margin-bottom: .75rem; }
.stack-layer__label strong { font-size: var(--fs-small); color: var(--fg); font-weight: var(--fw-semibold); }
.stack-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; }
.stack-tile {
  display: flex; align-items: center; gap: .5rem; min-width: 0; min-height: 2.5rem; padding: .45rem .6rem;
  border-radius: var(--r-sm); background: var(--off); border: 1px solid var(--line-soft);
  font-family: var(--font-en); font-size: .74rem; font-weight: var(--fw-medium); color: var(--navy-800); direction: ltr; text-align: left;
}
.stack-tile .icon { width: .95rem; height: .95rem; color: var(--accent); }
.stack-tile span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.stack-layer--core {
  background: var(--grad-accent); color: var(--white); border-color: transparent; box-shadow: var(--shadow-purple);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem;
}
.stack-layer--core .stack-core__name { font-family: var(--font-en); font-weight: var(--fw-semibold); font-size: 1.05rem; direction: ltr; }
.stack-layer--core .stack-core__sub { font-size: var(--fs-xs); opacity: .9; margin-top: .15rem; }
.stack-core__mark { flex: none; width: 2.6rem; height: 2.6rem; }

.stack-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.stack-chip { padding: .35rem .7rem; border-radius: var(--r-pill); border: 1px solid var(--border); background: var(--white); font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--navy-700); }

/* connectors between layers */
.stack-link { position: relative; height: 2.25rem; }
.stack-link::before { content: ""; position: absolute; inset-block: 0; left: 50%; width: 1px; background: repeating-linear-gradient(180deg, var(--purple-500) 0 4px, transparent 4px 8px); opacity: .7; }
.stack-link::after { content: ""; position: absolute; left: 50%; top: 0; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(34, 211, 238, .18); opacity: 0; }
.stack-link .stack-link__side { position: absolute; inset-block: 0; width: 1px; background: var(--line); }
.stack-link .stack-link__side:nth-child(1) { left: 22%; }
.stack-link .stack-link__side:nth-child(2) { left: 78%; }
.stack-link--up::after { animation: pulse-down var(--dur-slow) var(--ease-out) 1.1s 1 both; }
.stack-link--down::after { animation: pulse-up var(--dur-slow) var(--ease-out) 1.4s 1 both; }
@keyframes pulse-down { 0% { opacity: 0; transform: translateY(0); } 15% { opacity: 1; } 100% { opacity: 0; transform: translateY(2.25rem); } }
@keyframes pulse-up { 0% { opacity: 0; transform: translateY(2.25rem); } 15% { opacity: 1; } 100% { opacity: 0; transform: translateY(0); } }

/* single orchestrated entrance */
.js .hero-copy > * { opacity: 0; transform: translateY(12px); animation: rise var(--dur-slow) var(--ease-out) forwards; }
.js .hero-copy > :nth-child(1) { animation-delay: .05s; }
.js .hero-copy > :nth-child(2) { animation-delay: .15s; }
.js .hero-copy > :nth-child(3) { animation-delay: .25s; }
.js .hero-copy > :nth-child(4) { animation-delay: .35s; }
.js .stack-layer { opacity: 0; transform: translateY(16px); animation: rise var(--dur-slow) var(--ease-out) forwards; }
.js .stack-layer:nth-of-type(1) { animation-delay: .5s; }
.js .stack-layer:nth-of-type(3) { animation-delay: .65s; }
.js .stack-layer:nth-of-type(5) { animation-delay: .8s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 1023px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-copy { max-width: 40rem; }
  .stack { max-width: 34rem; margin-inline: 0; }
}
@media (max-width: 479px) {
  .stack-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stack-tile span { white-space: normal; line-height: 1.2; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 6rem); align-items: start; }
.about-grid .h2 { margin-bottom: var(--sp-5); }
.about-grid p { color: var(--fg-muted); font-size: var(--fs-lead); }
.about-why { padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); border-radius: var(--r-lg); background: var(--off); border: 1px solid var(--line-soft); }
.about-why .h3 { margin-bottom: var(--sp-3); }
.about-why p { font-size: var(--fs-body); }
.about-points { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.about-points li { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--fs-body); color: var(--fg); }
.about-points .icon { width: 1.25rem; height: 1.25rem; color: var(--accent); margin-top: .2em; }
@media (max-width: 1023px) { .about-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   AUDIENCES
   ========================================================================== */
.aud-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.aud-item { position: relative; display: grid; gap: var(--sp-4); align-content: start; padding: clamp(1.25rem, 1rem + .8vw, 1.75rem) clamp(1rem, .8rem + .6vw, 1.5rem); background: var(--white); transition: background-color var(--dur) var(--ease-out); }
.aud-item:hover { background: var(--accent-soft); }
.aud-item .icon-badge { width: 2.75rem; height: 2.75rem; background: var(--off); color: var(--navy-900); transition: background-color var(--dur), color var(--dur); }
.aud-item:hover .icon-badge { background: var(--white); color: var(--accent); }
.aud-item h3 { font-size: 1.0625rem; font-weight: var(--fw-semibold); }
.aud-item p { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.6; }
html[lang="ar"] .aud-item p { line-height: 1.8; }
.aud-note { margin-top: var(--sp-5); font-size: var(--fs-xs); color: var(--fg-subtle); }
@media (max-width: 1279px) { .aud-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 379px)  { .aud-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PLATFORM / OPERATING MODEL (dark)
   ========================================================================== */
.platform { background: radial-gradient(70rem 40rem at 70% 40%, rgba(124, 58, 237, .18), transparent 60%), var(--navy-900); overflow: hidden; }
.platform-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.pillars { display: grid; gap: 0; border-top: 1px solid var(--border-on-dark); }
.pillar { display: grid; grid-template-columns: 1.5rem 1fr; gap: var(--sp-5); padding-block: var(--sp-6); border-bottom: 1px solid var(--border-on-dark); }
.pillar__mark { width: 1.5rem; height: 1.5rem; margin-top: .15rem; }
.pillar h3 { font-size: var(--fs-h3); color: var(--white); margin-bottom: .35rem; }
.pillar p { color: var(--fg-on-dark-muted); font-size: var(--fs-body); }
.platform-hint { margin-top: var(--sp-2); font-size: var(--fs-xs); color: var(--fg-on-dark-muted); opacity: .8; }

/* Hub diagram */
.hub { position: relative; width: 100%; max-width: 40rem; aspect-ratio: 1; margin-inline: auto; font-size: clamp(.62rem, .35rem + .7vw, .82rem); }
.hub__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub__ring { fill: none; stroke: rgba(255, 255, 255, .12); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hub__ring--outer { stroke-dasharray: 3 6; }
.hub__spoke { stroke: rgba(255, 255, 255, .16); stroke-width: 1; vector-effect: non-scaling-stroke; transition: stroke var(--dur) var(--ease-out), stroke-width var(--dur) var(--ease-out); }
.hub__spoke--product { stroke: rgba(139, 92, 246, .35); }
.hub__core-glow { fill: rgba(124, 58, 237, .28); filter: blur(18px); }
.hub__core-ring { fill: none; stroke: rgba(255, 255, 255, .25); stroke-width: 1; vector-effect: non-scaling-stroke; }

.hub__core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 26%; aspect-ratio: 1; border-radius: 50%;
  background: var(--grad-accent); box-shadow: 0 0 0 10px rgba(124, 58, 237, .16), var(--shadow-purple);
  display: grid; place-content: center; text-align: center; gap: .2rem; padding: .6rem;
}
.hub__core strong { font-family: var(--font-en); font-weight: var(--fw-semibold); font-size: 1.15em; direction: ltr; color: var(--white); }
.hub__core small { font-size: .82em; color: rgba(255, 255, 255, .85); line-height: 1.35; }

.hub__node {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: .4em; white-space: nowrap;
  padding: .38em .8em; border-radius: var(--r-pill);
  font-size: 1em; font-weight: var(--fw-medium); line-height: 1.2;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.hub__node--entity { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .86); }
.hub__node--product { background: var(--white); color: var(--navy-900); border: 1px solid var(--white); font-family: var(--font-en); direction: ltr; box-shadow: var(--shadow-md); cursor: default; }
.hub__node--product .icon { width: 1.1em; height: 1.1em; color: var(--accent); }
.hub__node--product:hover, .hub__node--product:focus-visible { background: var(--purple-50); border-color: var(--purple-500); }
.hub__node--product:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* hover highlighting (driven by data-links on product nodes; JS adds .is-lit / .is-dim) */
.hub.is-focus .hub__node--entity { opacity: .35; }
.hub.is-focus .hub__node--entity.is-lit { opacity: 1; background: rgba(124, 58, 237, .4); border-color: var(--purple-500); color: var(--white); }
.hub.is-focus .hub__spoke { stroke: rgba(255, 255, 255, .06); }
.hub.is-focus .hub__spoke.is-lit { stroke: var(--purple-500); stroke-width: 2; }
.hub.is-focus .hub__spoke--product.is-lit { stroke: var(--white); }

.hub__legend { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: var(--sp-6); font-size: var(--fs-xs); color: var(--fg-on-dark-muted); }
.hub__legend span { display: inline-flex; align-items: center; gap: .45rem; }
.hub__legend i { width: .7rem; height: .7rem; border-radius: 50%; }
.hub__legend .l-entity { background: rgba(255, 255, 255, .25); }
.hub__legend .l-product { background: var(--white); }

/* Compact architecture for small screens */
.hub-compact { display: none; }
@media (max-width: 767px) {
  .hub, .hub__legend, .platform-hint { display: none; }
  .hub-compact { display: grid; gap: var(--sp-4); }
  .hub-compact__core { padding: 1.25rem 1.35rem; border-radius: var(--r-lg); background: var(--grad-accent); color: var(--white); box-shadow: var(--shadow-purple); }
  .hub-compact__core strong { font-family: var(--font-en); font-size: 1.1rem; direction: ltr; display: block; }
  .hub-compact__core small { opacity: .9; }
  .hub-compact__block { padding: 1rem 1.15rem; border-radius: var(--r-lg); border: 1px solid var(--border-on-dark); }
  .hub-compact__block h4 { font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--fg-on-dark-muted); margin-bottom: .75rem; }
  .hub-compact__chips { display: flex; flex-wrap: wrap; gap: .45rem; }
  .hub-compact__chips span { padding: .38rem .75rem; border-radius: var(--r-pill); font-size: var(--fs-xs); font-weight: var(--fw-medium); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); }
  .hub-compact__chips .is-product { background: var(--white); color: var(--navy-900); border-color: var(--white); font-family: var(--font-en); direction: ltr; }
}
@media (max-width: 1023px) {
  .platform-grid { grid-template-columns: 1fr; }
  .hub { max-width: 34rem; }
}

/* ==========================================================================
   JOURNEY
   ========================================================================== */
.journey-thesis { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); padding: 1.1rem 1.35rem; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--border); }
.journey-thesis li { display: inline-flex; align-items: center; gap: 1rem; font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--navy-800); }
.journey-thesis li + li::before { content: ""; width: 1.25rem; height: 1px; background: var(--purple-500); flex: none; }

.journey { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-6); }
.journey::before { content: ""; position: absolute; top: 1.5rem; inset-inline: 8%; height: 2px; background: var(--line); border-radius: 2px; }
.journey__progress { position: absolute; top: 1.5rem; inset-inline-start: 8%; width: 84%; height: 2px; border-radius: 2px; background: var(--grad-accent); transform-origin: var(--origin, left) center; transform: scaleX(0); transition: transform 1.6s var(--ease-out); }
html[dir="rtl"] .journey__progress { --origin: right; }
.journey.is-inview .journey__progress { transform: scaleX(1); }

.stage { position: relative; display: grid; gap: var(--sp-3); justify-items: start; }
.stage__node {
  position: relative; z-index: 1; width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); border: 1.5px solid var(--border); color: var(--navy-900);
  box-shadow: 0 0 0 6px var(--off);
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.stage__node .icon { width: 1.35rem; height: 1.35rem; }
.stage:hover .stage__node, .journey.is-inview .stage.is-on .stage__node { border-color: var(--accent); color: var(--accent); }
.stage__num { font-family: var(--font-en); font-size: var(--fs-xs); color: var(--fg-subtle); font-variant-numeric: tabular-nums; }
.stage h3 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }
.stage__produces { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .7rem; border-radius: var(--r-pill); background: var(--purple-50); color: var(--purple-700); font-size: var(--fs-xs); font-weight: var(--fw-medium); }
.stage__produces::before { content: ""; width: .4rem; height: .4rem; border-radius: 50%; background: var(--accent); }
.stage p { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.6; }
html[lang="ar"] .stage p { line-height: 1.8; }

@media (max-width: 1023px) {
  .journey { grid-template-columns: 1fr; gap: 0; padding-inline-start: 1.5rem; }
  .journey::before, .journey__progress { top: 1.5rem; bottom: 2.5rem; inset-inline: auto; inset-inline-start: calc(1.5rem + 1.5rem - 1px); width: 2px; height: auto; }
  .journey__progress { transform-origin: center top; transform: scaleY(0); }
  .journey.is-inview .journey__progress { transform: scaleY(1); }
  .stage { grid-template-columns: 3rem 1fr; column-gap: var(--sp-5); row-gap: .35rem; padding-block: 1.1rem; }
  .stage__node { grid-row: 1 / span 4; align-self: start; }
  .stage__num { display: none; }
  .journey-thesis { display: grid; gap: .5rem; }
  .journey-thesis li + li::before { display: none; }
}
@media (max-width: 479px) { .journey { padding-inline-start: 0; } .journey::before, .journey__progress { inset-inline-start: calc(1.5rem - 1px); } }

/* ==========================================================================
   PRODUCTS
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.product { min-height: 100%; }
.product::before { content: ""; position: absolute; inset-inline: 1.5rem; top: -1px; height: 2px; border-radius: 2px; background: var(--grad-accent); opacity: 0; transform: scaleX(.4); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.product:hover::before { opacity: 1; transform: none; }
.product__head { display: flex; align-items: center; gap: var(--sp-4); }
.product__name { font-family: var(--font-en); font-size: var(--fs-h3); font-weight: var(--fw-semibold); direction: ltr; unicode-bidi: isolate; }
.product__for { display: flex; gap: .4rem; font-size: var(--fs-xs); color: var(--fg-subtle); padding-top: var(--sp-3); border-top: 1px solid var(--line-soft); margin-top: auto; }
.product__for b { font-weight: var(--fw-medium); color: var(--fg-muted); }
.product .link { font-size: var(--fs-small); }
@media (max-width: 1023px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px)  { .products-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STRATEGIC VALUE (editorial list)
   ========================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 1rem + 4vw, 6rem); border-top: 1px solid var(--border); }
.value-item { display: grid; grid-template-columns: 2.75rem 1fr; gap: var(--sp-5); padding-block: var(--sp-6); border-bottom: 1px solid var(--border); }
.value-item .icon-badge { width: 2.75rem; height: 2.75rem; background: var(--off); color: var(--navy-900); }
.value-item h3 { font-size: var(--fs-h4); margin-bottom: .3rem; }
.value-item p { color: var(--fg-muted); font-size: var(--fs-small); }
html[lang="ar"] .value-item p { font-size: var(--fs-body); }
@media (max-width: 767px) { .value-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   IMPACT (qualitative)
   ========================================================================== */
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 1rem + 2vw, 3rem); }
.impact-item { padding-top: var(--sp-5); border-top: 2px solid var(--navy-900); }
.impact-item h3 { font-size: var(--fs-h3); line-height: 1.3; margin-bottom: var(--sp-3); }
html[lang="ar"] .impact-item h3 { line-height: 1.5; }
.impact-item p { color: var(--fg-muted); font-size: var(--fs-small); }
html[lang="ar"] .impact-item p { font-size: var(--fs-body); }
@media (max-width: 1023px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .impact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PILOT / CONTACT (dark + motif)
   ========================================================================== */
.pilot { overflow: hidden; }
.pilot .container { position: relative; z-index: 1; }
.pilot-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(2.5rem, 2rem + 3vw, 6rem); align-items: start; }
.pilot .h2 { color: var(--white); margin-bottom: var(--sp-4); }
.pilot .lead { color: var(--fg-on-dark-muted); margin-bottom: var(--sp-8); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); margin-bottom: var(--sp-8); position: relative; }
.steps::before { content: ""; position: absolute; top: .9rem; inset-inline: 12%; height: 1px; background: var(--border-on-dark); }
.step { position: relative; display: grid; gap: .6rem; }
.step__dot { position: relative; z-index: 1; width: 1.85rem; height: 1.85rem; border-radius: 50%; display: grid; place-items: center; background: var(--navy-900); border: 1px solid rgba(255, 255, 255, .35); font-family: var(--font-en); font-size: .75rem; font-weight: var(--fw-semibold); color: var(--white); }
.step:last-child .step__dot { background: var(--grad-accent); border-color: transparent; }
.step h3 { font-size: 1rem; color: var(--white); }
.step p { font-size: var(--fs-xs); color: var(--fg-on-dark-muted); line-height: 1.6; }
html[lang="ar"] .step p { font-size: var(--fs-small); line-height: 1.75; }
.pilot-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.contact-card { background: var(--white); color: var(--fg); border-radius: var(--r-lg); padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); box-shadow: var(--shadow-lg); }
.contact-card .h3 { margin-bottom: .35rem; }
.contact-card > p { color: var(--fg-muted); font-size: var(--fs-small); margin-bottom: var(--sp-6); }
.contact-card .btn { justify-self: start; }
.contact-card .form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-3); }

@media (max-width: 1023px) { .pilot-grid { grid-template-columns: 1fr; } }
@media (max-width: 639px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .pilot-actions .btn { flex: 1 1 100%; }
}
