*,
::after,
::before,
::backdrop {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);

  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);

  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);

  --primary: #030213;
  --primary-foreground: oklch(1 0 0);

  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;

  --muted: #ececf0;
  --muted-foreground: #717182;

  --accent: #e9ebef;
  --accent-foreground: #030213;

  --destructive: #d4183d;
  --destructive-foreground: #ffffff;

  --border: rgba(0, 0, 0, 0.1);

  --input: transparent;
  --input-background: #f3f3f5;

  --switch-background: #cbced4;

  --font-weight-medium: 500;
  --font-weight-normal: 400;

  --ring: oklch(0.708 0 0);

  --radius: 0.625rem;

  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);

  --sidebar-primary: #030213;
  --sidebar-primary-foreground: oklch(0.985 0 0);

  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);

  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

body {
  font-size: var(--font-size);
  background-color: var(--background);
  color: var(--foreground);

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}
h2, h3 {
  font-weight: 500;
}
/* ================= HEADER ================= */

/* Main header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0; /* slate-200 */
  z-index: 50;
}

/* Container */
.header-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 1rem 1.5rem; /* py-4 px-6 */
}

/* Content */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  background: none;
  border: none;
  cursor: pointer;

  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.8;
}

/* Icon */
.header-icon {
  width: 32px;
  height: 32px;

  fill: none;
  stroke: #334155; /* slate-700 */
  stroke-width: 2;
}

/* Title */
.header-title {
  font-size: 1.25rem; /* text-xl */
  color: #0f172a; /* slate-900 */
  font-weight: 600;
}

/* Navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

/* Nav buttons */
.nav-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;

  font-size: 0.875rem;

  border: none;
  background: none;

  color: #475569; /* slate-600 */
  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-btn:hover {
  background-color: #f1f5f9; /* slate-100 */
}

/* Active button */
.nav-active {
  background-color: #334155; /* slate-700 */
  color: white;
}
.nav-active:hover {
  background-color: #334155; /* slate-700 */
  color: white;
}
/* Responsive (md) */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* ================= METHODS SECTION ================= */

.methods {
  padding: 5rem 0;
  background-color: var(--background);
}

/* Container */
.methods-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Title */
.methods-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.methods-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

/* Cards list */
.methods-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Card */
.method-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;

  text-align: left;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.method-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.method-card h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.method-card p {
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Responsive */
@media (min-width: 768px) {
  .methods-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Warning box */
.methods-warning {
  background-color: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 2rem;
  text-align: left;
}

.methods-warning h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.warning-text {
  color: #334155;
  margin-bottom: 1.5rem;
}

/* Alert */
.warning-alert {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;

  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.375rem;

  padding: 1rem;
  margin-bottom: 1.5rem;

  color: #92400e;
  font-size: 0.9rem;
}

/* CTA */
.methods-cta {
  text-align: center;
}

/* Secondary button */
.btn-secondary {
  background-color: var(--primary);
  color: var(--primary-foreground);

  border: none;
  border-radius: 0.375rem;

  padding: 0.5rem 1.25rem;

  font-size: 0.875rem;
  font-weight: 500;

  cursor: pointer;

  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background-color: #02010d;
}

/* ================= HERO SECTION ================= */

.hero {
  padding-top: 8rem; /* pt-32 */
  padding-bottom: 5rem; /* pb-20 */

  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* Container */
.hero-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Intro */
.hero-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive title */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Info box */
.hero-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 2rem;
  margin-bottom: 3rem;

  color: #334155;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Problems */
.hero-problems {
  margin-bottom: 4rem;
  text-align: center;
}

.hero-problems h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.hero-problems p {
  font-size: 1.125rem;
  color: #334155;
  max-width: 48rem;
  margin: 2.5rem auto 2rem;
}

/* Grid */
.problem-grid {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

/* Problem item */
.problem-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 0.375rem;
  color: #314158;
  font-size: 0.95rem;
}

.problem-item svg {
  stroke: #dc2626;
}

/* Mission */
.hero-mission {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  color: #334155;
}

/* Engagement */
.hero-engagement {
  background: #334155;
  color: white;

  padding: 2rem;
  border-radius: var(--radius);
}

.hero-engagement h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Engagement grid */
.engagement-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

/* Engagement item */
.engagement-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;

  font-size: 0.95rem;
}

/* CTA */
.hero-cta {
  text-align: center;
}

/* Button */
.btn-primary {
  background: white;
  color: var(--primary);

  border: none;
  border-radius: 0.375rem;

  padding: 0.5rem 1rem;

  font-size: 0.875rem;
  font-weight: 500;

  cursor: pointer;

  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #f1f5f9;
}

/* ================= AIDES SECTION ================= */

.aides {
  padding: 5rem 0;
  background-color: #f8fafc;
}

/* Container */
.aides-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Title */
.aides-title {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

/* Grid */
.aides-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

/* Card */
.aides-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 2rem;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.aides-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Text */
.aides-intro {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.aides-text {
  color: #334155;
  line-height: 1.6;
}

/* List */
.aides-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}

.aides-list li {
  margin-bottom: 0.5rem;
  color: #334155;
}

/* Warnings */
.aides-warnings {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.aides-warning-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  background: #fef2f2;
  border: 1px solid #fecaca;

  border-radius: 0.375rem;
  padding: 0.75rem 1rem;

  font-size: 0.9rem;
  color: #7f1d1d;
}

/* Bottom highlight */
.aides-highlight {
  background: #334155;
  color: white;

  border-radius: var(--radius);
  padding: 2rem;

  text-align: center;
  font-size: 1.125rem;
}

/* ================= ANNULATION SECTION ================= */

.annulation {
  padding: 5rem 0;
  background-color: white;
}

/* Container */
.annulation-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Title */
.annulation-title {
  font-size: 2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

/* Highlight box */
.annulation-highlight {
  background: #ecfdf5;
  border: 2px solid #16a34a;

  border-radius: var(--radius);
  padding: 2rem;

  text-align: center;
  margin-bottom: 3rem;
}

.annulation-highlight h3 {
  font-size: 1.5rem;
  color: #14532d;
  margin-bottom: 1rem;
}

.annulation-highlight p {
  font-size: 1.1rem;
  color: #334155;
}

/* Grid */
.annulation-grid {
  display: grid;
  gap: 1.5rem;

  margin-bottom: 3rem;
}

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

/* Item */
.annulation-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  background: #f8fafc;
  border: 1px solid var(--border);

  border-radius: var(--radius);
  padding: 1.25rem;

  font-size: 1.1rem;
  color: #334155;
}

.annulation-item svg {
  stroke: #16a34a;
}

/* Info area */
.annulation-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Arrow box */
.annulation-arrow {
  background: #334155;
  color: white;

  border-radius: var(--radius);
  padding: 1.5rem;

  display: flex;
  align-items: center;
  gap: 1rem;

  font-size: 1.1rem;
}

.annulation-arrow p {
  margin: 0;
}

/* CTA box */
.annulation-cta {
  background: #f8fafc;
  border: 1px solid var(--border);

  border-radius: var(--radius);
  padding: 2rem;

  text-align: center;
}

.annulation-cta p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1.5rem;
}

/* Button */
.annulation-button {
  background: #334155;
  color: white;

  border: none;
  border-radius: 0.375rem;

  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;

  cursor: pointer;
  transition: background 0.2s ease;
}

.annulation-button:hover {
  background: #1e293b;
}

/* ================= ACCOMPAGNEMENT ================= */

.accompagnement {
  padding: 5rem 0;
  background: #f8fafc;
}

.accompagnement-container {
  max-width: 64rem;
  margin: auto;
  padding: 0 1.5rem;
}

/* Titles */

.accompagnement-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.accompagnement-process h3,
.accompagnement-limits h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Grid */

.accompagnement-grid {
  display: grid;
  gap: 1.5rem;
}

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

/* Cards */

.accompagnement-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;

  transition: border 0.2s ease;
}

.accompagnement-card:hover {
  border-color: #cbd5e1;
}

.accompagnement-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Icon */

.accompagnement-icon {
  background: #334155;
  color: white;

  padding: 0.75rem;
  border-radius: 0.5rem;

  display: flex;
  align-items: center;
  justify-content: center;
}

.accompagnement-icon svg {
  width: 24px;
  height: 24px;
}

/* Text */

.accompagnement-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.accompagnement-card p {
  color: #64748b;
  line-height: 1.5;
}

/* Limits */

.accompagnement-limits {
  margin-top: 4rem;

  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.accompagnement-warnings {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.accompagnement-warnings svg {
  stroke: #e7000b;
}

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

.warning-item {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.75rem;
  border-radius: 0.375rem;
  text-align: left;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Final CTA */

.accompagnement-final {
  background: #334155;
  color: white;

  border-radius: var(--radius);
  padding: 2rem;

  text-align: center;
}

.accompagnement-final p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Button */

.accompagnement-button {
  background: white;
  color: #0f172a;

  border: none;
  border-radius: 0.375rem;

  padding: 0.6rem 1.25rem;
  font-weight: 500;

  cursor: pointer;
  transition: background 0.2s ease;
}

.accompagnement-button:hover {
  background: #e2e8f0;
}


/* CONTACT SECTION */

.contact-section {
  padding: 80px 20px;
  background: #ffffff;
}

.contact-container {
  max-width: 900px;
  margin: auto;
}


/* Titles */

.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0f172a;
  font-weight: 500;
}

.contact-subtitle {
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 50px;
}


/* Info Cards */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  display: flex;
  gap: 15px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
}

.info-card svg {
  color: #334155;
  flex-shrink: 0;
  margin-top: 4px;
}

.info-card h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}


/* Form Box */

.contact-form-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
}


/* Form */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  border: 1px solid #cbd5f5;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #475569;
}


/* Button */

.submit-btn {
  background: #334155;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 0.95rem;
  cursor: pointer;

  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #1e293b;
}


/* Footer Note */

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}


/* ================= FOOTER ================= */

/* Footer main */
.footer {
  background-color: #0f172a; /* slate-900 */
  color: #cbd5e1; /* slate-300 */
  padding: 3rem 0; /* py-12 */
}

/* Container */
.footer-container {
  max-width: 64rem; /* max-w-5xl */
  margin: 0 auto;
  padding: 0 1.5rem; /* px-6 */
}

/* Main row */
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem; /* gap-6 */
}

/* Responsive (md breakpoint = 768px) */
@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
  }

  .footer-text {
    text-align: right;
  }
}

/* Brand section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
}

.footer-icon {
  width: 1.5rem; /* w-6 */
  height: 1.5rem; /* h-6 */
}

.footer-title {
  font-size: 1.125rem; /* text-lg */
}

/* Text section */
.footer-text {
  text-align: center;
}

.footer-copy {
  font-size: 0.875rem; /* text-sm */
}

.footer-subtext {
  margin-top: 0.5rem; /* mt-2 */
  font-size: 0.875rem;
  color: #94a3b8; /* slate-400 */
}

/* Bottom section */
.footer-bottom {
  margin-top: 2rem; /* mt-8 */
  padding-top: 2rem; /* pt-8 */
  border-top: 1px solid #1e293b; /* slate-800 */
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8; /* slate-400 */
}
