:root {
  --bg: #f5f7fb;
  --bg-card: #ffffff;
  --primary: #1f4bad;
  --primary-soft: #e1e8ff;
  --primary-dark: #152f6a;
  --accent: #3b82f6;
  --text: #101827;
  --muted: #6b7280;
  --border: #d5d9e5;
  --danger: #b91c1c;
  --focus: #fbbf24;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);
  --shadow-subtle: 0 2px 8px rgba(15, 23, 42, 0.06);
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #eef3ff 0, #f5f7fb 36%, #f9fafb 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: inherit;
}

/* Layout utilitaires */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 75, 173, 0.06);
  color: var(--primary-dark);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.section-title {
  font-size: 1.75rem;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(209, 213, 219, 0.6);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, #c7d2fe 0, #2563eb 40%, #1f2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.brand-mark-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #e5edff;
  position: relative;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.3);
}

.brand-mark-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 2px solid rgba(219, 234, 254, 0.9);
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--primary-dark);
}

.brand-text-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding: 0.15rem 0;
}

.nav-link:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-ghost:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 8px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  transition: width var(--transition-med);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
  margin-left: 1.25rem;
}

.btn-primary,
.btn-outline,
.btn-ghost {
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #c7d2fe 0, #2563eb 30%, #1d4ed8 80%);
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-subtle);
  border-color: var(--primary);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}

.btn-icon-circle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  background: rgba(15, 23, 42, 0.14);
}

/* Burger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(248, 250, 252, 0.9);
  cursor: pointer;
  padding: 0;
  margin-left: 0.5rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav-toggle:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-1px);
}

.nav-toggle-bars {
  width: 16px;
  height: 14px;
  position: relative;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform var(--transition-med), opacity var(--transition-med), top var(--transition-med), bottom var(--transition-med);
}

.nav-toggle-bar:nth-child(1) {
  top: 0;
}

.nav-toggle-bar:nth-child(2) {
  top: 6px;
}

.nav-toggle-bar:nth-child(3) {
  bottom: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
  border-top: 1px solid rgba(209, 213, 219, 0.7);
  background: rgba(248, 250, 252, 0.98);
}

.nav-mobile-inner {
  padding: 0.75rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile-link {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.nav-mobile-link:hover {
  color: var(--text);
}

.nav-mobile-cta {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

@media (min-width: 860px) {
  .nav-main {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile-panel {
    display: none !important;
  }

  .site-header-inner {
    padding: 0.6rem 1.25rem;
  }
}

/* Hero */
.hero {
  padding: 3.25rem 0 3.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.25rem 0 4.5rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 920px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #e5edff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.hero-eyebrow-badge {
  padding: 0.05rem 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #bfdbfe;
  font-weight: 600;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  color: #020617;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 920px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

.hero-subtitle {
  color: var(--muted);
  margin: 0 0 1.4rem;
  font-size: 0.98rem;
}

.hero-highlight {
  background: linear-gradient(120deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-secondary-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-secondary-strong {
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 0.78rem;
  color: var(--muted);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
}

.pill-lock {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(37, 99, 235, 0.75);
  position: relative;
}

.pill-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  width: 8px;
  height: 6px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.7);
  border-bottom: none;
}

.pill-lock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.9);
}

.hero-card {
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, #dbeafe 0, #eff6ff 18%, #ffffff 52%, #dbeafe 100%);
  padding: 1.5rem 1.4rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.24) 0, rgba(59, 130, 246, 0) 65%);
  right: -50px;
  top: -80px;
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  gap: 0.75rem;
}

.hero-score-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 600;
}

.hero-score-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-score-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-score-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

.hero-card-metric-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.65rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-metric-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-indicator-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 1rem;
  font-size: 0.83rem;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.hero-card-list-bullet {
  margin-top: 0.32rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(120deg, #22c55e, #4ade80);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.7);
}

.hero-tagline-mini {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-tagline-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* Trust / Proof */
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trust-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  padding: 1rem 1rem 1rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.trust-icon-1 {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.trust-icon-2 {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.trust-icon-3 {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.trust-text {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Offres */
.pricing-layout {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 1.4rem 1.25rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.75);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pricing-pill-accent {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
}

.pricing-pill-soft {
  background: rgba(148, 163, 184, 0.15);
  color: #4b5563;
}

.pricing-title {
  font-size: 1.04rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.pricing-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.pricing-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.15rem;
}

.pricing-ht {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.38rem;
}

.pricing-check {
  margin-top: 0.22rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #15803d;
}

.pricing-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.pricing-note {
  font-size: 0.76rem;
  color: var(--muted);
}

.pricing-note-strong {
  font-weight: 600;
  color: var(--primary-dark);
}

.pricing-legal {
  margin-top: 1.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(248, 250, 252, 0.9);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
}

/* Process */
.process-timeline {
  margin-top: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(248, 250, 252, 0.98));
  padding: 1.4rem 1.25rem 1.1rem;
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.process-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:last-child::after {
  display: none;
}

.process-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: -4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0.5), rgba(148, 163, 184, 0.02));
}

.process-content {
  font-size: 0.86rem;
}

.process-label {
  font-weight: 600;
  margin-bottom: 0.05rem;
  color: var(--text);
}

.process-desc {
  margin: 0;
  color: var(--muted);
}

.process-meta {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

@media (min-width: 860px) {
  .faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
  }

  .faq-grid {
    margin-top: 0;
  }
}

.faq-item {
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 0.7rem 0.9rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
}

.faq-title {
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.faq-item[aria-expanded="true"] .faq-icon {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.faq-panel {
  padding: 0 0.9rem 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
  display: none;
}

.faq-panel p {
  margin: 0.1rem 0 0.25rem;
}

.faq-legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(248, 250, 252, 0.98);
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.4rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.3rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.field-group {
  margin-bottom: 0.9rem;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.field-label span {
  color: var(--muted);
  font-weight: 400;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  padding: 0.55rem 0.6rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(249, 250, 251, 0.9);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field-input:focus-visible,
.field-select:focus-visible,
.field-textarea:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.5);
  background: #ffffff;
}

.field-textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.4;
}

.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 0.15rem;
  display: none;
}

.field-input.error,
.field-select.error,
.field-textarea.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px rgba(185, 28, 28, 0.35);
  background: #fef2f2;
}

.contact-help {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.contact-help strong {
  color: var(--primary-dark);
}

.contact-side {
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-side-card {
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), #020617);
  color: #e5edff;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.contact-side-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.contact-side-text {
  font-size: 0.84rem;
  color: #cbd5f5;
}

.contact-side-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.contact-side-meta a {
  color: var(--primary-dark);
  font-weight: 500;
}

.contact-summary {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.98);
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  display: none;
}

.contact-summary-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.contact-summary-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-summary-list li {
  margin-bottom: 0.15rem;
}

.contact-summary-label {
  font-weight: 600;
  color: var(--text);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%) translateY(120%);
  background: #022c22;
  color: #ecfdf3;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-med), opacity var(--transition-med);
  z-index: 50;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 163, 74, 0.25);
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  padding: 1.4rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(249, 250, 251, 0.98);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links span,
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsiveness tweaks */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-card {
    margin: 0 -0.35rem;
  }
}
