:root {
  --purple-500: #7c3aed;
  --purple-400: #a855f7;
  --purple-300: #c4b5fd;
  --purple-600: #5b21b6;
  --purple-900: #1e1035;
  --purple-950: #0b0416;
  --bg-soft: #faf5ff;
  --bg-card: rgba(17, 24, 39, 0.78);
  --border-subtle: rgba(148, 163, 184, 0.45);
  --text-main: #111827;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-card: 22px;
  --radius-pill: 999px;
  --nav-height: 70px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.26s ease;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-soft);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mesh-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(124, 58, 237, 0.37) 0, transparent 50%),
    radial-gradient(circle at 90% 0, rgba(168, 85, 247, 0.3) 0, transparent 55%),
    radial-gradient(circle at 40% 95%, rgba(192, 132, 252, 0.4) 0, transparent 52%),
    radial-gradient(circle at 85% 70%, rgba(79, 70, 229, 0.32) 0, transparent 55%),
    radial-gradient(circle at 15% 60%, rgba(236, 72, 153, 0.22) 0, transparent 55%);
  opacity: 0.7;
  z-index: -2;
  pointer-events: none;
}

.bg-gradient-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(245, 240, 255, 0.97), rgba(240, 238, 255, 0.96), #f4f1fa);
  z-index: -1;
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

@media (min-width: 1024px) {
  .page-inner {
    padding: 0 1.5rem 4rem;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(250, 245, 255, 0.98), rgba(250, 245, 255, 0.92));
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}

.header-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--nav-height);
}

@media (min-width: 1024px) {
  .header-content {
    padding-inline: 1.5rem;
  }
}

.header-content .nav-cta {
  margin-left: auto;
  margin-top: 0;
}

.header-content .nav-cta .btn-primary {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.45);
}

.header-content .nav-cta .btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  box-shadow: 0 14px 38px rgba(91, 33, 182, 0.55);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  padding: 2px;
  box-shadow: 0 15px 40px rgba(109, 40, 217, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, #f9fafb 0, #e0e7ff 45%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b0082;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.logo-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-subtitle {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.nav-toggle {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.38rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #4b5563;
  cursor: pointer;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform 0.12s ease-out;
}

.nav-toggle:hover {
  background: #ffffff;
  border-color: rgba(129, 140, 248, 0.9);
  transform: translateY(-1px);
}

.nav-toggle-lines {
  width: 14px;
  height: 11px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle-lines i {
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(to right, #7c3aed, #a855f7);
  transition: transform 0.16s ease-out, opacity 0.16s ease-out;
}

.nav-open .nav-toggle-lines i:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle-lines i:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-lines i:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: var(--nav-height) 0 auto 0;
  background: linear-gradient(to bottom, rgba(250, 245, 255, 0.98), rgba(250, 245, 255, 0.97));
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
  transform-origin: top;
  transform: scaleY(0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med), transform var(--transition-med);
  z-index: 35;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media (min-width: 1024px) {
  .nav-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.nav-open .nav {
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1);
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform 0.12s ease-out;
}

.nav-link-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #7c3aed, #a855f7);
}

.nav-link a:hover {
  color: #4c1d95;
  border-color: rgba(196, 181, 253, 0.9);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(120deg, #7c3aed, #a855f7, #ec4899);
  color: #f9fafb;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(109, 40, 217, 0.5);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, filter 0.12s ease-out;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(88, 28, 135, 0.65);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.85);
  color: #4b5563;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform 0.12s ease-out;
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(156, 163, 175, 1);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    background: transparent;
    border-bottom: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-inner {
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
  }

  .nav-cta {
    margin-left: auto;
    margin-top: 0;
  }

  .nav-link a {
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
    background: transparent;
  }
}

.hero {
  padding-top: 1.8rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2.6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2.6rem;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.15rem 0.5rem 0.15rem 0.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.12);
  margin-bottom: 0.9rem;
}

.hero-kicker-pill {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, #7c3aed, #a855f7);
  color: #f9fafb;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker-text {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #5b21b6;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

.hero-title span {
  background: linear-gradient(to right, #7c3aed, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.hero-tag {
  padding: 0.18rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(124, 58, 237, 0.5);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  color: #5b21b6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 18rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-card {
  position: relative;
  border-radius: 30px;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(135deg, rgba(15, 23, 39, 0.9), rgba(30, 64, 175, 0.85));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.6);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-card {
    padding: 1.7rem 1.6rem;
  }
}

.hero-card-glass {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 0 0, rgba(124, 58, 237, 0.28) 0, transparent 55%);
  opacity: 0.9;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat {
  flex: 1 1 90px;
  min-width: 0;
  border-radius: 18px;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-foot {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.1rem;
}

.hero-circle {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 0.7rem;
  align-items: center;
}

.hero-circle-vis {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background:
    conic-gradient(from 210deg, rgba(252, 211, 77, 0.15), rgba(52, 211, 153, 0.75), rgba(52, 211, 153, 0.95), rgba(59, 130, 246, 0.9), rgba(124, 58, 237, 0.9));
  padding: 10%;
}

.hero-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: #f8fafc;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-circle-legend {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.hero-circle-legend strong {
  color: #ffffff;
}

.section {
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .section {
    margin-top: 3.4rem;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
  max-width: 42rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7c3aed;
}

.section-title {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.section-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
}

.stat-card {
  border-radius: var(--radius-card);
  padding: 1.25rem 1.3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: var(--shadow-soft);
}

.stat-card-title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.stat-card-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.stat-list {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.stat-list li + li {
  margin-top: 0.2rem;
}

.kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.kpi {
  flex: 1 1 90px;
  min-width: 0;
  border-radius: 16px;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(236, 72, 153, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.kpi strong {
  display: block;
  font-size: 1.02rem;
  color: #4c1d95;
  margin-bottom: 0.1rem;
}

.kpi span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.advantages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.adv-card {
  border-radius: var(--radius-card);
  padding: 1.1rem 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
}

.adv-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.adv-title {
  margin: 0 0 0.35rem;
  font-size: 0.97rem;
  color: #0f172a;
}

.adv-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.step {
  border-radius: var(--radius-card);
  padding: 1rem 1.05rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.6rem;
  align-items: flex-start;
}

.step-index {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.step-title {
  margin: 0 0 0.25rem;
  font-size: 0.96rem;
}

.step-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.faq-item {
  border-radius: var(--radius-card);
  padding: 0.85rem 0.95rem 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: box-shadow var(--transition-fast), transform 0.12s ease-out, border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.faq-question {
  margin: 0;
  font-size: 0.94rem;
  color: #0f172a;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #5b21b6;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.faq-answer {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  display: none;
}

.faq-item.open {
  border-color: rgba(196, 181, 253, 1);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(148, 163, 184, 0.32);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-toggle-icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #f9fafb;
  border-color: transparent;
  transform: rotate(45deg);
}

.faq-side-card {
  border-radius: var(--radius-card);
  padding: 1.2rem 1.2rem 1.3rem;
  background: rgba(17, 24, 39, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.9);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.faq-side-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.faq-side-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(229, 231, 235, 0.9);
}

.faq-side-list {
  margin: 0.7rem 0 0;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: rgba(229, 231, 235, 0.9);
}

.form-section {
  margin-top: 3.1rem;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .form-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.form-layout {
  border-radius: 28px;
  padding: 1.7rem 1.5rem 1.9rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .form-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
    padding: 1.9rem 1.9rem 2.1rem;
  }
}

.form-intro-title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: #0f172a;
}

.form-intro-text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.form-intro-note {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid-full {
    grid-column: 1 / -1;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.86rem;
}

.field-label {
  display: flex;
  justify-content: space-between;
  color: #0f172a;
}

.field-label span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.field-control {
  position: relative;
}

.field-control input,
.field-control select,
.field-control textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  padding: 0.6rem 0.9rem;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field-control textarea {
  border-radius: 16px;
  min-height: 96px;
  resize: vertical;
  padding-top: 0.65rem;
}

.field-control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2rem;
}

.field-control input::placeholder,
.field-control textarea::placeholder {
  color: rgba(156, 163, 175, 0.95);
}

.field-control input:focus,
.field-control select:focus,
.field-control textarea:focus {
  border-color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.95), 0 0 0 9px rgba(196, 181, 253, 0.5);
  background: #ffffff;
}

.field-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(156, 163, 175, 1);
  border-bottom: 1px solid rgba(156, 163, 175, 1);
  pointer-events: none;
}

.form-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  max-width: 18rem;
}

.footer {
  width: 100%;
  max-width: 1120px;
  margin: 3rem auto 0;
  padding: 1.1rem 1rem 1.6rem;
  border-top: 1px solid rgba(124, 58, 237, 0.25);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Reviews widget – harmonisé avec le thème violet */
.reviews-widget-section {
  padding: 2.8rem 0 2.5rem;
}

.reviews-widget-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .reviews-widget-inner {
    padding: 0 1.5rem;
  }
}

.reviews-widget-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 255, 0.98));
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.1);
  padding: 1.4rem 1.3rem 1.5rem;
}

.reviews-widget-head {
  margin-bottom: 0.9rem;
}

.reviews-widget-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.25;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.reviews-widget-subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  max-width: 65ch;
}

.reviews-widget-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.9rem 0 1rem;
}

.reviews-widget-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b21b6;
  background: rgba(196, 181, 253, 0.3);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.reviews-widget-note {
  margin: 0.8rem 0 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .footer {
    padding: 1.1rem 1.5rem 1.6rem;
  }
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-soft);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #7c3aed;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  background: linear-gradient(135deg, #1e1035, #2d1b4e);
  color: #f9fafb;
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.35);
  font-size: 0.88rem;
  z-index: 50;
  opacity: 0;
  transition: transform 0.22s ease-out, opacity 0.22s ease-out;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
