    @font-face {
      font-family: 'Century Gothic';
      src: url('assets/fonts/Century Gothic/centurygothic.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }
    @font-face {
      font-family: 'Century Gothic';
      src: url('assets/fonts/Century Gothic/centurygothic_bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }
    @font-face {
      font-family: 'PP Neue Machina';
      src: url('assets/fonts/PP Neue Machina/PPNeueMachina-PlainRegular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }
    @font-face {
      font-family: 'PP Neue Machina';
      src: url('assets/fonts/PP Neue Machina/PPNeueMachina-PlainMedium.ttf') format('truetype');
      font-weight: 500;
      font-style: normal;
    }
    @font-face {
      font-family: 'PP Neue Machina';
      src: url('assets/fonts/PP Neue Machina/PPNeueMachina-PlainUltrabold.otf') format('opentype');
      font-weight: 700 800;
      font-style: normal;
    }
    :root {
      --blue-deep: #1B2FE0;
      --blue: #2F5CF0;
      --blue-bright: #2BA6E8;
      --blue-pale: #EAF0FF;
      --green: #17D67D;
      --ink: #15161F;
      --muted: #5C6270;
      --bg: #FFFFFF;
      --bg-alt: #F4F6FB;
      --border: #E6E8F0;
      --radius: 16px;
      --max: 1180px;
      --font-head: 'PP Neue Machina', sans-serif;
      --font-body: 'Century Gothic', sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3 {
      font-family: var(--font-head);
      margin: 0;
      line-height: 1.18;
      letter-spacing: -0.01em;
      font-weight: 700;
    }

    p {
      margin: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    section {
      position: relative;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    .eyebrow {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .eyebrow .diamond {
      width: 8px;
      height: 8px;
      background: var(--blue);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 26px;
      border-radius: 10px;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--blue-deep);
      transform: translateY(-2px);
      /* box-shadow: 0 12px 26px -12px rgba(47, 92, 240, .5); */
      color: #fff;
    }

    .btn-outline {
      border-color: var(--border);
      color: var(--ink);
      background: #fff;
    }

    .btn-outline:hover {
      border-color: var(--blue);
      color: var(--blue);
      transform: translateY(-2px);
    }

    .btn-white {
      background: #fff;
      color: var(--blue-deep);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .25);
    }

    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    [data-reveal].in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---------- HEADER ---------- */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 36px;
      width: auto;
    }

    .nav-links {
      display: none;
      gap: 28px;
      align-items: center;
    }

    @media(min-width:900px) {
      .nav-links {
        display: flex;
      }
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--muted);
      transition: color .15s ease;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .partner-chip {
      display: none;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 6px 12px;
    }

    @media(min-width:1050px) {
      .partner-chip {
        display: flex;
      }
    }

    .nav-cta {
      display: none;
    }

    @media(min-width:900px) {
      .nav-cta {
        display: inline-flex;
      }
    }

    .burger {
      display: flex;
      width: 22px;
      height: 16px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .burger span {
      display: block;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
    }

    @media(min-width:900px) {
      .burger {
        display: none;
      }
    }

    /* ---------- HERO ---------- */
    .hero {
      background: var(--bg);
      padding: 100px 0 0;
      text-align: center;
      overflow: hidden;
    }

    .hero-inner {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: clamp(34px, 5.4vw, 54px);
      margin-bottom: 22px;
    }

    .highlight {
      position: relative;
      display: inline-block;
      color: #fff;
      padding: 2px 18px;
      background: var(--green);
      border-radius: 8px;
    }

    .hero p.lede {
      font-size: 17.5px;
      color: var(--muted);
      max-width: 590px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }

    .hero .cta-row {
      justify-content: center;
      margin-bottom: 56px;
    }

    .path-panels {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 30px 60px -30px rgba(20, 30, 90, .25);
    }

    @media(max-width:680px) {
      .path-panels {
        grid-template-columns: 1fr;
      }
    }

    .path-panel {
      padding: 36px 32px;
      text-align: left;
      color: #fff;
      position: relative;
      transition: transform .25s ease;
      display: block;
    }

    .path-panel:hover {
      transform: scale(1.015);
    }

    .path-panel.a {
      background: linear-gradient(135deg, var(--blue-deep), #3247E8);
    }

    .path-panel.b {
      background: linear-gradient(135deg, var(--blue-bright), #4FC3EE);
    }

    .path-panel .tag {
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      opacity: .85;
      margin-bottom: 10px;
      display: block;
    }

    .path-panel h3 {
      color: #fff;
      font-size: 21px;
      margin-bottom: 10px;
    }

    .path-panel p {
      font-size: 14px;
      color: rgba(255, 255, 255, .9);
      margin-bottom: 18px;
    }

    .path-panel .go {
      font-size: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .guide-line {
      margin-top: 32px;
      margin-bottom: 0;
      padding-bottom: 90px;
      font-size: 15px;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .guide-line .btn {
      padding: 10px 20px;
      font-size: 14px;
    }

    /* ---------- SECTION GENERIC ---------- */
    .section {
      padding: 92px 0;
    }

    .section-head {
      max-width: 680px;
      margin: 0 auto 50px;
      text-align: center;
    }

    .section-head.left {
      text-align: left;
      margin: 0 0 48px;
    }

    .section-head h2 {
      font-size: clamp(26px, 3.2vw, 36px);
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    /* ---------- SCENARIOS ---------- */
    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .scenario-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 24px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .scenario-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px -28px rgba(20, 30, 90, .25);
      border-color: #c9d3f5;
    }

    .icon-badge {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--blue);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .scenario-card h3 {
      font-size: 16.5px;
      font-weight: 700;
      font-family: var(--font-body);
      margin-bottom: 9px;
      line-height: 1.4;
    }

    .scenario-card p {
      font-size: 14.5px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .bridge {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--blue-deep);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .inline-cta {
      margin-top: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 18px;
      padding-top: 32px;
      border-top: 1px solid var(--border);
    }

    .inline-cta p {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 16.5px;
      max-width: 440px;
    }

    /* ---------- SERVICES ---------- */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px -28px rgba(20, 30, 90, .25);
    }

    .service-card h3 {
      font-size: 18px;
      margin-bottom: 2px;
    }

    .service-card p {
      font-size: 14.5px;
      color: var(--muted);
      flex-grow: 1;
    }

    .service-link {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .service-link svg {
      transition: transform .2s ease;
    }

    .service-card:hover .service-link svg {
      transform: translateX(3px);
    }

    /* ---------- WHO WE WORK WITH ---------- */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }

    .audience-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px 22px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .audience-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px -28px rgba(20, 30, 90, .25);
    }

    .audience-card h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .audience-card p {
      font-size: 13.5px;
      color: var(--muted);
    }

    /* ---------- APPROACH ---------- */
    .approach {
      background: linear-gradient(100deg, var(--blue-deep), var(--green));
      color: #fff;
    }

    .approach .section-head p {
      color: rgba(255, 255, 255, .85);
    }

    .approach .eyebrow {
      color: #fff;
    }

    .approach .eyebrow .diamond {
      background: #fff;
    }

    .stepper {
      max-width: 760px;
      margin: 0 auto;
    }

    .step {
      position: relative;
      display: flex;
      gap: 24px;
      padding-bottom: 44px;
    }

    .step:last-child {
      padding-bottom: 0;
    }

    .step-rail {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 22px;
    }

    .step-node {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      color: var(--blue-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 11px;
      flex-shrink: 0;
      z-index: 2;
    }

    .step-line {
      width: 2px;
      flex-grow: 1;
      background: rgba(255, 255, 255, .25);
      margin-top: 2px;
      position: relative;
      overflow: hidden;
    }

    .step-line::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: #fff;
      transition: height 1s ease;
    }

    .step.in-view .step-line::after {
      height: 100%;
    }

    .step-body h3 {
      font-size: 19px;
      margin-bottom: 8px;
      color: #fff;
    }

    .step-body p {
      font-size: 14.5px;
      color: rgba(255, 255, 255, .85);
      max-width: 520px;
    }

    .step-label {
      font-family: var(--font-head);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      opacity: .75;
      margin-bottom: 6px;
      display: block;
    }

    /* ---------- WHY US TOP 3 ---------- */
    .why-top {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto 60px;
    }

    @media(max-width:900px) {
      .why-top {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:520px) {
      .why-top {
        grid-template-columns: 1fr;
      }
    }

    .why-top-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 24px;
      text-align: center;
      transition: transform .25s ease;
    }

    .why-top-card:hover {
      transform: translateY(-5px);
    }

    .why-top-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 20px;
      border-radius: 14px;
      background: var(--blue-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
    }

    .why-top-card .big {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 800;
      color: var(--blue);
      margin-bottom: 6px;
    }

    .why-top-card .cap {
      font-size: 13.5px;
      color: var(--muted);
      font-weight: 600;
    }

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

    .why-card {
      background: var(--bg-alt);
      border-radius: var(--radius);
      padding: 26px;
      display: flex;
      gap: 16px;
    }

    .check {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--blue-pale);
      color: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-card h3 {
      font-size: 16px;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 13.5px;
      color: var(--muted);
    }

    /* ---------- PROVEN IN PRACTICE / TABS ---------- */
    .tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      justify-content: center;
    }

    .tab-btn {
      border: 1.5px solid var(--border);
      background: #fff;
      color: var(--muted);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: 999px;
      cursor: pointer;
      transition: all .18s ease;
    }

    .tab-btn.active {
      background: var(--blue);
      color: #fff;
      border-color: var(--blue);
    }

    .tab-panel {
      display: none;
    }

    .tab-panel.active {
      display: block;
    }

    .diamond-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 26px 40px;
      max-width: 900px;
      margin: 0 auto;
    }

    .diamond-item {
      display: flex;
      gap: 14px;
    }

    .diamond-item .dmark {
      width: 9px;
      height: 9px;
      background: var(--blue);
      transform: rotate(45deg);
      margin-top: 7px;
      flex-shrink: 0;
    }

    .diamond-item h4 {
      font-size: 15.5px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .diamond-item p {
      font-size: 14px;
      color: var(--muted);
    }

    .testimonial-carousel {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
      min-height: 180px;
    }

    .testimonial-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .6s ease, transform .6s ease;
      transform: translateY(8px);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 34px;
      text-align: center;
    }

    .testimonial-slide.active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
      position: relative;
    }

    .testimonial-slide p.quote {
      font-size: 16.5px;
      font-style: italic;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .testimonial-slide span {
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
    }

    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 22px;
    }

    .t-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }

    .t-dot.active {
      background: var(--blue);
      transform: scale(1.2);
    }

    .quote-card {
      background: var(--bg-alt);
      border-left: 4px solid var(--blue);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 28px 30px;
      max-width: 720px;
      margin: 44px auto 0;
    }

    .quote-card p {
      font-size: 16.5px;
      font-style: italic;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .quote-card span {
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
    }

    .independence-note {
      margin: 24px auto 0;
      max-width: 720px;
      background: var(--ink);
      color: #fff;
      border-radius: var(--radius);
      padding: 28px 30px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .independence-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: rgba(255, 255, 255, .12);
      color: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .independence-note h3 {
      font-size: 16.5px;
      margin-bottom: 8px;
      color: #fff;
    }

    .independence-note p {
      font-size: 14px;
      color: rgba(255, 255, 255, .8);
      line-height: 1.65;
    }

    @media(max-width:560px) {
      .independence-note {
        flex-direction: column;
      }
    }

    /* ---------- FINAL CTA ---------- */
    .final-cta {
      padding: 100px 0;
    }

    .final-panel {
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-bright));
      border-radius: 24px;
      padding: 64px 40px;
      text-align: center;
      color: #fff;
    }

    .final-panel h2 {
      font-size: clamp(28px, 4vw, 40px);
      max-width: 640px;
      margin: 0 auto 16px;
    }

    .final-panel p {
      color: rgba(255, 255, 255, .88);
      max-width: 520px;
      margin: 0 auto 32px;
      font-size: 16px;
    }

    .final-panel .cta-row {
      justify-content: center;
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--ink);
      padding: 48px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-inner .logo img {
      height: 30px;
      width: auto;
    }

    .footer-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .65);
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-copy {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .5);
    }

    @media(max-width:640px) {
      .wrap {
        padding: 0 20px;
      }

      .section {
        padding: 68px 0;
      }
    }

    @media(prefers-reduced-motion:reduce) {
      * {
        animation: none !important;
        transition: none !important;
      }

      [data-reveal] {
        opacity: 1;
        transform: none;
      }

      .step-line::after {
        height: 100% !important;
      }
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
    }

    /* ---------- CONTACT MODAL ---------- */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(15, 17, 30, .55);
      backdrop-filter: blur(4px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.is-open {
      display: flex;
    }

    .modal-box {
      background: #fff;
      border-radius: 20px;
      padding: 44px 40px 40px;
      width: 100%;
      max-width: 500px;
      position: relative;
      box-shadow: 0 32px 80px -20px rgba(15, 17, 30, .35);
      animation: modalIn .28s cubic-bezier(.34,1.3,.64,1) both;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(18px) scale(.97); }
      to   { opacity: 1; transform: translateY(0)  scale(1); }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 18px;
      width: 32px;
      height: 32px;
      border: none;
      background: var(--bg-alt);
      border-radius: 50%;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s ease, color .15s ease;
    }

    .modal-close:hover {
      background: var(--border);
      color: var(--ink);
    }

    .modal-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .modal-subtitle {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 7px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px 14px;
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--ink);
      background: var(--bg);
      transition: border-color .18s ease, box-shadow .18s ease;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(47, 92, 240, .12);
    }

    .form-group textarea {
      height: 110px;
    }

    .modal-submit {
      width: 100%;
      justify-content: center;
      margin-top: 4px;
      padding: 14px;
      font-size: 15px;
    }

    .modal-success {
      text-align: center;
      padding: 20px 0 8px;
    }

    .modal-success svg { margin-bottom: 16px; }
    .modal-success h4 { font-size: 18px; margin-bottom: 8px; }
    .modal-success p  { font-size: 14px; color: var(--muted); }

    .modal-error {
      margin-top: 12px;
      font-size: 13px;
      color: #c0392b;
      text-align: center;
    }