body.page-id-19161 .hdr,
body.page-id-19161 .hero,
body.page-id-19161 .sec,
body.page-id-19161 .ftr,
body.page-id-19161 section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* évite les effets de conteneur interne */
body.page-id-19161 .hero-bg,
body.page-id-19161 .fcta-bg,
body.page-id-19161 .fcta-bgi {
  width: 100% !important;
  max-width: 100% !important;
}

/* recentrage du contenu */
body.page-id-19161 .hero-c,
body.page-id-19161 .qb,
body.page-id-19161 .ss,
body.page-id-19161 .hdr .in,
body.page-id-19161 .csm,
body.page-id-19161 .cmd {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* responsive */
@media (max-width: 768px) {
  body.page-id-19161 .hero-c,
  body.page-id-19161 .qb,
  body.page-id-19161 .ss,
  body.page-id-19161 .hdr .in,
  body.page-id-19161 .csm,
  body.page-id-19161 .cmd {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: #111F37;
      color: #d7e8fb;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #0A1628; }
    ::-webkit-scrollbar-thumb { background: #2a3a54; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #30b4f7; }

    /* ===== UTILITIES ===== */
    .section-dark { background-color: #111F37; }
    .section-darker { background-color: #0A1628; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
    .container-md { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-white { color: #ffffff; }

    .gradient-text {
      background: linear-gradient(135deg, #30b4f7, #7e72eb, #0bd4fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .glass-card {
      background: rgba(26, 42, 68, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(48, 180, 247, 0.15);
      border-radius: 12px;
    }

    .cta-gradient {
      background: linear-gradient(135deg, #30b4f7, #7e72eb);
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      padding: 16px 32px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .cta-gradient:hover {
      background: linear-gradient(135deg, #4cc4ff, #9488f0);
      box-shadow: 0 0 30px rgba(48, 180, 247, 0.4);
      transform: translateY(-2px);
    }

    .section-padding { padding: 80px 0; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 20px rgba(48, 180, 247, 0.3); }
      50% { box-shadow: 0 0 40px rgba(48, 180, 247, 0.6); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
    .animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
    .animate-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
    .animate-float { animation: float 6s ease-in-out infinite; }

    /* ===== SVG ICONS (inline) ===== */
    .icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
    .icon-sm { width: 16px; height: 16px; }
    .icon-lg { width: 24px; height: 24px; }
    .icon-xl { width: 32px; height: 32px; }
    .icon-xxl { width: 40px; height: 40px; }

    /* =========================================
       HERO SECTION
       ========================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
    }
    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
    }
    .hero__bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(17,31,55,0.8), rgba(17,31,55,0.6), #111F37);
    }
    .hero__decor1 {
      position: absolute;
      top: 80px;
      left: 40px;
      width: 288px;
      height: 288px;
      background: rgba(48,180,247,0.05);
      border-radius: 50%;
      filter: blur(48px);
      animation: float 6s ease-in-out infinite;
    }
    .hero__decor2 {
      position: absolute;
      bottom: 80px;
      right: 40px;
      width: 384px;
      height: 384px;
      background: rgba(126,114,235,0.05);
      border-radius: 50%;
      filter: blur(48px);
      animation: float 6s ease-in-out infinite;
      animation-delay: 3s;
    }
    .hero__content {
      position: relative;
      z-index: 10;
      max-width: 1024px;
      margin: 0 auto;
      padding: 96px 24px;
      text-align: center;
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 9999px;
      border: 1px solid rgba(48,180,247,0.3);
      background: rgba(48,180,247,0.1);
      color: #30b4f7;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 32px;
    }
    .hero h1 {
      text-transform: none !important;
      font-size: clamp(28px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 24px;
      color: #fff;
    }
    .hero__promise {
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(215,232,251,0.8);
      max-width: 768px;
      margin: 0 auto 32px;
    }

    /* Benefits + Pour qui grid */
    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 768px;
      margin: 0 auto 40px;
    }
    @media (max-width: 640px) {
      .hero__grid { grid-template-columns: 1fr; }
    }
    .hero__grid-card {
      padding: 20px;
      text-align: left;
    }
    .hero__grid-card h4 {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .hero__grid-card ul li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 8px;
      font-size: 14px;
      color: rgba(215,232,251,0.8);
    }
    .hero__grid-card ul li .check { color: #30b4f7; margin-top: 2px; flex-shrink: 0; }
    .hero__grid-card ul li .arrow { color: #7e72eb; margin-top: 2px; flex-shrink: 0; }

    /* CTA area */
    .hero__cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-bottom: 0;
    }
    @media (min-width: 640px) {
      .hero__cta { flex-direction: row; justify-content: center; }
    }
    .hero__cta-secondary {
      color: rgba(215,232,251,0.7);
      font-size: 14px;
      text-decoration: underline;
      text-underline-offset: 4px;
      transition: color 0.3s;
    }
    .hero__cta-secondary:hover { color: #fff; }

    /* Stats */
    .hero__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 512px;
      margin: 64px auto 0;
    }
    .hero__stat { text-align: center; }
    .hero__stat-icon { margin: 0 auto 8px; }
    .hero__stat-number { font-size: 24px; font-weight: 700; color: #fff; }
    .hero__stat-label { font-size: 12px; color: rgba(215,232,251,0.6); }

    /* =========================================
       BENEFITS SECTION
       ========================================= */
    .benefits__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    @media (max-width: 768px) {
      .benefits__grid { grid-template-columns: 1fr; }
    }
    .benefit-card {
      padding: 32px;
      transition: all 0.3s;
    }
    .benefit-card:hover { border-color: rgba(48,180,247,0.3); }
    .benefit-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .benefit-card h3 {
      text-transform: none !important;
      font-size: 20px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
      transition: color 0.3s;
    }
    .benefit-card:hover h3 { color: #d7e8fb; }
    .benefit-card p {
      font-size: 14px;
      color: rgba(215,232,251,0.6);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .benefit-card blockquote {
      border-left: 2px solid;
      padding-left: 16px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .benefit-card blockquote p {
      font-size: 14px;
      font-style: italic;
      color: rgba(215,232,251,0.7);
      margin-bottom: 4px;
    }
    .benefit-card blockquote cite {
      font-size: 12px;
      font-style: normal;
      display: block;
    }

    /* =========================================
       BEFORE / AFTER
       ========================================= */
    .ba-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
      margin-bottom: 16px;
    }
    @media (max-width: 768px) {
      .ba-row { grid-template-columns: 1fr; }
      .ba-arrow { display: none; }
    }
    .ba-card {
      padding: 20px;
    }
    .ba-card .ba-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .ba-card .ba-text {
      font-size: 14px;
    }
    .ba-card-before { border-color: rgba(239,68,68,0.1); }
    .ba-card-before .ba-label { color: rgba(239,68,68,0.6); }
    .ba-card-before .ba-text { color: rgba(215,232,251,0.6); }
    .ba-card-after { border-color: rgba(48,180,247,0.2); }
    .ba-card-after .ba-label { color: #30b4f7; }
    .ba-card-after .ba-text { color: rgba(215,232,251,0.8); }
    .ba-inner { display: flex; align-items: flex-start; gap: 12px; }
    .ba-arrow { color: #30b4f7; display: flex; align-items: center; justify-content: center; }

    /* =========================================
       SECTION HEADINGS
       ========================================= */
    .section-heading {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-heading h2 {
      text-transform: none !important;
      font-size: clamp(24px, 4vw, 40px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .section-heading p {
      font-size: 18px;
      color: rgba(215,232,251,0.6);
      max-width: 640px;
      margin: 0 auto;
    }

    /* =========================================
       METHOD SECTION — PHASES
       ========================================= */
    .phase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 64px;
    }
    @media (max-width: 1024px) {
      .phase { grid-template-columns: 1fr; }
    }
    .phase--reverse .phase__text { order: 2; }
    .phase--reverse .phase__img { order: 1; }
    @media (max-width: 1024px) {
      .phase--reverse .phase__text { order: 1; }
      .phase--reverse .phase__img { order: 2; }
    }
    .phase__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 9999px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 16px;
    }
    .phase__text h3 {
      text-transform: none !important;
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .phase__text > p {
      font-size: 15px;
      color: rgba(215,232,251,0.6);
      margin-bottom: 24px;
    }
    .phase__list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }
    .phase__list li .icon { flex-shrink: 0; margin-top: 2px; }
    .phase__list li span { font-size: 14px; color: rgba(215,232,251,0.7); }
    .phase__note {
      margin-top: 24px;
      font-size: 14px;
      font-weight: 500;
      border-left: 2px solid;
      padding-left: 16px;
    }
    .phase__img {
      position: relative;
    }
    .phase__img img {
      border-radius: 16px;
      width: 100%;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
    }
    .phase__img-overlay {
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: linear-gradient(to top, rgba(10,22,40,0.6), transparent);
    }

    /* Phase 2 numbered list */
    .phase2-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    @media (max-width: 640px) {
      .phase2-grid { grid-template-columns: 1fr; }
    }
    .phase2-grid .p2-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .phase2-grid .p2-num {
      color: #7e72eb;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
      width: 20px;
      text-align: right;
    }
    .phase2-grid .p2-text {
      font-size: 12px;
      color: rgba(215,232,251,0.7);
    }

    /* =========================================
       FOR WHO SECTION
       ========================================= */
    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-bottom: 64px;
    }
    @media (max-width: 768px) {
      .profiles-grid { grid-template-columns: 1fr; }
    }
    .profile-card {
      padding: 32px;
      transition: all 0.3s;
    }
    .profile-card:hover { border-color: rgba(48,180,247,0.3); }
    .profile-card__icon {
      width: 32px;
      height: 32px;
      color: #30b4f7;
      margin-bottom: 20px;
    }
    .profile-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .profile-card > p {
      font-size: 14px;
      color: rgba(215,232,251,0.6);
      margin-bottom: 20px;
    }
    .profile-card__result {
      background: rgba(48,180,247,0.05);
      border: 1px solid rgba(48,180,247,0.1);
      border-radius: 8px;
      padding: 16px;
    }
    .profile-card__result h5 {
      font-size: 12px;
      font-weight: 600;
      color: #30b4f7;
      margin-bottom: 4px;
    }
    .profile-card__result p {
      font-size: 12px;
      color: rgba(215,232,251,0.7);
    }

    /* Not for you */
    .not-for-you {
      max-width: 640px;
      margin: 0 auto;
      padding: 32px;
      border-color: rgba(239,68,68,0.1);
    }
    .not-for-you h3 {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
    }
    .not-for-you li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }
    .not-for-you li .icon { flex-shrink: 0; margin-top: 2px; color: rgba(239,68,68,0.5); }
    .not-for-you li span { font-size: 14px; color: rgba(215,232,251,0.6); }

    /* =========================================
       INCLUDED / PRICING
       ========================================= */
    .included-item {
      padding: 20px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 12px;
      transition: all 0.3s;
    }
    .included-item:hover { border-color: rgba(48,180,247,0.2); }
    .included-item .icon { flex-shrink: 0; margin-top: 2px; color: #30b4f7; }
    .included-item strong { font-size: 14px; color: #fff; font-weight: 500; display: block; }
    .included-item small { font-size: 12px; color: rgba(215,232,251,0.5); margin-top: 4px; display: block; }

    /* Certifications grid */
    .certs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 768px) {
      .certs-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .certs-grid { grid-template-columns: 1fr; }
    }
    .cert-card {
      padding: 24px;
    }
    .cert-card__header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .cert-card__icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cert-card__number {
      font-size: 12px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 9999px;
    }
    .cert-card h3 {
      text-transform: none !important;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
    }
    .cert-card p {
      font-size: 12px;
      color: rgba(215,232,251,0.6);
      line-height: 1.6;
    }

    /* Pricing card */
    .pricing-card {
      max-width: 512px;
      margin: 0 auto 64px;
      padding: 32px;
      border-color: rgba(48,180,247,0.2);
    }
    .pricing-card__price {
      font-size: 48px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 28px;
    }
    .pricing-card__sub {
      font-size: 14px;
      color: rgba(215,232,251,0.5);
      margin-bottom: 32px;
    }
    .pricing-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      border-radius: 12px;
      margin-bottom: 16px;
    }
    .pricing-option strong { font-size: 14px; color: #fff; font-weight: 500; display: block; }
    .pricing-option small { font-size: 12px; color: rgba(215,232,251,0.5); display: block; margin-top: 2px; }
    .pricing-option .price { font-size: 20px; font-weight: 700; color: #fff; }
    .pricing-card .cta-gradient { width: 100%; justify-content: center; margin-bottom: 16px; }
    .pricing-card__question {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: rgba(215,232,251,0.5);
      font-size: 14px;
      transition: color 0.3s;
    }
    .pricing-card__question:hover { color: #30b4f7; }

    /* ROI */
    .roi-card {
      max-width: 768px;
      margin: 0 auto 64px;
      padding: 32px;
      border-color: rgba(48,180,247,0.1);
    }
    .roi-card h3 {
      text-transform: none !important;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .roi-card p {
      font-size: 14px;
      color: rgba(215,232,251,0.7);
      line-height: 1.7;
    }
    .roi-card .highlight { color: #fff; font-weight: 500; }
    .roi-card .highlight-blue { color: #30b4f7; font-weight: 500; }

    /* Comparison table */
    .comparison-table {
      width: 100%;
      font-size: 14px;
      border-collapse: collapse;
      overflow-x: auto;
    }
    .comparison-table th {
      text-align: left;
      padding: 12px 16px;
      color: rgba(215,232,251,0.5);
      font-weight: 500;
      border-bottom: 1px solid #2a3a54;
    }
    .comparison-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(42,58,84,0.5);
      color: rgba(215,232,251,0.6);
    }
    .comparison-table tr.highlight-row { background: rgba(48,180,247,0.05); }
    .comparison-table tr.highlight-row td:first-child { color: #30b4f7; font-weight: 600; }
    .comparison-table tr.highlight-row td { color: #fff; }
    .comparison-table tr.highlight-row td:nth-child(4) { color: #30b4f7; }
    .table-wrapper { overflow-x: auto; }
    .comparison-note {
      text-align: center;
      font-size: 14px;
      color: #30b4f7;
      font-weight: 500;
      margin-top: 24px;
    }

    /* =========================================
       FAQ SECTION
       ========================================= */
    .faq-item {
      margin-bottom: 12px;
    }
    .faq-question {
      text-transform: none !important;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: none;
      border: none;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      text-align: left;
      cursor: pointer;
      transition: color 0.3s;
      font-family: inherit;
    }
    .faq-question:hover { color: #30b4f7; }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s;
      color: rgba(215,232,251,0.4);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 24px;
    }
    .faq-item.open .faq-answer {
      max-height: 600px;
      padding: 0 24px 20px;
    }
    .faq-answer p {
      font-size: 14px;
      color: rgba(215,232,251,0.7);
      line-height: 1.7;
      white-space: pre-line;
    }

    /* =========================================
       CLOSING SECTION
       ========================================= */
    .closing {
      position: relative;
      overflow: hidden;
    }
    .closing__decor1 {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: rgba(48,180,247,0.05);
      border-radius: 50%;
      filter: blur(48px);
    }
    .closing__decor2 {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: rgba(126,114,235,0.05);
      border-radius: 50%;
      filter: blur(48px);
    }
    .closing__content {
      position: relative;
      z-index: 10;
    }
    .closing h2 {
      text-transform: none !important;
      font-size: clamp(24px, 4vw, 40px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
      line-height: 1.3;
    }
    .closing h2 .faded { color: rgba(215,232,251,0.4); }
    .closing__says {
      font-size: clamp(16px, 2vw, 20px);
      color: rgba(215,232,251,0.8);
      margin-bottom: 16px;
    }
    .closing blockquote {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 600;
      margin-bottom: 32px;
      line-height: 1.5;
    }
    .closing__desc {
      font-size: 14px;
      color: rgba(215,232,251,0.6);
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
    .closing__testimonial {
      max-width: 448px;
      margin: 0 auto 40px;
      padding: 24px;
    }
    .closing__testimonial p {
      font-size: 14px;
      font-style: italic;
      color: rgba(215,232,251,0.7);
      margin-bottom: 8px;
    }
    .closing__testimonial cite {
      font-size: 12px;
      font-style: normal;
      color: #30b4f7;
    }
    .closing__ready {
      font-size: 14px;
      color: rgba(215,232,251,0.5);
      margin-bottom: 32px;
    }
    .closing__cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    @media (min-width: 640px) {
      .closing__cta { flex-direction: row; justify-content: center; }
    }
    .closing__cta-secondary {
      color: rgba(215,232,251,0.5);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s;
    }
    .closing__cta-secondary:hover { color: #30b4f7; }

    /* Footer */
    .footer {
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid #2a3a54;
    }
    .footer__name {
      font-size: 14px;
      color: rgba(215,232,251,0.4);
      font-weight: 500;
      margin-bottom: 8px;
    }
    .footer__info {
      font-size: 12px;
      color: rgba(215,232,251,0.3);
      line-height: 1.7;
    }
