/* ══════════════════════════════════════════════════
   VAST Security — Pages CSS
   Styles communs à toutes les pages produit
══════════════════════════════════════════════════ */

/* ── Hero générique ── */
.vast-page-hero {
  background: var(--c-navy);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.vast-page-hero-inner {
  position: relative; z-index: 1;
  max-width: 760px;
}
.vast-page-hero h1 {
  color: #fff; margin-bottom: 16px;
}
.vast-page-hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--c-teal), var(--c-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vast-page-hero-sub {
  font-size: 15px; color: rgba(255,255,255,.5);
  line-height: 1.8; max-width: 580px; margin-bottom: 28px;
}
.vast-page-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ── Cards grille ── */
.vast-cards-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.vast-cards-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 900px) {
  .vast-cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vast-cards-grid-3,
  .vast-cards-grid-2 { grid-template-columns: 1fr; }
}

/* ── Card générique ── */
.vast-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.vast-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vast-card-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 20px;
}
.vast-card-ico svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.vast-card-tag {
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.vast-card h3 { font-size: 16px; margin-bottom: 8px; }
.vast-card p  { font-size: 13px; color: var(--c-muted); line-height: 1.65; }

/* ── Card dark ── */
.vast-card-dark {
  background: var(--c-navy3);
  border-color: rgba(255,255,255,.08);
}
.vast-card-dark h3 { color: #fff; }
.vast-card-dark p  { color: rgba(255,255,255,.5); }

/* ── CTA final inline ── */
.vast-cta-band {
  background: var(--c-navy);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden;
}
.vast-cta-band::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,194,184,.1), transparent 70%);
  pointer-events: none;
}
.vast-cta-band-text { position: relative; z-index: 1; }
.vast-cta-band-text .vast-tag { margin-bottom: 6px; }
.vast-cta-band-text h2 { color: #fff; font-size: clamp(18px, 2vw, 24px); margin-bottom: 6px; }
.vast-cta-band-text p  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; }
.vast-cta-band-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }

@media (max-width: 768px) {
  .vast-cta-band { flex-direction: column; align-items: flex-start; padding: 24px; }
  .vast-cta-band-btns { width: 100%; }
}

/* ── Split layout (2 colonnes) ── */
.vast-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.vast-split.vast-split-reverse .vast-split-visual { order: -1; }
@media (max-width: 900px) {
  .vast-split { grid-template-columns: 1fr; gap: 36px; }
  .vast-split.vast-split-reverse .vast-split-visual { order: 0; }
}
.vast-split-text h2 { margin-bottom: 14px; }
.vast-split-text p  { font-size: 15px; color: var(--c-muted); line-height: 1.8; margin-bottom: 20px; }

/* ── Feature list ── */
.vast-feature-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.vast-feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #3A4A6A; }
.vast-feature-item svg { width: 14px; height: 14px; stroke: var(--c-teal); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 3px; }

/* ── Steps numérotés ── */
.vast-steps { display: flex; flex-direction: column; gap: 0; }
.vast-step {
  display: flex; gap: 20px; padding-bottom: 28px; position: relative;
}
.vast-step::before {
  content: ''; position: absolute;
  left: 20px; top: 44px; bottom: 0;
  width: 2px; background: var(--c-border);
}
.vast-step:last-child::before { display: none; }
.vast-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 14px; font-weight: 700;
  position: relative; z-index: 1;
}
.vast-step-content {}
.vast-step-title { font-size: 16px; font-weight: 700; color: var(--c-text); margin-bottom: 6px; }
.vast-step-desc  { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* ── Stats band ── */
.vast-stats-band {
  background: var(--c-navy3);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vast-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.vast-stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.vast-stat-item:last-child { border-right: none; }
.vast-stat-num {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 6px; color: var(--c-teal);
}
.vast-stat-label { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }

@media (max-width: 768px) {
  .vast-stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); }
  .vast-stat-item  { background: var(--c-navy3); border-right: none; padding: 20px; }
}

/* ── Page légale (mentions, privacy) ── */
.vast-legal-hero {
  background: var(--c-navy);
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vast-legal-hero h1 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.vast-legal-date {
  font-family: var(--f-mono); font-size: 12px;
  color: rgba(255,255,255,.3); margin-top: 8px;
}
.vast-legal-content {
  max-width: 760px; margin: 0 auto;
  padding: 48px var(--container-pad) 80px;
}
.vast-legal-content h2 {
  font-size: 18px; font-weight: 700;
  color: var(--c-text); margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}
.vast-legal-content h2:first-child { margin-top: 0; border-top: none; }
.vast-legal-content p { font-size: 14px; color: #3A4A6A; line-height: 1.85; margin-bottom: 14px; }
.vast-legal-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.vast-legal-content li { font-size: 14px; color: #3A4A6A; line-height: 1.7; margin-bottom: 6px; }
.vast-legal-content a { color: var(--c-accent); }


/* ══════════════════════════════════════════════════
   Pages v2 — Composants supplémentaires
══════════════════════════════════════════════════ */

/* ── Comparatif features (tableau check/cross) ── */
.vast-compare-table { width: 100%; border-collapse: collapse; }
.vast-compare-table thead tr { background: var(--c-navy); }
.vast-compare-table th {
  padding: 13px 18px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.55); text-align: left;
}
.vast-compare-table th:first-child { color: #fff; width: 40%; }
.vast-compare-table tbody tr { border-bottom: 1px solid var(--c-border); transition: background .15s; }
.vast-compare-table tbody tr:hover { background: #F8FAFF; }
.vast-compare-table tbody tr:last-child { border-bottom: none; }
.vast-compare-table td { padding: 12px 18px; font-size: 13px; color: #3A4A6A; vertical-align: middle; }
.vast-compare-table td:first-child { font-weight: 600; color: var(--c-text); }
.vast-ct-check { color: var(--c-green); font-size: 16px; font-weight: 700; }
.vast-ct-dash  { color: #D1D5DB; }
.vast-ct-section td { background: var(--c-bg); padding: 9px 18px; font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; color: var(--c-muted); text-transform: uppercase; }

/* ── FAQ améliorée ── */
.vast-faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 720px; margin: 0 auto; }
.vast-faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
.vast-faq-item.open { border-color: var(--c-accent); }
.vast-faq-q {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; padding: 16px 20px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--c-text);
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--f-sans);
  transition: background var(--ease);
}
.vast-faq-q:hover { background: var(--c-bg); }
.vast-faq-q svg { width: 16px; height: 16px; stroke: var(--c-muted); stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 2px; transition: transform var(--ease); }
.vast-faq-item.open .vast-faq-q svg { transform: rotate(180deg); stroke: var(--c-accent); }
.vast-faq-a { padding: 0 20px 16px; font-size: 13px; color: #3A4A6A; line-height: 1.75; }
.vast-faq-a p { margin: 0; }

/* ── Pricing cards améliorées ── */
.vast-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vast-pricing-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.vast-pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vast-pricing-card.featured {
  border: 2px solid var(--c-accent);
  box-shadow: 0 8px 40px rgba(26,92,255,.15);
}
.vast-pricing-header { padding: 28px; }
.vast-pricing-header-dark { background: linear-gradient(160deg, var(--c-navy3), var(--c-navy)); }
.vast-pricing-badge { font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.vast-pricing-name { font-size: 20px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.3px; }
.vast-pricing-desc { font-size: 13px; color: var(--c-muted); line-height: 1.65; margin-bottom: 20px; }
.vast-pricing-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.vast-pricing-num { font-size: 38px; font-weight: 700; letter-spacing: -2px; line-height: 1; }
.vast-pricing-period { font-size: 13px; color: var(--c-muted); font-weight: 400; }
.vast-pricing-note { font-family: var(--f-mono); font-size: 11px; color: var(--c-muted); display: block; margin-bottom: 20px; }
.vast-pricing-divider { height: 1px; background: var(--c-border); }
.vast-pricing-features { padding: 22px 28px; }
.vast-pricing-features-label { font-family: var(--f-mono); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--c-muted); margin-bottom: 12px; display: block; }
.vast-pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #3A4A6A; margin-bottom: 8px; line-height: 1.55; }
.vast-pricing-feature svg { width: 14px; height: 14px; stroke-width: 2; fill: none; flex-shrink: 0; margin-top: 2px; }
.vast-pricing-feature.off { color: var(--c-muted); opacity: .5; }
.vast-pricing-feature.off svg { stroke: var(--c-muted); }
@media (max-width: 900px) { .vast-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ── Timeline ── */
.vast-timeline { display: flex; flex-direction: column; gap: 0; }
.vast-tl-item { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.vast-tl-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--c-border); }
.vast-tl-item:last-child::before { display: none; }
.vast-tl-dot { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--f-mono); font-size: 12px; font-weight: 700; position: relative; z-index: 1; }
.vast-tl-date { font-family: var(--f-mono); font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.vast-tl-desc { font-size: 14px; color: #3A4A6A; line-height: 1.7; }

/* ── Testimonials ── */
.vast-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vast-testi-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.vast-testi-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.vast-testi-quote { font-size: 14px; color: #3A4A6A; line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.vast-testi-quote::before { content: '"'; color: var(--c-teal); font-size: 20px; font-style: normal; }
.vast-testi-author strong { display: block; font-size: 13px; font-weight: 700; color: var(--c-text); }
.vast-testi-author span { font-family: var(--f-mono); font-size: 11px; color: var(--c-muted); }
@media (max-width: 768px) { .vast-testimonials-grid { grid-template-columns: 1fr; } }

/* ── Notice / Callout ── */
.vast-callout {
  display: flex; gap: 12px;
  padding: 14px 18px; border-radius: var(--r-md);
  margin: 20px 0;
}
.vast-callout-info    { background: rgba(26,92,255,.05);  border: 1px solid rgba(26,92,255,.15);  }
.vast-callout-warning { background: rgba(255,122,47,.05); border: 1px solid rgba(255,122,47,.2);  }
.vast-callout-success { background: rgba(34,197,94,.05);  border: 1px solid rgba(34,197,94,.2);   }
.vast-callout-danger  { background: rgba(226,75,74,.05);  border: 1px solid rgba(226,75,74,.2);   }
.vast-callout-icon { font-size: 18px; flex-shrink: 0; }
.vast-callout-text { font-size: 13px; color: #3A4A6A; line-height: 1.7; }
.vast-callout-text strong { color: var(--c-text); }

/* ── Logo cloud (logos clients/partenaires) ── */
.vast-logo-cloud { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 32px 0; }
.vast-logo-cloud img { height: 28px; width: auto; filter: grayscale(1) opacity(.4); transition: filter var(--ease); }
.vast-logo-cloud img:hover { filter: none; }

/* ── Numéros de section ── */
.vast-section-num {
  font-family: var(--f-mono);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 700;
  color: rgba(26,92,255,.08);
  line-height: 1;
  position: absolute;
  top: -20px; right: 0;
  pointer-events: none;
  user-select: none;
}

/* ── Highlight box ── */
.vast-highlight {
  background: linear-gradient(135deg, rgba(26,92,255,.05), rgba(0,194,184,.05));
  border: 1px solid rgba(0,194,184,.15);
  border-radius: var(--r-lg);
  padding: 24px;
}

/* ── Responsive complémentaire ── */
@media (max-width: 768px) {
  .vast-page-hero { padding: 48px 0 40px; }
  .vast-cta-band { padding: 20px; }
  .vast-cta-band-text h2 { font-size: 18px; }
  .vast-stats-band { padding: 28px 0; }
  .vast-stat-num { font-size: 28px; }
}


/* ══════════════════════════════════════════════════
   Pages v3 — Accueil composants spécifiques
══════════════════════════════════════════════════ */

/* Hero home */
.vast-home-hero {
  background: var(--c-navy);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
  text-align: center;
}
.vast-hero-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,92,255,.12), rgba(0,194,184,.06) 50%, transparent 70%);
  pointer-events: none;
}
.vast-home-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.vast-home-hero-title {
  color: #fff; margin-bottom: 18px;
  font-size: clamp(30px, 5.5vw, 58px);
}
.vast-home-hero-title em { font-style: normal; background: linear-gradient(110deg, var(--c-teal), var(--c-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.vast-home-hero-sub { font-size: 16px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 560px; margin: 0 auto 28px; }
.vast-home-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.vast-home-hero-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.vast-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.4); font-family: var(--f-mono); }
.vast-trust-item svg { width: 13px; height: 13px; stroke: var(--c-teal); stroke-width: 2; fill: none; }

/* Carte avec lien (piliers) */
.vast-card-link { color: var(--c-text); }
.vast-card-link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vast-card-arrow { display: block; font-size: 12px; font-weight: 700; margin-top: 12px; transition: gap var(--ease); }

/* Approach section */
.vast-approach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.vast-approach-item { position: relative; }
.vast-approach-num { font-family: var(--f-mono); font-size: 48px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.vast-approach-connector { height: 2px; margin-bottom: 16px; border-radius: 2px; }
.vast-approach-content h3 { color: inherit; font-size: 18px; margin-bottom: 10px; }
.vast-approach-content p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; }
@media (max-width: 768px) { .vast-approach-grid { grid-template-columns: 1fr; } }

/* Use cases grid home */
.vast-uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.vast-uc-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 22px; transition: box-shadow var(--ease), transform var(--ease); }
.vast-uc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vast-uc-card-ico { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 18px; }
.vast-uc-card-ico svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.vast-uc-tag { font-family: var(--f-mono); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px; display: block; }
.vast-uc-title { font-size: 14px; font-weight: 700; color: var(--c-text); margin-bottom: 8px; }
.vast-uc-desc  { font-size: 13px; color: var(--c-muted); line-height: 1.65; }
@media (max-width: 900px) { .vast-uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .vast-uc-grid { grid-template-columns: 1fr; } }

/* Philosophie */
.vast-philosophy-card { background: var(--c-navy3); border-radius: var(--r-lg); padding: 20px; border: 1px solid rgba(255,255,255,.08); }
.vast-philosophy-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 13px; margin-bottom: 4px; }
.vast-philosophy-row:last-child { margin-bottom: 0; }
.vast-philosophy-row.ok  { background: rgba(34,197,94,.08);  color: #86EFAC; }
.vast-philosophy-row.no  { background: rgba(226,75,74,.08);  color: rgba(255,255,255,.4); }
.vast-philosophy-row svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }
.vast-philosophy-row.ok svg  { stroke: var(--c-green); }
.vast-philosophy-row.no svg  { stroke: rgba(226,75,74,.6); }

/* Early Adopter band */
.vast-ea-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: 36px 40px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); }
.vast-ea-content p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 8px; }
.vast-ea-counter { display: flex; flex-direction: column; gap: 8px; min-width: 220px; }
.vast-ea-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.vast-ea-bar-fill { height: 100%; background: var(--c-teal); border-radius: 10px; }
.vast-ea-label { font-family: var(--f-mono); font-size: 12px; color: rgba(255,255,255,.5); }
.vast-ea-label strong { color: var(--c-teal); }
@media (max-width: 768px) { .vast-ea-band { flex-direction: column; padding: 24px; } .vast-ea-counter { width: 100%; } }


/* ════════════════════════════════════════════════
   CF7 — Styles formulaires Contact Form 7
   Mobile-first
════════════════════════════════════════════════ */

/* Wrapper CF7 */
.wpcf7 { width: 100%; }
.wpcf7-form { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.wpcf7-form p { margin: 0 !important; }

/* Inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100% !important;
  padding: 11px 14px !important;
  border: 1.5px solid rgba(28,35,64,.15) !important;
  border-radius: 9px !important;
  font-family: var(--f-sans, 'DM Sans', sans-serif) !important;
  font-size: 14px !important;
  color: var(--c-text, #1C2340) !important;
  background: #fff !important;
  transition: border-color .15s, box-shadow .15s !important;
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box !important;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none !important;
  border-color: var(--c-accent, #1A5CFF) !important;
  box-shadow: 0 0 0 3px rgba(26,92,255,.1) !important;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: var(--c-muted, #6B7494) !important;
}
.wpcf7-form textarea { min-height: 100px !important; resize: vertical !important; line-height: 1.6 !important; }

/* Submit */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  width: 100% !important;
  padding: 13px 22px !important;
  background: var(--c-accent, #1A5CFF) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 9px !important;
  font-family: var(--f-sans, 'DM Sans', sans-serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background .15s !important;
  -webkit-appearance: none;
}
.wpcf7-form input[type="submit"]:hover { background: #3D6FFF !important; }

/* Messages de validation */
.wpcf7-not-valid-tip {
  font-size: 12px !important;
  color: var(--c-red, #E24B4A) !important;
  margin-top: 4px !important;
  display: block !important;
}
.wpcf7-form .wpcf7-not-valid input,
.wpcf7-form .wpcf7-not-valid textarea {
  border-color: var(--c-red, #E24B4A) !important;
}
.wpcf7-response-output {
  margin-top: 12px !important;
  padding: 12px 16px !important;
  border-radius: 9px !important;
  font-size: 13px !important;
  border: 1px solid !important;
}
.wpcf7-mail-sent-ok {
  background: rgba(34,197,94,.08) !important;
  border-color: rgba(34,197,94,.3) !important;
  color: #065F46 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: rgba(226,75,74,.06) !important;
  border-color: rgba(226,75,74,.2) !important;
  color: #991B1B !important;
}
.wpcf7-spam-blocked {
  background: rgba(255,122,47,.06) !important;
  border-color: rgba(255,122,47,.2) !important;
  color: #9A3412 !important;
}

/* Loading state */
.wpcf7-form.submitting input[type="submit"] {
  opacity: .6 !important;
  cursor: wait !important;
}

/* Sur fond sombre (early adopter, etc.) */
.vast-dark-form .wpcf7-form input[type="text"],
.vast-dark-form .wpcf7-form input[type="email"],
.vast-dark-form .wpcf7-form textarea {
  background: rgba(255,255,255,.06) !important;
  border-color: rgba(255,255,255,.12) !important;
  color: #fff !important;
}
.vast-dark-form .wpcf7-form input::placeholder,
.vast-dark-form .wpcf7-form textarea::placeholder { color: rgba(255,255,255,.35) !important; }
.vast-dark-form .wpcf7-form input:focus,
.vast-dark-form .wpcf7-form textarea:focus {
  border-color: var(--c-teal, #00C2B8) !important;
  box-shadow: 0 0 0 3px rgba(0,194,184,.15) !important;
}

/* Mobile */
@media (max-width: 600px) {
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form textarea {
    font-size: 16px !important; /* évite le zoom iOS */
  }
}
