:root {
      --bg: #121625;
      --bg-2: #171C30;
      --bg-3: #1D233A;
      --surface: #202641;
      --footer-bg: #161B2D;
      --text: #FFFFFF;
      --text-2: #B4BCD8;
      --muted: #77809F;
      --accent: #00C16A;
      --accent-hover: #00D977;
      --accent-soft: rgba(0, 193, 106, .12);
      --border: #313A5C;
      --border-soft: rgba(255,255,255,.09);
      --radius: 16px;
      --button-radius: 12px;
      --container: 1400px;
      --font: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      color-scheme: dark;
    }

    body {
      margin: 0;
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 0%, rgba(0,193,106,.10), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(90,120,255,.10), transparent 28%),
        var(--bg);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
      z-index: -1;
    }

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

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

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(18, 22, 37, .92);
      border-bottom: 1px solid var(--border-soft);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .01em;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(0,193,106,.35);
      border-radius: 14px;
      background: #0F1424;
      color: var(--accent);
      font-weight: 900;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-2);
      font-size: 14px;
      font-weight: 600;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 10px;
      transition: all .25s ease;
    }

    .nav a:hover {
      color: var(--text);
      background: rgba(255,255,255,.06);
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border-radius: var(--button-radius);
      background: var(--accent);
      color: #06130D;
      font-weight: 800;
      transition: all .25s ease;
      box-shadow: 0 0 0 4px rgba(0,193,106,.10);
    }

    .header-cta:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 0 0 6px rgba(0,217,119,.13);
    }

    .mobile-toggle {
      display: none;
      border: 1px solid var(--border);
      background: var(--bg-2);
      color: var(--text);
      border-radius: 12px;
      min-width: 46px;
      min-height: 46px;
      cursor: pointer;
    }

    .hero {
      padding: 92px 0 56px;
      border-bottom: 1px solid var(--border-soft);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
      gap: 36px;
      align-items: stretch;
      max-width: 1180px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 8px 12px;
      border: 1px solid rgba(0,193,106,.28);
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    h1, h2, h3 {
      margin: 0 0 16px;
      line-height: 1.18;
      letter-spacing: -.025em;
    }

    h1 {
      max-width: 900px;
      font-size: clamp(38px, 5vw, 68px);
      font-weight: 900;
    }

    h2 {
      font-size: clamp(24px, 2.4vw, 32px);
      font-weight: 820;
    }

    h3 {
      font-size: 20px;
      font-weight: 780;
    }

    p {
      margin: 0 0 16px;
      color: var(--text-2);
    }

    strong {
      color: var(--text);
      font-weight: 800;
    }

    .lead {
      max-width: 800px;
      font-size: 19px;
      color: var(--text-2);
    }

    .hero-card,
    .card {
      border: 1px solid var(--border);
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
        var(--bg-2);
    }

    .hero-card {
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: var(--accent);
    }

    .rating-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .metric {
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(12, 16, 29, .55);
      transition: all .25s ease;
    }

    .metric:hover {
      transform: translateY(-2px);
      border-color: rgba(0,193,106,.45);
      background: rgba(0,193,106,.07);
    }

    .metric b {
      display: block;
      font-size: 25px;
      color: var(--text);
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .section {
      padding: 72px 0 0;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 28px;
      align-items: start;
    }

    .article {
      display: grid;
      gap: 22px;
      width: 100%;
      max-width: 980px;
      margin: 0 auto;
    }

    .article-section {
      width: 100%;
      padding: clamp(22px, 3vw, 34px);
      border: 1px solid var(--border);
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.038), rgba(255,255,255,.014)),
        var(--bg-2);
      position: relative;
      overflow: hidden;
    }

    .article-section::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }

    .article-section[id] {
      scroll-margin-top: 100px;
    }

    .article-section h2 {
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 20px;
    }

    .article-section h3 {
      margin-top: 24px;
      color: var(--text);
    }

    .toc {
      position: sticky;
      top: 104px;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
        var(--footer-bg);
    }

    .toc h2 {
      font-size: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--border-soft);
    }

    .toc-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .toc a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      color: var(--text-2);
      border-bottom: 1px solid rgba(255,255,255,.055);
      font-size: 14px;
      font-weight: 600;
      transition: all .25s ease;
    }

    .toc a::before {
      content: none;
    }

    .toc a:hover {
      color: var(--accent-hover);
      padding-left: 4px;
    }

    .table-wrap {
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 16px;
      margin: 20px 0 18px;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 560px;
      background: rgba(12, 16, 29, .55);
    }

    th, td {
      padding: 15px 17px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }

    th {
      color: var(--text);
      font-weight: 800;
      background: rgba(255,255,255,.045);
    }

    td {
      color: var(--text-2);
    }

    tr:last-child td {
      border-bottom: 0;
    }

    tr:hover td {
      background: rgba(255,255,255,.025);
    }

    .step-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
      counter-reset: steps;
    }

    .step {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding: 17px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(12, 16, 29, .55);
      counter-increment: steps;
      transition: all .25s ease;
    }

    .step:hover {
      border-color: rgba(0,193,106,.45);
      background: rgba(0,193,106,.055);
    }

    .step::before {
      content: counter(steps);
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: var(--accent);
      color: #06130D;
      font-weight: 900;
    }

    .step h3 {
      margin: 0 0 4px;
      font-size: 17px;
    }

    .step p {
      margin: 0;
      font-size: 14px;
    }

    .inline-list {
      color: var(--text-2);
    }

    .faq details {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(12, 16, 29, .55);
      margin-bottom: 12px;
      overflow: hidden;
      transition: all .25s ease;
    }

    .faq details[open],
    .faq details:hover {
      border-color: rgba(0,193,106,.38);
    }

    .faq summary {
      cursor: pointer;
      padding: 17px 18px;
      color: var(--text);
      font-weight: 750;
      list-style: none;
    }

    .faq summary::-webkit-details-marker {
      display: none;
    }

    .faq summary::after {
      content: "+";
      float: right;
      color: var(--accent);
      font-weight: 900;
    }

    .faq details[open] summary::after {
      content: "−";
    }

    .faq details p {
      padding: 0 18px 18px;
      margin: 0;
    }

    .footer {
      margin-top: 80px;
      padding: 78px 0 56px;
      background: var(--footer-bg);
      border-top: 1px solid var(--border);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr repeat(3, .75fr);
      gap: 34px;
    }

    .footer h2,
    .footer h3 {
      font-size: 20px;
    }

    .footer p,
    .footer a,
    .legal-text {
      color: var(--text-2);
      font-size: 14px;
    }

    .footer a {
      display: block;
      padding: 6px 0;
      transition: all .25s ease;
    }

    .footer a:hover {
      color: var(--accent-hover);
      transform: translateX(3px);
    }

    .partner-strip,
    .payments {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .logo-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 104px;
      min-height: 44px;
      padding: 8px 15px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #111626;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .01em;
      transition: all .25s ease;
      filter: grayscale(1);
      opacity: .74;
    }

    .logo-pill:hover {
      color: var(--text);
      opacity: 1;
      filter: grayscale(0);
      border-color: var(--accent);
      background: rgba(0,193,106,.07);
      transform: translateY(-1px);
    }

    .divider {
      height: 1px;
      background: var(--border-soft);
      margin: 40px 0;
    }

    .rg-section {
      display: grid;
      grid-template-columns: 280px 1fr 230px;
      gap: 24px;
      align-items: center;
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: #111626;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 13px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--text-2);
      font-size: 13px;
      font-weight: 800;
      background: rgba(255,255,255,.025);
    }

    .badge svg {
      color: var(--accent);
      flex: 0 0 auto;
    }

    .rg-link {
      color: var(--accent);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .rg-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      width: 100%;
      border: 1px solid var(--border);
      border-radius: var(--button-radius);
      background: #0C101D;
      color: var(--text);
      font-weight: 800;
      transition: all .25s ease;
    }

    .rg-button:hover {
      border-color: var(--accent);
      color: var(--accent-hover);
      background: rgba(0,193,106,.06);
    }

    .legal-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 32px;
      align-items: start;
    }

    .legal-box {
      color: var(--text-2);
      font-size: 13px;
    }

    .legal-box b {
      color: var(--text);
      font-weight: 800;
    }

    .mobile-accordion {
      display: none;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1120px) {
      .hero-grid,
      .content-grid,
      .footer-grid,
      .rg-section,
      .legal-grid {
        grid-template-columns: 1fr;
      }

      .mobile-accordion {
        display: block;
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .header-inner {
        min-height: 66px;
      }

      .nav,
      .header-cta {
        display: none;
      }

      .header-inner {
        grid-template-columns: 1fr auto;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .mobile-menu {
        display: none;
        padding: 0 0 16px;
      }

      .mobile-menu.is-open {
        display: grid;
        gap: 8px;
      }

      .mobile-menu a {
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: var(--bg-2);
        color: var(--text-2);
      }

      .hero {
        padding: 54px 0 36px;
      }

      .section,
      .footer {
        padding-top: 42px;
      }

      .article-section,
      .hero-card {
        padding: 20px;
        border-radius: 16px;
      }

      .rating-row {
        grid-template-columns: 1fr;
      }

      .step {
        grid-template-columns: 1fr;
      }

      .toc {
        text-align: left;
        padding: 16px;
      }

      .toc-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
      }

      .partner-strip,
      .payments {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .logo-pill {
        min-width: 0;
      }

      table {
        min-width: 640px;
      }
    }


/* FINAL LAYOUT FIX: centered single-column content */
.section > .container.content-grid {
  display: block;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.article {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.toc {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
  position: static;
}

.toc-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  display: block;
}

/* FINAL TAG COLOR FIX: match site dark-green luxury palette */
.logo-pill,
.toc a {
  background: rgba(0, 193, 106, .08);
  border-color: rgba(0, 193, 106, .28);
  color: #A9F3CF;
  filter: none;
  opacity: 1;
}

.logo-pill:hover,
.toc a:hover {
  background: rgba(0, 217, 119, .14);
  border-color: rgba(0, 217, 119, .55);
  color: #FFFFFF;
}

.partner-strip .logo-pill,
.payments .logo-pill {
  background: rgba(255,255,255,.035);
  border-color: var(--border);
  color: var(--text-2);
}

.partner-strip .logo-pill:hover,
.payments .logo-pill:hover {
  background: rgba(0, 193, 106, .08);
  border-color: rgba(0, 193, 106, .42);
  color: #FFFFFF;
}

/* Header glass final polish */
.site-header {
  background: rgba(18, 22, 37, .48);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 760px) {
  .section > .container.content-grid,
  .article,
  .toc {
    max-width: 100%;
  }

  .toc {
    text-align: left;
  }

  .toc-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}

  

/* Generated page polish */
.toc a{display:inline-flex;padding:9px 12px;border-radius:999px;border-bottom:0;margin:0}
.cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px}.cta-xl{display:inline-flex}
.game-grid,.bonus-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px}.info-card{padding:18px;border:1px solid var(--border);border-radius:16px;background:rgba(12,16,29,.55)}.info-card h3{margin-top:0}.compact-list{margin:0;padding-left:20px;color:var(--text-2)}.notice-box{padding:18px;border:1px solid rgba(0,193,106,.28);border-radius:16px;background:var(--accent-soft);margin-top:18px}.code-pill{display:inline-flex;align-items:center;gap:8px;padding:4px 10px;border:1px solid rgba(0,193,106,.35);border-radius:999px;background:rgba(0,193,106,.08);color:#A9F3CF;font-weight:800;font-family:monospace}.responsible{border-color:rgba(255,255,255,.14);background:#111626}.mobile-menu{display:none}.mobile-menu.is-open{display:grid}
@media (max-width:760px){.game-grid,.bonus-grid{grid-template-columns:1fr}.toc a{white-space:nowrap}.mobile-menu{padding-bottom:16px}.mobile-menu a{padding:12px;border:1px solid var(--border);border-radius:12px;background:var(--bg-2);color:var(--text-2)}}


/* Moved from body */

                .bonus-row{display:flex;flex-direction:column;gap:14px;margin-top:16px}
                .bonus-card{display:flex;gap:14px;align-items:stretch;overflow:hidden;border-radius:12px}
                .bonus-card img{width:40%;min-width:220px;height:100%;object-fit:cover;display:block}
                .bonus-card .card-body{padding:18px;flex:1}
                @media (max-width:760px){
                  .bonus-card{flex-direction:column}
                  .bonus-card img{width:100%;min-width:0;height:140px}
                }
              

                                /* make the WELCOME77 copy button appear as a secondary control */
                                button[aria-label="Kopēt promo kodu WELCOME77"]{
                                  background: transparent;
                                  border: 1px solid var(--border);
                                  color: var(--text-2);
                                  box-shadow: none;
                                  font-weight: 800;
                                  padding: 8px 12px;
                                  min-height: 40px;
                                  border-radius: 12px;
                                  transition: all .18s ease;
                                }
                                button[aria-label="Kopēt promo kodu WELCOME77"]:hover{
                                  background: rgba(255,255,255,.03);
                                  color: var(--text);
                                  transform: translateY(-1px);
                                  border-color: rgba(0,193,106,.28);
                                }
                                

/* Converted inline styles */
.u-style-8c9ae946{display:flex;flex-direction:column;gap:18px;max-width:720px;}
.u-style-6d567387{width:100%;}
.u-style-3069ed97{min-height:64px;padding:0 28px;font-size:18px;border-radius:20px;}
.u-style-be70d99e{width:100%;display:block;border-radius:16px;margin:18px 0;}
.u-style-57ce1f1b{padding:0;}
.u-style-c3de043d{margin-top:0;margin-bottom:8px;}
.u-style-0d174e9e{margin:0 0 12px;color:var(--text-2);}
.u-style-5ea91d4d{display:flex;gap:8px;align-items:center;margin-bottom:12px;}
.u-style-548e8105{font-weight:800;padding:10px 12px;border-radius:12px;border:1px solid var(--border);background:rgba(0,0,0,.18);color:var(--text);font-family:monospace;}
.u-style-3cf2aefb{padding:8px 12px;min-height:40px;}
.u-style-9c68691e{display:flex;gap:8px;}
.u-style-3b022ee6{display:inline-flex;min-height:44px;padding:0 18px;}
.u-style-bba6ecaf{color:var(--accent);font-weight:700;align-self:center;}
.u-style-4a909ea7{margin-top:18px;}
.u-style-b0043ef4{margin-top:16px;}

.author-card{display:flex;gap:16px;align-items:flex-start;margin-top:16px;}
.author-avatar{display:grid;place-items:center;flex:0 0 56px;width:56px;height:56px;border-radius:50%;border:1px solid rgba(0,193,106,.35);background:rgba(0,193,106,.10);color:#A9F3CF;font-weight:900;}
@media (max-width:760px){.author-card{flex-direction:column;}}



/* Mobile sticky footer CTA */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 92px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(18, 22, 37, .94);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }

  .mobile-sticky-cta__text {
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
  }

  .mobile-sticky-cta__button {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    font-size: 16px;
  }
}

/* Inline marketing CTA boxes */
.marketing-cta {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(0,193,106,.35);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,193,106,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--bg-2);
  position: relative;
  overflow: hidden;
}

.marketing-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(0,217,119,.28));
}

.marketing-cta__inner {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.marketing-cta__logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0,193,106,.42);
  border-radius: 20px;
  background: rgba(0,193,106,.10);
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.marketing-cta__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(0,193,106,.35);
  border-radius: 999px;
  background: rgba(0,193,106,.10);
  color: #A9F3CF;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.marketing-cta h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.marketing-cta p {
  margin: 0;
}

.marketing-cta__actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  min-width: 210px;
}

.marketing-cta__copy {
  display: flex;
  gap: 8px;
  align-items: center;
}

.marketing-cta__copy input {
  min-width: 0;
  width: 100%;
}

.marketing-cta .header-cta {
  width: 100%;
  min-height: 50px;
}

@media (max-width: 760px) {
  .marketing-cta {
    padding: 18px;
  }

  .marketing-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .marketing-cta__logo {
    margin: 0 auto;
  }

  .marketing-cta__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .marketing-cta__actions {
    min-width: 0;
  }

  .marketing-cta .header-cta {
    display: inline-flex;
  }
}

.mobile-sticky-cta--stacked {
  flex-direction: column;
  align-items: stretch;
}

.mobile-sticky-cta--stacked .mobile-sticky-cta__text {
  text-align: center;
  margin-bottom: 8px;
}

.mobile-sticky-cta--stacked .mobile-sticky-cta__button {
  width: 100%;
  justify-content: center;
}
