/* ==========================================================================
   OFFER SPRINT — DESIGN SYSTEM SÉLIM AKLIL
   Aligné sur la charte graphique officielle de selimaklil.fr
   ========================================================================== */

/* === VARIABLES === */
:root {
  --font-heading: 'Barlow', 'Inter', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Brand Palette */
  --color-brand-orange: #FA8334;
  --color-brand-yellow: #F4B648;
  --color-brand-blue:   #02008D;
  --color-brand-blue-teal: #02008D;
  --color-green-dark:   #8CD7AC;
  
  /* Grays & Neutrals */
  --color-gray-50:  #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #111827;
  --color-gray-900: #030712;  /* Layout & Radii — Système harmonisé cohérent */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-full: 6px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 35px -5px rgba(0, 0, 0, 0.12);
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-gray-50);
  color: var(--color-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s, color 0.2s;
}

a:hover {
  opacity: 0.85;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.35rem; }
  h3 { font-size: 1.45rem; }
}

p {
  color: var(--color-gray-700);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: var(--color-gray-600);
}

.text-orange {
  color: var(--color-brand-orange);
}

.text-yellow {
  color: var(--color-brand-yellow);
}

.text-blue {
  color: var(--color-brand-blue);
}

.text-center {
  text-align: center;
}

/* === CONTAINER & SECTIONS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.max-w-narrow {
  max-width: 820px;
}

.section-hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-gray-50) 100%);
  border-bottom: 1px solid var(--color-gray-200);
  overflow: hidden;
}

.section-block {
  padding: 5rem 0;
  position: relative;
}

.section-alt {
  padding: 5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  position: relative;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  background-color: var(--color-gray-900);
  color: #ffffff;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--color-gray-800);
}

.announcement-link {
  color: var(--color-brand-yellow);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.announcement-link:hover {
  color: #ffffff;
}

/* === HEADER & NAVIGATION === */
.site-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-gray-900);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-highlight {
  color: var(--color-brand-orange);
  margin-left: 2px;
}

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

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gray-700);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-brand-orange);
}

.nav-cta-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-yellow);
  color: var(--color-brand-blue-teal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta-sm:hover {
  background-color: #f59e0b;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(244, 182, 72, 0.3);
}

/* === SECTION LABELS & BADGES === */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-orange);
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-brand-yellow);
  color: var(--color-brand-blue-teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.badge-tag {
  background: var(--color-brand-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
  margin-left: 0.35rem;
}

/* === DECORATIVE SHAPES === */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

@media (max-width: 860px) {
  .deco { display: none; }
}

.deco-pill {
  border-radius: var(--radius-md);
  border: 2.5px solid rgba(0, 0, 0, 0.08);
}

.deco-circle {
  border-radius: var(--radius-md);
  border: 2.5px solid rgba(0, 0, 0, 0.08);
}

/* === MARQUEE STRIP === */
.marquee-strip {
  width: 100%;
  background-color: var(--color-gray-900);
  overflow: hidden;
  padding: 0.75rem 0;
  border-top: 1px solid var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  white-space: nowrap;
  animation: marqueeAnim 35s linear infinite;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-brand-orange);
  flex-shrink: 0;
}

@keyframes marqueeAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CTA BUTTONS === */
.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green-dark);
  color: var(--color-brand-blue-teal);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 0, 141, 0.12);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.cta-button:hover {
  background-color: #7bc19a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  opacity: 1;
}

.cta-button .sub {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.cta-orange {
  background-color: var(--color-brand-orange);
  color: #ffffff;
}

.cta-orange:hover {
  background-color: #e36e20;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-gray-800);
  border: 1px solid var(--color-gray-300);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: var(--color-gray-100);
  border-color: var(--color-gray-400);
  color: var(--color-gray-900);
  opacity: 1;
}

.btn-block {
  width: 100%;
}

/* === AUTHOR MINI CARD === */
.author-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--color-brand-yellow);
}

.author-name {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--color-gray-900);
}

.author-role {
  font-size: 0.76rem;
  color: var(--color-gray-600);
}

/* === HERO SECTION STRUCTURE === */
.hero-content {
  max-width: 820px;
}

.hero-subhead {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--color-gray-700);
  margin-bottom: 2rem;
  line-height: 1.65;
}

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

.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 700px) {
  .hero-metrics-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-metric-item {
  text-align: center;
  border-right: 1px solid var(--color-gray-200);
  padding: 0 0.5rem;
}

.hero-metric-item:last-child {
  border-right: none;
}

.metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-gray-900);
}

.metric-lbl {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-600);
  margin-top: 0.2rem;
}

.text-strike {
  text-decoration: line-through;
  color: var(--color-gray-400);
  font-size: 0.95rem;
}

/* === DIAGNOSTIC / PROBLEMS CARDS === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background-color: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gray-300);
}

.card-dark {
  background-color: var(--color-gray-900);
  border: 1px solid var(--color-gray-800);
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #ffffff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.card-callout-yellow {
  background-color: #fffbeb;
  border-left: 4px solid var(--color-brand-yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: #92400e;
}

.card-callout-yellow strong {
  color: #78350f;
}

/* Comparison Boxes (Before / After) */
.comp-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.comp-box-bad {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.comp-box-good {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.comp-tag-bad {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: 0.35rem;
}

.comp-tag-good {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 0.35rem;
}

.comp-text {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  color: var(--color-gray-900);
  margin-bottom: 0.4rem;
}

.comp-effect {
  font-size: 0.8rem;
  color: var(--color-gray-600);
}

/* === CHECKLIST & CROSS LIST === */
ul.check-list {
  list-style: none;
  padding: 0;
}

ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

ul.check-list li::before {
  content: "✓";
  color: var(--color-brand-blue-teal);
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

ul.cross-list {
  list-style: none;
  padding: 0;
}

ul.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
}

ul.cross-list li::before {
  content: "✕";
  color: #ef4444;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* === 5 DAYS METHOD CARDS (SELIM STYLE) === */
.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}

.method-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

@media (min-width: 768px) {
  .method-card {
    width: calc(33.333% - 0.9rem);
  }
}

.method-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-orange);
}

.method-bg-num {
  position: absolute;
  top: -15px;
  right: -5px;
  font-size: 6.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  color: var(--color-gray-100);
  z-index: 0;
  pointer-events: none;
  transition: color 0.2s;
}

.method-card:hover .method-bg-num {
  color: rgba(250, 131, 52, 0.12);
}

.method-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-blue-teal);
  background: var(--color-brand-yellow);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

.step-callout {
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.callout-green  { background: #ecfdf5; border-left: 3px solid var(--color-green-dark); color: var(--color-brand-blue-teal); }
.callout-yellow { background: #fffbeb; border-left: 3px solid var(--color-brand-yellow); color: #92400e; }
.callout-orange { background: #fff7ed; border-left: 3px solid var(--color-brand-orange); color: #9a3412; }

/* === SYSTEM PIPELINE OUTPUT BAR === */
.pipeline-box {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-sm);
}

.pipeline-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pipeline-step-item {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  flex: 1 1 130px;
  text-align: center;
}

.pipeline-step-num {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: var(--color-brand-blue-teal);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.pipeline-step-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-gray-900);
}

.pipeline-arrow {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand-orange);
}

@media (max-width: 768px) {
  .pipeline-arrow { display: none; }
  .pipeline-steps { display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* === TARGET GRID (POUR QUI / PAS POUR QUI) === */
.target-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
  background: #ffffff;
}

@media (min-width: 768px) {
  .target-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.target-col {
  padding: 2.25rem;
}

.target-col + .target-col {
  border-top: 1px solid var(--color-gray-200);
}

@media (min-width: 768px) {
  .target-col + .target-col {
    border-top: none;
    border-left: 1px solid var(--color-gray-200);
  }
}

.target-col.yes {
  background-color: #fffbeb;
}

.target-col.no {
  background-color: #ffffff;
}

/* === PRE-SPRINT AUDIT CARD === */
.audit-card {
  background: linear-gradient(135deg, #0f172a 0%, #030712 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 2px solid var(--color-brand-yellow);
  box-shadow: var(--shadow-xl);
}

.audit-card h3 {
  color: #ffffff;
}

.audit-card p {
  color: rgba(255, 255, 255, 0.8);
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

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

.audit-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.audit-item-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-brand-yellow);
  margin-bottom: 0.35rem;
}

.audit-item h4 {
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.audit-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* === PRICING SECTION & CARD === */
.pricing-wrapper {
  max-width: 740px;
  margin: 0 auto;
}

.pricing-box {
  background: #ffffff;
  border: 2px solid var(--color-brand-blue-teal);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pricing-top-ribbon {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
}

.pricing-inner-header {
  padding: 2.25rem 2.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-200);
}

.pricing-badge-seats {
  display: inline-flex;
  align-items: center;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.pricing-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1rem 0 0.5rem;
}

.price-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-brand-orange);
  margin-right: 4px;
}

.price-tax {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-600);
  margin-left: 6px;
}

.pricing-inner-body {
  padding: 2rem 2.25rem;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .pricing-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-core-highlight {
  background-color: #fffbeb;
  border: 1px solid #fef08a;
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #854d0e;
}

.pricing-cta-bottom {
  padding: 0 2.25rem 2.25rem;
  text-align: center;
}

/* === FAQ ACCORDION === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--color-brand-blue-teal);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-orange);
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.35rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  line-height: 1.6;
}

.faq-item.active .faq-body {
  max-height: 500px;
  padding: 0 1.35rem 1.25rem;
}

/* === STICKY BOTTOM BAR === */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid var(--color-brand-yellow);
  padding: 0.75rem 0;
  z-index: 40;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-info-title {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-gray-900);
}

.sticky-info-sub {
  font-size: 0.78rem;
  color: var(--color-brand-orange);
  font-weight: 700;
}

/* === CANDIDATURE MODAL === */
.modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-panel {
  background: #ffffff;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 540px;
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
}

.modal-backdrop.active .modal-panel {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-gray-100);
  border: none;
  color: var(--color-gray-600);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #991b1b;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  text-align: left;
}

.modal-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray-800);
}

.modal-input, .modal-select, .modal-textarea {
  width: 100%;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-input:focus, .modal-select:focus, .modal-textarea:focus {
  outline: none;
  border-color: var(--color-brand-blue-teal);
  box-shadow: 0 0 0 3px rgba(2, 0, 141, 0.1);
  background: #ffffff;
}

.hidden { display: none !important; }

/* === FOOTER (SELIM DESIGN SYSTEM) === */
.page-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--color-gray-200);
  padding: 4rem 0 2rem 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col-title {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-family: var(--font-heading);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: var(--color-gray-600);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--color-brand-orange);
  opacity: 1;
}

.footer-bottom-bar {
  border-top: 1px solid var(--color-gray-200);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-gray-600);
}

/* === RESPONSIVE & MOBILE POLISH (AÉRÉ & LISIBLE) === */
@media (max-width: 640px) {
  h1 { font-size: 2.05rem; line-height: 1.25; margin-bottom: 1.25rem; }
  h2 { font-size: 1.65rem; line-height: 1.3; margin-bottom: 1rem; }
  h3 { font-size: 1.25rem; line-height: 1.35; }
  p { line-height: 1.75; font-size: 0.98rem; }
  
  .container { padding: 0 1.35rem; }
  .section-hero { padding: 2.5rem 0 3.5rem; }
  .section-block, .section-alt { padding: 3.75rem 0; }
  
  .hero-subhead { font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.25rem; }
  .hero-desc { font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
  
  .announcement-bar { text-align: center; padding: 0.65rem 0; }
  .announcement-bar .flex-between { flex-direction: column; gap: 0.45rem; }
  .announcement-link { margin-left: 0; }
  
  .hero-metrics-bar { 
    grid-template-columns: 1fr 1fr; 
    gap: 1.25rem 0.75rem; 
    padding: 1.25rem 1rem; 
    margin-top: 2rem;
  }
  .metric-val { font-size: 1.2rem; }
  .metric-lbl { font-size: 0.75rem; line-height: 1.4; margin-top: 0.35rem; }
  
  .hero-actions-wrap { flex-direction: column; align-items: stretch; gap: 1.25rem; margin-bottom: 2rem; }
  .author-pill { justify-content: center; width: 100%; padding: 0.75rem 1rem; }
  
  .cta-button { width: 100%; padding: 1.1rem 1.35rem; font-size: 1.02rem; }
  
  /* Cards & Spacing */
  .card { padding: 2rem 1.35rem; margin-bottom: 1.5rem; }
  .card-dark { padding: 2.25rem 1.35rem; }
  .audit-card { padding: 2.25rem 1.35rem; }
  
  .method-card { padding: 2.25rem 1.35rem; margin-bottom: 1.75rem; }
  .method-deliverable { padding: 1rem 1.15rem; margin-top: 1.25rem; line-height: 1.6; }
  
  .pricing-wrapper { margin-top: 2rem; }
  .pricing-inner-header { padding: 2.25rem 1.35rem 1.5rem; }
  .pricing-inner-body { padding: 2rem 1.35rem; }
  .pricing-cta-bottom { padding: 0 1.35rem 2.25rem; }
  .price-number { font-size: 3.25rem; }
  .pricing-core-highlight { padding: 1.25rem; line-height: 1.65; }
  
  .target-col { padding: 2.25rem 1.35rem; }
  .check-list li, .cross-list li { margin-bottom: 0.75rem; line-height: 1.6; }
  
  .comp-box-bad, .comp-box-good { padding: 1.25rem; }
  .comp-tag-bad, .comp-tag-good { margin-bottom: 0.5rem; }
  .comp-text { font-size: 0.95rem; line-height: 1.6; }
  .comp-effect { margin-top: 0.65rem; line-height: 1.5; }
  
  /* Modal */
  .modal-panel { padding: 2.25rem 1.5rem; width: 92vw; max-height: 88vh; }
  .modal-form-group { margin-bottom: 1.15rem; }
  .modal-input, .modal-select, .modal-textarea { padding: 0.85rem 1rem; }
  
  /* Sticky Bar */
  .sticky-cta-bar .container { gap: 0.6rem; padding: 0.5rem 1.25rem; }
  .sticky-info-title { font-size: 0.85rem; }
  .sticky-info-sub { font-size: 0.75rem; }
  .sticky-cta-bar .nav-cta-sm { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
  
  /* Footer */
  .page-footer { padding: 3.5rem 0 2rem; }
  .footer-grid { gap: 2rem; margin-bottom: 2.5rem; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.8rem; }
  .hero-metrics-bar { grid-template-columns: 1fr; gap: 0.85rem; }
  .hero-metric-item { border-right: none; border-bottom: 1px solid var(--color-gray-200); padding-bottom: 0.75rem; }
  .hero-metric-item:last-child { border-bottom: none; padding-bottom: 0; }
  .container { padding: 0 1.1rem; }
}
