/* =============================================
   NEXTA — nexta.fr
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --black:    #09090B;
  --surface:  #0F0F12;
  --surface2: #16161A;
  --border:   #1E1E24;
  --border2:  #2A2A34;
  --muted:    #7A7A8E;
  --subtle:   #A8A8BC;
  --cream:    #D8D4CC;
  --white:    #F2F0EC;

  --accent:   #5B5BD6;
  --accent2:  #E54D2E;
  --rose:     #FF2D78;
  --violet:   #7B2FFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: min(100%, 1120px);
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem var(--gutter);
  background: rgba(9,9,11,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #606070;
  letter-spacing: 0.03em;
  transition: color .2s;
}
.nav-links a:hover { color: #F2F0EC; }

a.nav-active {
  color: #F2F0EC !important;
  font-weight: 700 !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
/* doublons supprimés */

.nav-cta {
  background: var(--white) !important;
  color: var(--black) !important;
  padding: 0.45rem 1.125rem !important;
  border-radius: 999px;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .85 !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  padding: 6rem 2rem 3rem;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 1.75rem; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 9vw, 4rem);
  color: var(--white);
  transition: opacity .2s;
}
.nav-mobile a:hover { opacity: .5; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--black);
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border2);
  color: var(--muted);
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--subtle); color: var(--white); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(91,91,214,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(229,77,46,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 6rem;
  padding-bottom: var(--section-pad);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: .96;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 2.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--subtle);
}

.hero-sub {
  max-width: 480px;
  color: var(--subtle);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* =============================================
   ACTIVITÉS
   ============================================= */
.activities {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--border);
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}

.activity-card {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--surface);
  transition: background .25s;
  cursor: pointer;
}
.activity-card:hover { background: var(--surface2); }

.activity-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.activity-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
}

.activity-card p {
  color: var(--subtle);
  font-size: 0.9375rem;
  line-height: 1.75;
  flex: 1;
  font-weight: 300;
}

.conseil-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.conseil-list li {
  font-size: 0.8125rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.conseil-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.activity-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: color .2s;
}
.activity-cta svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}
.activity-card:hover .activity-cta { color: var(--white); }
.activity-card:hover .activity-cta svg { transform: translate(2px,-2px); }

/* =============================================
   CONVICTION
   ============================================= */
.conviction {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--border);
}

.conviction-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.conviction-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.conviction-inner blockquote em {
  font-style: italic;
  color: var(--subtle);
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  padding-top: calc(4.5rem + var(--section-pad));
  padding-bottom: calc(var(--section-pad) * .75);
  border-bottom: 1px solid var(--border);
}
.page-header .container {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.page-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .97;
  letter-spacing: -0.035em;
  color: var(--white);
}
.page-header h1 em {
  font-style: italic;
  color: var(--subtle);
}
.page-header p {
  max-width: 500px;
  color: var(--subtle);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   CONSEIL PAGE
   ============================================= */
.conseil-section {
  padding-block: var(--section-pad);
}
.conseil-section .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.conseil-context {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.conseil-context-item {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.conseil-context-item:last-child { border-right: none; }
.context-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.context-value {
  font-size: 0.8125rem;
  color: var(--subtle);
  line-height: 1.65;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.service-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background .2s;
}
.service-card:hover { background: var(--surface2); }

.service-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}
.service-card p {
  color: var(--subtle);
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.how-we-work {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.how-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.how-item { display: flex; flex-direction: column; gap: 0.6rem; }
.how-item-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.how-item p {
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.7;
  font-weight: 300;
}

.conseil-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: 1rem;
  flex-wrap: wrap;
}
.conseil-cta p {
  color: var(--subtle);
  font-size: 0.9375rem;
  flex: 1;
  min-width: 200px;
  font-weight: 300;
}

/* =============================================
   PRODUITS PAGE
   ============================================= */
.product-showcase {
  padding-block: var(--section-pad);
}
.product-showcase .container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* 3C photo card */
.product-visual-3c {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.pv3c-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.55);
}
.pv3c-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,9,11,.2) 0%,
    rgba(9,9,11,.1) 40%,
    rgba(9,9,11,.65) 100%
  );
}
.pv3c-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.pv3c-logo {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: auto;
}
.pv3c-logo-light { color: var(--white); }
.pv3c-logo-rose  { color: var(--rose); }

.pv3c-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-style: italic;
}
.pv3c-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.pv3c-tags {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.04em;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background: rgba(255,45,120,.08);
  border: 1px solid rgba(255,45,120,.2);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  width: fit-content;
}
.product-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}
.product-content p {
  color: var(--subtle);
  line-height: 1.75;
  font-weight: 300;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  opacity: .55;
  transition: opacity .2s, gap .2s;
}
.product-link:hover { opacity: 1; gap: 0.75rem; }

/* =============================================
   À PROPOS
   ============================================= */
.manifeste-section {
  padding-block: var(--section-pad);
}
.manifeste-body {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.manifeste-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.manifeste-item:first-child { border-top: none; padding-top: 0; }
.manifeste-item h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.manifeste-item h2 em {
  font-style: italic;
  color: var(--subtle);
}
.manifeste-item p {
  color: var(--subtle);
  line-height: 1.8;
  font-weight: 300;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding-block: var(--section-pad); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item a, .contact-item p {
  font-size: 0.9375rem;
  color: var(--subtle);
  font-weight: 300;
  transition: color .2s;
}
.contact-item a:hover { color: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 0.625rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  width: 100%;
  transition: border-color .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--subtle); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; color: var(--muted); }
.form-group select option { background: var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  border-top: 1px solid var(--border);
  padding-block: 2.25rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  display: block;
}
.footer-sub {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.8125rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-legal span, .footer-legal a {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-legal a:hover { color: var(--subtle); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .conseil-context { grid-template-columns: 1fr 1fr; }
  .conseil-context-item { border-right: none; border-bottom: 1px solid var(--border); }
  .conseil-context-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .activities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .conseil-context { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav-has-sub { position: relative; }

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: -1.25rem;
  padding-top: 0.75rem; /* pont entre le lien et le menu */
  min-width: 220px;
  z-index: 200;
}

.nav-sub-inner {
  background: #16161A;
  border: 1px solid #2A2A34;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

.nav-has-sub:hover .nav-sub { display: block; }

.nav-sub li a {
  display: block;
  padding: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #A8A8BC !important;
  border-bottom: 1px solid #1E1E24;
  transition: background .15s, color .15s !important;
}
.nav-sub li:last-child a { border-bottom: none; }
.nav-sub li a:hover {
  background: #0F0F12;
  color: #F2F0EC !important;
}

/* =============================================
   SERVICE DETAIL CARDS (outillage / transition)
   ============================================= */
.service-detail-card {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background .2s;
}
.service-detail-card:hover { background: var(--surface2); }

.sdc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.sdc-header .service-number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-top: 0.2rem;
  min-width: 20px;
}
.sdc-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}
.sdc-duration {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-weight: 500;
}
.service-detail-card > p {
  color: var(--subtle);
  font-size: 0.9375rem;
  line-height: 1.75;
  font-weight: 300;
}
.sdc-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem;
  background: var(--black);
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}
.sdc-del-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.sdc-deliverables ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sdc-deliverables li {
  font-size: 0.8125rem;
  color: var(--subtle);
  padding-left: 1rem;
  position: relative;
  font-weight: 300;
}
.sdc-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.sdc-option {
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

/* Tech tags */
.tech-tag {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--subtle);
  letter-spacing: 0.02em;
}

/* FAQ */
.faq-item {
  padding: 1.5rem clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background .2s;
}
.faq-item:hover { background: var(--surface2); }
.faq-q {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.faq-a {
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 900px) {
  .activities-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
