/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

body {
  font-family: 'Urbanist', sans-serif;
  background: #080c14;
  color: #ccd6f0;
  padding: 40px 20px;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 15% 0%,   rgba(52,106,169,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(0,170,255,0.08)  0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%,  rgba(8,16,30,0.9)     0%, transparent 80%);
}

/* XRP ripple wave pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 50%, transparent 30%, transparent 31%),
    repeating-radial-gradient(
      ellipse at 50% 120%,
      transparent 0px,
      transparent 48px,
      rgba(52,106,169,0.03) 48px,
      rgba(52,106,169,0.03) 50px
    );
  pointer-events: none;
  z-index: 0;
}

/* Subtle diagonal line grid */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(52,106,169,0.018) 40px,
      rgba(52,106,169,0.018) 41px
    );
  pointer-events: none;
  z-index: 0;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Container */
.mix-container {
  width: 100%;
  max-width: 1000px;
  background: rgba(10, 16, 28, 0.96);
  border: 1px solid rgba(52,106,169,0.22);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 80px rgba(0,0,0,0.75),
    0 0 80px rgba(52,106,169,0.08);
  backdrop-filter: blur(16px);
}

/* Top ripple glow */
.mix-container::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 320px;
  background: radial-gradient(ellipse,
    rgba(52,106,169,0.16) 0%,
    rgba(0,170,255,0.06)  50%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

/* XRP circle motif — bottom right */
.mix-container::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(52,106,169,0.04);
  pointer-events: none;
}

/* Header */
.mix-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.mix-logo {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 18px;
  filter:
    drop-shadow(0 0 14px rgba(52,106,169,0.7))
    drop-shadow(0 0 40px rgba(52,106,169,0.3));
}

.mix-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(52,106,169,0.4);
}

/* Form */
.mix-form {
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Exchange Panel */
.exchange-panel {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

/* Panel */
.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(52,106,169,0.2);
  border-radius: 14px;
  overflow: visible;
  transition: all 0.25s;
  position: relative;
}

/* Ripple circle top accent */
.panel::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(52,106,169,0.7),
    transparent
  );
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.25s;
}

.panel:hover {
  border-color: rgba(52,106,169,0.45);
  box-shadow:
    0 0 28px rgba(52,106,169,0.1),
    0 0 0 1px rgba(52,106,169,0.06) inset;
}

.panel:hover::before { opacity: 1; }

/* Panel Label */
.panel-label {
  padding: 13px 20px 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(52,106,169,0.7);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-bottom: 1px solid rgba(52,106,169,0.1);
}

/* Panel Header */
.panel-header {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Amount Input */
.from-panel .panel-header input {
  width: 100%;
  max-width: 280px;
  padding: 8px 12px;
  font-size: 42px;
  font-weight: 900;
  text-align: right;
  border: none;
  background: transparent;
  color: #346aa9;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: -2.5px;
  caret-color: #346aa9;
}

.from-panel .panel-header input::placeholder {
  color: rgba(52,106,169,0.16);
}

/* Receive Amount */
.to-panel .panel-header .receive-big {
  width: 100%;
  max-width: 280px;
  padding: 8px 12px;
  font-size: 42px;
  font-weight: 900;
  text-align: right;
  color: #e8eeff;
  background: transparent;
  font-family: 'Urbanist', sans-serif;
  letter-spacing: -2.5px;
}

/* Select Area */
.panel-select {
  padding: 10px 16px 16px;
}

/* Custom Select */
.custom-select {
  position: relative;
  width: 100%;
  z-index: 100;
}

.select-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(52,106,169,0.22);
  border-radius: 10px;
  background: rgba(52,106,169,0.06);
  cursor: pointer;
  color: #ccd6f0;
  transition: all 0.2s;
}

.select-trigger:hover {
  border-color: rgba(52,106,169,0.55);
  background: rgba(52,106,169,0.12);
  box-shadow: 0 0 16px rgba(52,106,169,0.1);
}

.select-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(52,106,169,0.3);
}

.select-value {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e8eeff;
}

.arrow {
  font-size: 10px;
  color: #346aa9;
  transition: transform 0.2s;
}

.custom-select.active .arrow {
  transform: rotate(180deg);
}

/* Options Dropdown */
.options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0c1422;
  padding: 0;
  border: 1px solid rgba(52,106,169,0.3);
  border-radius: 12px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10000 !important;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.85),
    0 0 30px rgba(52,106,169,0.1);
}

.options::-webkit-scrollbar { width: 5px; }
.options::-webkit-scrollbar-track { background: #0c1422; }
.options::-webkit-scrollbar-thumb { background: rgba(52,106,169,0.4); border-radius: 4px; }
.options::-webkit-scrollbar-thumb:hover { background: #346aa9; }

/* Search Input */
.search-input {
  position: sticky;
  top: 0;
  width: 100%;
  height: 46px;
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid rgba(52,106,169,0.12);
  background: rgba(52,106,169,0.06);
  color: #ccd6f0;
  font-size: 13px;
  outline: none;
  border-radius: 12px 12px 0 0;
  z-index: 2;
  font-family: 'Urbanist', sans-serif;
  caret-color: #346aa9;
}

.search-input::placeholder { color: rgba(52,106,169,0.28); }

/* Option Group */
.opt-group {
  padding: 9px 16px;
  font-size: 10px;
  font-weight: 700;
  color: #346aa9;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: #0c1422;
  position: sticky;
  top: 46px;
  z-index: 1;
}

/* Option Item */
.option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  color: #6880a8;
  transition: all 0.15s ease;
  border: none;
  box-shadow: inset 0 -1px 0 rgba(52,106,169,0.07);
}

.option:last-child { box-shadow: none; }

.option:hover {
  background: rgba(52,106,169,0.1);
  color: #e8eeff;
}

.option.selected {
  background: rgba(52,106,169,0.14);
  color: #6aacff;
  box-shadow: inset 3px 0 0 #346aa9, inset 0 -1px 0 rgba(52,106,169,0.07);
}

.option img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.option span {
  white-space: nowrap;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Swap Button */
.mix-swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(52,106,169,0.12);
  border: 1.5px solid rgba(52,106,169,0.4);
  color: #6aacff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(52,106,169,0.18);
}

.mix-swap:hover {
  background: #346aa9;
  border-color: #346aa9;
  color: #ffffff;
  transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
  box-shadow:
    0 0 32px rgba(52,106,169,0.65),
    0 0 70px rgba(52,106,169,0.2);
}

/* Wallet Input */
.mix-form label {
  display: block;
  margin: 22px 0 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(52,106,169,0.6);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.mix-form input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(52,106,169,0.2);
  border-radius: 12px;
  background: rgba(52,106,169,0.05);
  color: #ccd6f0;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  font-family: 'JetBrains Mono', monospace;
  caret-color: #346aa9;
}

.mix-form input[type="text"]:focus {
  border-color: rgba(52,106,169,0.6);
  background: rgba(52,106,169,0.08);
  box-shadow:
    0 0 0 3px rgba(52,106,169,0.12),
    0 0 24px rgba(52,106,169,0.07);
}

.mix-form input[type="text"]::placeholder {
  color: rgba(52,106,169,0.22);
  font-family: 'Urbanist', sans-serif;
}

/* Submit Button */
.mix-submit {
  display: block;
  width: 100%;
  background: #346aa9;
  color: #ffffff;
  border: none;
  padding: 18px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 28px;
  transition: all 0.25s;
  box-shadow:
    0 4px 28px rgba(52,106,169,0.45),
    0 1px 0 rgba(255,255,255,0.1) inset;
  font-family: 'Urbanist', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Ripple sweep */
.mix-submit::before {
  content: '';
  position: absolute;
  top: 50%; left: -80%;
  width: 60%; height: 200%;
  transform: translateY(-50%) skewX(-20deg);
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
  transition: left 0.55s ease;
}

.mix-submit:hover::before { left: 130%; }

.mix-submit:hover {
  background: #4a85cc;
  transform: translateY(-2px);
  box-shadow:
    0 8px 40px rgba(52,106,169,0.6),
    0 0 80px rgba(52,106,169,0.15);
}

.mix-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(52,106,169,0.35);
}

/* SEO Section */
.seo-section {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 32px;
  background: rgba(10,16,28,0.9);
  border: 1px solid rgba(52,106,169,0.15);
  border-radius: 16px;
  color: #4a6888;
  backdrop-filter: blur(8px);
}

.seo-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 12px;
  color: #8ab4e0;
  letter-spacing: -0.3px;
}

.seo-section h2:first-child { margin-top: 0; }
.seo-section p  { margin-bottom: 14px; line-height: 1.8; font-size: 14px; }
.seo-section ul { margin: 14px 0 14px 22px; }
.seo-section li { margin-bottom: 8px; font-size: 14px; line-height: 1.65; }

/* Info Block */
.info-block {
  max-width: 800px;
  margin: 16px auto 0;
  padding: 22px 32px;
  background: rgba(10,16,28,0.9);
  border: 1px solid rgba(52,106,169,0.15);
  border-radius: 16px;
  color: #ccd6f0;
  backdrop-filter: blur(8px);
}

.info-block .label {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 10px;
  color: rgba(52,106,169,0.55);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.info-block .value p { margin: 0; font-size: 14px; }

.info-block .value a {
  color: #6aacff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.info-block .value a:hover {
  color: #9acaff;
  text-shadow: 0 0 12px rgba(52,106,169,0.5);
}

/* Loader */
.loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(52,106,169,0.18);
  border-top-color: #346aa9;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  visibility: hidden;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 768px) {
  .mix-container { padding: 28px 20px; }
  .mix-title { font-size: 24px; }

  .exchange-panel { flex-direction: column; gap: 0; position: relative; }
  .panel { border-radius: 12px; width: 100%; }
  .from-panel { z-index: 10; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .to-panel   { z-index: 5;  border-top-left-radius: 0;    border-top-right-radius: 0;    margin-top: -1px; }

  .from-panel .panel-header input,
  .to-panel .panel-header .receive-big { font-size: 32px; max-width: 100%; text-align: center; letter-spacing: -1px; }

  .mix-swap {
    position: relative; left: auto; top: auto; transform: none;
    margin: -23px auto; z-index: 20; order: 1;
    width: 46px; height: 46px; border-radius: 50%;
  }

  .from-panel { order: 0; }
  .to-panel   { order: 2; }

  .mix-submit { padding: 15px 20px; font-size: 15px; margin-top: 24px; }
  .seo-section, .info-block { padding: 22px 18px; margin-top: 28px; border-radius: 14px; }
  .seo-section h2 { font-size: 16px; }
  .seo-section p, .seo-section li { font-size: 13px; }
}

@media (max-width: 480px) {
  body { padding: 20px 12px; }
  .mix-container { padding: 22px 16px; border-radius: 16px; }
  .mix-logo { width: 58px; height: 58px; margin-bottom: 14px; }
  .mix-title { font-size: 22px; }
  .panel-label { padding: 11px 16px 6px; font-size: 9px; }
  .panel-header { padding: 14px; }
  .from-panel .panel-header input,
  .to-panel .panel-header .receive-big { font-size: 28px; }
  .panel-select { padding: 8px 14px 14px; }
  .select-trigger { padding: 10px 12px; }
  .mix-swap { width: 42px; height: 42px; margin: -21px auto; }
  .mix-form input[type="text"] { padding: 12px 14px; }
  .mix-submit { padding: 14px 18px; margin-top: 20px; }
}

/* Validation */
.wallet-error { color: #ff6070; font-size: 12px; margin-top: 5px; display: none; }
.wallet-input.error { border-color: #ff6070 !important; }
.wallet-validation-status { display: inline-block; margin-left: 8px; font-size: 14px; }
.wallet-validation-status.valid   { color: #44ddaa; }
.wallet-validation-status.invalid { color: #ff6070; }
.amount-error { color: #ff6070; font-size: 12px; margin-top: 5px; }
#amount.error { color: #ff6070; }


    /* ── Import (same as site) ── */
    @import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

    /* ── Reset ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Urbanist', sans-serif;
      background: #080c14;
      color: #ccd6f0;
      padding: 40px 20px;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      background-image:
        radial-gradient(ellipse at 15% 0%,   rgba(52,106,169,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(0,170,255,0.08)  0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%,  rgba(8,16,30,0.9)     0%, transparent 80%);
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        repeating-radial-gradient(
          ellipse at 50% 120%,
          transparent 0px,
          transparent 48px,
          rgba(52,106,169,0.03) 48px,
          rgba(52,106,169,0.03) 50px
        );
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 40px,
          rgba(52,106,169,0.018) 40px,
          rgba(52,106,169,0.018) 41px
        );
      pointer-events: none;
      z-index: 0;
    }

    main {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
      gap: 16px;
    }

    /* ── H1 block ── */
    .page-hero {
      max-width: 800px;
      width: 100%;
      text-align: center;
      padding: 0 0 8px;
    }

    .page-hero h1 {
      font-family: 'Urbanist', sans-serif;
      font-weight: 900;
      font-size: clamp(28px, 5vw, 44px);
      line-height: 1.15;
      letter-spacing: -1.5px;
      color: #ffffff;
      text-shadow: 0 0 60px rgba(52,106,169,0.45);
      margin-bottom: 14px;
    }

    .page-hero h1 span {
      background: linear-gradient(90deg, #6aacff, #346aa9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .page-hero .hero-sub {
      font-size: 16px;
      font-weight: 500;
      color: #6880a8;
      line-height: 1.6;
      max-width: 580px;
      margin: 0 auto;
    }

    /* ── Trust badges ── */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 800px;
      width: 100%;
      margin-bottom: 8px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 16px;
      border: 1px solid rgba(52,106,169,0.28);
      border-radius: 100px;
      background: rgba(52,106,169,0.07);
      font-size: 12px;
      font-weight: 700;
      color: #6aacff;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .badge svg {
      width: 14px;
      height: 14px;
      stroke: #346aa9;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    /* ── SEO Section (extends your .seo-section) ── */
    .seo-section {
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      padding: 36px 40px;
      background: rgba(10,16,28,0.94);
      border: 1px solid rgba(52,106,169,0.15);
      border-radius: 16px;
      color: #4a6888;
      backdrop-filter: blur(8px);
    }

    .seo-section h2 {
      font-size: 19px;
      font-weight: 800;
      margin: 30px 0 12px;
      color: #8ab4e0;
      letter-spacing: -0.4px;
      line-height: 1.3;
    }

    .seo-section h2:first-child { margin-top: 0; }

    .seo-section h3 {
      font-size: 15px;
      font-weight: 700;
      color: #6aacff;
      margin: 18px 0 8px;
      letter-spacing: -0.2px;
    }

    .seo-section p {
      margin-bottom: 14px;
      line-height: 1.85;
      font-size: 14.5px;
      color: #5a7898;
    }

    .seo-section p strong {
      color: #8ab4e0;
      font-weight: 700;
    }

    .seo-section ul {
      margin: 10px 0 16px 0;
      padding: 0;
      list-style: none;
    }

    .seo-section ul li {
      font-size: 14px;
      line-height: 1.7;
      color: #5a7898;
      padding: 5px 0 5px 22px;
      position: relative;
      border-bottom: 1px solid rgba(52,106,169,0.06);
    }

    .seo-section ul li:last-child { border-bottom: none; }

    .seo-section ul li::before {
      content: '›';
      position: absolute;
      left: 6px;
      color: #346aa9;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 700;
    }

    /* ── Coins grid ── */
    .coins-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 20px;
    }

    .coin-tag {
      padding: 5px 13px;
      border: 1px solid rgba(52,106,169,0.22);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      color: #6aacff;
      background: rgba(52,106,169,0.07);
      letter-spacing: 0.3px;
      transition: all 0.2s;
    }

    .coin-tag:hover {
      border-color: rgba(52,106,169,0.5);
      background: rgba(52,106,169,0.14);
    }

    /* ── FAQ ── */
    .faq-block {
      margin-top: 10px;
    }

    .faq-item {
      border-top: 1px solid rgba(52,106,169,0.1);
    }

    .faq-item:last-child {
      border-bottom: 1px solid rgba(52,106,169,0.1);
    }

    .faq-q {
      width: 100%;
      background: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 0;
      text-align: left;
      font-family: 'Urbanist', sans-serif;
      font-size: 14.5px;
      font-weight: 700;
      color: #8ab4e0;
      transition: color 0.2s;
    }

    .faq-q:hover { color: #aad0ff; }

    .faq-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1.5px solid rgba(52,106,169,0.4);
      background: rgba(52,106,169,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 1;
      color: #346aa9;
      transition: all 0.25s;
    }

    .faq-item.open .faq-icon {
      background: #346aa9;
      border-color: #346aa9;
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
      font-size: 14px;
      line-height: 1.8;
      color: #5a7898;
      padding: 0;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding-bottom: 16px;
    }

    /* ── Divider ── */
    .seo-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(52,106,169,0.2), transparent);
      margin: 28px 0;
    }

    /* ── CTA strip ── */
    .seo-cta {
      max-width: 800px;
      width: 100%;
      padding: 28px 36px;
      background: rgba(52,106,169,0.07);
      border: 1px solid rgba(52,106,169,0.22);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .seo-cta-text {
      font-size: 15px;
      font-weight: 700;
      color: #ccd6f0;
      line-height: 1.45;
    }

    .seo-cta-text span {
      display: block;
      font-size: 12px;
      font-weight: 500;
      color: #6880a8;
      margin-top: 4px;
    }

    .seo-cta-btn {
      flex-shrink: 0;
      padding: 13px 28px;
      background: #346aa9;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'Urbanist', sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      box-shadow: 0 4px 24px rgba(52,106,169,0.45);
    }

    .seo-cta-btn:hover {
      background: #4a85cc;
      transform: translateY(-2px);
      box-shadow: 0 8px 36px rgba(52,106,169,0.6);
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .seo-section { padding: 24px 20px; }
      .seo-section h2 { font-size: 17px; }
      .seo-cta { padding: 22px 20px; }
      .page-hero h1 { letter-spacing: -0.8px; }
    }

    @media (max-width: 480px) {
      .seo-section { padding: 20px 16px; }
      .trust-row { gap: 7px; }
      .badge { font-size: 11px; padding: 6px 12px; }
      .seo-cta { flex-direction: column; align-items: flex-start; }
      .seo-cta-btn { width: 100%; text-align: center; }
    }