:root {
  --orange: #ff7a00;
  --orange-glow: rgba(255,122,0,0.6);
  --orange-dark: #cc5f00;
  --black: #090909;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #f5f5f0;
  --grey: #888;
  --mid-gray: #1c1c1c;
  --accent-gray: #141414;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ─── CURSOR ─── */
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, background 0.3s, width 0.3s, height 0.3s;
}
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,122,0,0.6); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out-expo), width 0.3s, height 0.3s, border-color 0.3s, border-radius 0.3s;
}
body.cursor-hover #cursor-dot { width: 14px; height: 14px; background: var(--white); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--orange); border-radius: 8px; }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  z-index: 1000; width: 0;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--orange-glow);
}

/* ─── NOISE ─── */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── HEADER ─── */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem; position: fixed; top: 0; width: 100%; z-index: 500;
  transition: background 0.5s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
header.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 1px 0 rgba(255,122,0,0.15), 0 4px 30px rgba(0,0,0,0.5);
}
.logo-nav {
  max-height: 42px; width: auto; cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo), filter 0.3s;
}
.logo-nav:hover { transform: scale(1.08); filter: drop-shadow(0 0 12px var(--orange-glow)); }
.logo-fb { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; text-decoration: none; }
.logo-fb span { color: var(--orange); }

header nav { display: flex; gap: 1rem; font-family: var(--font-display); font-weight: 700; align-items: center; }
header nav a {
  text-decoration: none; color: var(--white); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: color 0.3s; padding: 0.3rem 0;
}
header nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease-out-expo);
}
header nav a:hover { color: var(--orange); }
header nav a:hover::after { width: 100%; }

.btn-nav {
  background: var(--orange); color: var(--black) !important;
  padding: 0.6rem 1.4rem; border: 1.5px solid var(--orange); border-radius: 4px;
  font-weight: 700; font-size: 13px !important; text-transform: uppercase;
  transition: all 0.35s var(--ease-out-expo) !important;
  position: relative; overflow: hidden;
}
.btn-nav::before {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo); z-index: -1;
}
.btn-nav:hover { box-shadow: 0 0 20px var(--orange-glow) !important; }
.btn-nav:hover::before { transform: scaleX(1); }
.btn-nav::after { display: none !important; }

/* ─── HERO MANDATO ─── */
.hero-mandato {
  padding: 9rem 3rem 5rem; position: relative; overflow: hidden; text-align: center;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(800px, 100vw); height: 420px; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,122,0,0.09) 0%, transparent 70%);
}
.hero-mandato > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(255,122,0,0.3); padding: 0.4rem 1.2rem; border-radius: 2px;
  margin-bottom: 1.8rem; background: rgba(255,122,0,0.05);
}
.hero-eyebrow::before { content: ""; display: block; width: 20px; height: 1px; background: var(--orange); }

.hero-mandato h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 1.2rem;
}
.hero-mandato h1 .accent { color: var(--orange); }

.hero-lead {
  font-size: 1.05rem; color: rgba(245,245,240,0.55);
  font-weight: 300; line-height: 1.8; max-width: 540px; margin: 0 auto 3.5rem;
}
.hero-lead strong { color: var(--white); font-weight: 500; }

/* ─── PRICING CARD ─── */
.pricing-card {
  background: linear-gradient(145deg, var(--dark2) 0%, #181818 60%, #161412 100%);
  border: 1px solid rgba(255,122,0,0.2); border-radius: 12px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 640px; width: 100%; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,122,0,0.07), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: box-shadow 0.4s, transform 0.3s;
}
.pricing-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 12px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,122,0,0.05) 0%, transparent 60%);
}
.pricing-card:hover {
  box-shadow: 0 0 0 1px rgba(255,122,0,0.35), 0 30px 80px rgba(255,122,0,0.1);
  transform: translateY(-3px);
}

.plan-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.2rem;
}
.plan-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.price-row { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.price-cur { font-family: var(--font-display); font-size: 2rem; color: var(--orange); font-weight: 700; }
.price-amt { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 4.5rem); font-weight: 800; color: #fff; line-height: 1; }
.price-per { font-family: var(--font-body); font-size: 0.9rem; color: rgba(245,245,240,0.3); margin-left: 0.3rem; }
.price-sub { font-family: var(--font-body); font-size: 0.82rem; color: rgba(245,245,240,0.28); margin-bottom: 2rem; line-height: 1.65; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feat {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.72rem 0.2rem;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--white); border-top: 1px solid rgba(255,255,255,0.05); letter-spacing: 0.01em;
}
.feat:nth-child(-n+2) { border-top: none; }
.feat svg { flex-shrink: 0; margin-top: 2px; }

.card-pills {
  margin-top: 1.6rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; flex-wrap: wrap;
}
.pill {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,245,240,0.35); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; padding: 0.35rem 0.9rem;
}

/* ─── TRUST ─── */
.trust {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; padding: 2.5rem 0 0;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: rgba(245,245,240,0.3);
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ─── SECTION MANDATO ─── */
#mandato {
  max-width: 820px; margin: 0 auto;
  padding: 5rem 3rem 7rem;
  position: relative; z-index: 1;
}

.section-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
}
.section-label::before { content: ""; display: block; width: 24px; height: 1px; background: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.02em; color: #fff;
  text-align: center; margin-bottom: 0.6rem;
}
.section-title .accent { color: var(--orange); }

.section-sub {
  text-align: center; font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(245,245,240,0.3); margin-bottom: 2.5rem; line-height: 1.7;
}

/* ─── STEPS ─── */
.steps {
  display: flex; margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step {
  flex: 1; min-width: 52px; display: flex; flex-direction: column;
  align-items: center; gap: 0.4rem; position: relative;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 13px;
  left: calc(50% + 15px); width: calc(100% - 30px);
  height: 1px; background: rgba(255,255,255,0.06);
}
.step-n {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,122,0,0.35);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--orange); position: relative; z-index: 1;
}
.step-l {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,245,240,0.22); white-space: nowrap;
}

/* ─── FORM CARD ─── */
.form-card {
  background: linear-gradient(145deg, var(--dark2) 0%, #171717 100%);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,0.5), transparent);
}

/* ─── FORM GRID ─── */
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.75rem; }
.fg .c2 { grid-column: 1/-1; }

.fdiv {
  grid-column: 1/-1; display: flex; align-items: center; gap: 0.8rem; margin: 0.4rem 0;
}
.fdiv::before, .fdiv::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
.fdiv span {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,245,240,0.22); white-space: nowrap;
}

.fg2 { display: flex; flex-direction: column; gap: 0.44rem; }
.fg2 label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,245,240,0.38);
}
.fg2 input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 6px;
  padding: 0.85rem 1rem; color: var(--white);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 400;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
}
.fg2 input::placeholder { color: rgba(245,245,240,0.12); }
.fg2 input:focus {
  outline: none; border-color: var(--orange);
  background: rgba(255,122,0,0.03);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}

/* ─── SIGNATURE ─── */
.sig {
  grid-column: 1/-1; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 1.25rem;
}
.sig-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
.sig-top label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,245,240,0.38);
}
.sig-hint { font-family: var(--font-body); font-size: 0.78rem; color: rgba(245,245,240,0.18); }
.sig-wrap {
  background: #f8f7f5; border-radius: 6px; overflow: hidden;
  border: 1px solid #e2dfd9; position: relative;
}
#signatureCanvas { display: block; width: 100%; height: 150px; cursor: crosshair; touch-action: none; }
.sig-ph {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; pointer-events: none; transition: opacity 0.15s;
}
.sig-ph span { font-size: 1rem; color: #ccc; font-style: italic; font-family: Georgia, serif; }
.sig-btns { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 0.9rem; }

/* ─── CLAUSES ─── */
.clauses-block {
  grid-column: 1/-1; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; overflow: hidden; margin: 0.5rem 0;
}
.clauses-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer;
  background: rgba(255,255,255,0.03); gap: 0.75rem; user-select: none;
  transition: background 0.2s;
}
.clauses-head:hover { background: rgba(255,122,0,0.05); }
.clauses-head span {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; color: rgba(245,245,240,0.45);
}
.clauses-head svg { flex-shrink: 0; transition: transform 0.25s; color: rgba(245,245,240,0.22); }
.clauses-head.open svg { transform: rotate(180deg); }
.clauses-head.open span { color: var(--white); }

.clauses-body { display: none; padding: 1.5rem; background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }
.clauses-body.open { display: block; }

.clause { margin-bottom: 1.3rem; padding-bottom: 1.3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.clause:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.clause-h {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--orange); margin-bottom: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.clause-t { font-family: var(--font-body); font-size: 0.83rem; color: rgba(245,245,240,0.42); line-height: 1.82; }
.clause-t strong { color: rgba(255,195,120,0.85); font-weight: 600; }

/* ─── LEGAL BOX ─── */
.legal {
  grid-column: 1/-1;
  background: rgba(255,122,0,0.04); border: 1px solid rgba(255,122,0,0.14); border-radius: 8px;
  padding: 1.1rem 1.4rem;
}
.legal p { font-family: var(--font-body); font-size: 0.8rem; color: rgba(245,245,240,0.38); line-height: 1.78; }
.legal strong { color: rgba(255,185,110,0.82); font-weight: 600; }

/* ─── CHECKBOX ─── */
.chk { grid-column: 1/-1; display: flex; align-items: flex-start; gap: 0.75rem; }
.chk input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); cursor: pointer; }
.chk label { font-family: var(--font-body); font-size: 0.82rem; color: rgba(245,245,240,0.38); cursor: pointer; line-height: 1.65; }
.chk a { color: var(--orange); text-decoration: none; }
.chk a:hover { text-decoration: underline; }

/* ─── BUTTONS ─── */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; border-radius: 4px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: transparent; border: 1px solid rgba(255,255,255,0.1);
  color: rgba(245,245,240,0.38); cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

.btn-submit {
  width: 100%; margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.1rem 1.5rem; border-radius: 4px; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--black);
  background: var(--orange);
  box-shadow: 0 8px 28px rgba(255,122,0,0.28);
  transition: all 0.35s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo); z-index: 0;
}
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--orange-glow), 0 12px 36px rgba(255,122,0,0.28);
}
.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2); border-top-color: var(--black);
  animation: spin 0.65s linear infinite; flex-shrink: 0; position: relative; z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── SUCCESS ─── */
#ss {
  display: none; text-align: center; padding: 3.5rem 1rem;
  animation: fadeUpAnim 0.5s var(--ease-out-expo);
}
@keyframes fadeUpAnim { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.ss-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  display: grid; place-items: center; margin: 0 auto 1.5rem;
}
#ss h3 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 0.6rem;
}
#ss .s {
  font-family: var(--font-body); color: rgba(245,245,240,0.4);
  font-size: 0.9rem; margin-bottom: 1.8rem; line-height: 1.7;
}
.cd {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--orange);
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--orange);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  header { padding: 1rem 1.5rem; }
  header.scrolled { padding: 0.75rem 1.5rem; }
  header nav { gap: 0.8rem; }
  header nav a { font-size: 11px; }
  .hero-mandato { padding: 7rem 1.5rem 3rem; }
  #mandato { padding: 3.5rem 1.5rem 5rem; }
  .form-card { padding: 1.5rem 1.1rem; }
  .fg { grid-template-columns: 1fr; }
  .fg .c2, .fdiv, .legal, .chk, .sig, .clauses-block { grid-column: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .feat:nth-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.05); }
  .feat:first-child { border-top: none; }
  .steps { padding-bottom: 1.4rem; margin-bottom: 1.4rem; }
  .step-l { display: none; }
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (max-width: 480px) {
  .hero-mandato h1 { font-size: 2.2rem; }
  .price-amt { font-size: 2.8rem; }
  .trust { gap: 1rem; }
}


/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section {
  max-width: 820px; margin: 0 auto;
  padding: 4rem 3rem 2rem;
  position: relative; z-index: 1;
}

.faq-section > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--white); text-align: center;
  margin-bottom: 0.5rem;
}
.faq-section > h2 .accent { color: var(--orange); }

.faq-subtitle {
  text-align: center; font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(245,245,240,0.3); margin-bottom: 2.5rem; line-height: 1.7;
}

.faq-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
}
.faq-label::before,
.faq-label::after { content: ""; display: block; width: 24px; height: 1px; background: var(--orange); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: linear-gradient(145deg, var(--dark2) 0%, #171717 100%);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  overflow: hidden; position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,0.25), transparent);
  pointer-events: none;
}
.faq-item:hover {
  border-color: rgba(255,122,0,0.2);
  box-shadow: 0 4px 20px rgba(255,122,0,0.05);
}
.faq-item.open {
  border-color: rgba(255,122,0,0.3);
  box-shadow: 0 0 0 1px rgba(255,122,0,0.1), 0 8px 30px rgba(255,122,0,0.07);
}

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.2rem 1.4rem;
  cursor: pointer; user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,122,0,0.04); }

.faq-q-text {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.01em; color: rgba(245,245,240,0.65);
  transition: color 0.25s; line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--white); }

.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,122,0,0.25);
  display: grid; place-items: center; color: var(--orange);
  transition: transform 0.3s var(--ease-out-expo), background 0.3s, border-color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,122,0,0.1); border-color: var(--orange);
}

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s;
  padding: 0 1.4rem;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.4rem 1.4rem;
}

.faq-a p {
  font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(245,245,240,0.42); line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.1rem;
}
.faq-a p strong { color: rgba(255,185,110,0.82); font-weight: 600; }
.faq-a p a { color: var(--orange); text-decoration: none; }
.faq-a p a:hover { text-decoration: underline; }

/* ── FAQ responsive ── */
@media (max-width: 768px) {
  .faq-section { padding: 3rem 1.5rem 1.5rem; }
  .faq-q { padding: 1rem 1.1rem; }
  .faq-a { padding: 0 1.1rem; }
  .faq-item.open .faq-a { padding: 0 1.1rem 1.1rem; }
  .faq-q-text { font-size: 0.92rem; }
}

}
