@charset "utf-8";
/* CSS Document */

:root {
    --navy: #283666;
    --navy-dark: #031222;
    --blue: #2a4593;
    --link-blue: #0d6efd;
    --ice: #e6f0fa;
    --white: #ffffff;
    --orange: #ef520d;
    --orange-dark: #c34811;
    --yellow: #ffcb00;
    --green: #7ec818;
    --ink: #071529;
    --muted: #46556d;
    --line: rgba(42, 69, 147, .18);
    --max: 1180px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Rubik", Arial, sans-serif;
    color: var(--ink);
    background: var(--ice);
    line-height: 1.45;
    letter-spacing: 0;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  img {
    display: block;
    max-width: 100%;
  }

  .container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .12);
  }

  .nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .logo img {
    width: 142px;
  }

  .slogan {
    flex: 1;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .slogan strong {
    color: var(--yellow);
    margin-left: 10px;
    white-space: nowrap;
  }

  .btn,
  .cta-row {
    display: inline-flex;
    align-items: center;
  }

  .cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

.cta-row2 {
    /* display: flex; */
    gap: 12px;
    /* align-content: center; */
    /* align-items: center; */
    flex-wrap: wrap;
}

  .btn {
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    padding: 0 45px;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 8px 14px rgba(17, 31, 64, .2);
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
  }

  .btn-outline {
    min-height: 38px;
    padding: 0 18px;
    color: var(--yellow);
    background: transparent;
    border: 1px solid var(--yellow);
    box-shadow: none;
    text-transform: none;
  }

  .btn-outline:hover {
    color: var(--white);
    border-color: var(--white);
  }

  .btn-orange {
    background: var(--orange);
  }

  .btn-orange:hover {
    background: var(--orange-dark);
  }

  .subbar {
    height: 16px;
    background: var(--blue);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .hero {
    padding: 14px 0 10px;
    background: var(--ice);
  }

  .hero-banner {
    overflow: hidden;
    display: block;
    border-radius: 10px;
    background: #234c23;
  }

  .hero-banner img {
    width: 100%;
    min-height: 190px;
    object-fit: cover;
  }

  .banner-mobile {
    display: none;
  }

  .offer {
    padding: 18px 0 14px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .offer-grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 410px);
    align-items: start;
    gap: 28px;
    margin: 0 auto;
  }

  .eyebrow {
    width: fit-content;
    margin: 0 0 14px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--blue);
    border-left: 5px solid var(--yellow);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
  }

  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }

  h1 {
    
    color: var(--blue);
    font-size: clamp(34px, 4.5vw, 48px);
    line-height: .96;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
	  
  }

  h2 {
    margin-bottom: 24px;
    color: var(--navy);
    font-size: clamp(28px, 3.4vw, 36px);
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }

  h3 {
    margin-bottom: 10px;
    color: #000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
  }

  .lead {
    margin-bottom: 20px;
    color: var(--link-blue);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.18;
    font-weight: 600;
  }

  .muted,
  p {
    color: var(--muted);
    font-size: 16px;
  }

  ul {
    margin: 0;
    padding-left: 22px;
    color: #273449;
    font-size: 16px;
    line-height: 1.7;
  }

  .trust-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 0;
  }

  .trust-item {
    min-height: 108px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 15px 16px;
    color: #ffffff;
    background: var(--blue);
    border: 1px solid rgba(255, 203, 0, .38);
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(40, 54, 102, .2);
  }

  .trust-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--navy);
    background-color: var(--yellow);
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
  }

  .trust-item h3 {
    margin-bottom: 6px;
    color: var(--yellow);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
  }

  .trust-item p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .payment-stack {
    display: grid;
    gap: 14px;
  }

  .deposit-options {
    gap: 8px;
  }

  .payment-card,
  .panel,
  .card,
  .quote,
  .faq-item,
  .step,
  .cta-box,
  .urgency,
  .power-line,
  .trust-line {
    background: #f8f9fa;
    border: 1px solid rgba(255, 255, 255, .84);
    box-shadow: 0 10px 24px rgba(40, 54, 102, .08);
  }

  .payment-card {
    padding: 18px;
    border-left: 5px solid var(--orange);
  }

  .deposit-card {
    overflow: hidden;
    padding: 12px 16px 10px 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(255, 255, 255, .92);
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(40, 54, 102, .13);
  }

  .deposit-card.crypto {
    border-left-color: var(--green);
  }

  .deposit-heading h3 {
    margin-bottom: 8px;
    color:#283666;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
  }

  .deposit-heading span {
    color: #2d8f10;
  }

  .deposit-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
  }

  .deposit-icons {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .deposit-icons span {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .crypto-icons span,
  .method-icons i,
  .method-icons b {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #0b6c38;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
  }

  .crypto-icons span:nth-child(2) {
    color: #0d6b35;
    background: transparent;
    font-size: 34px;
  }

  .crypto-icons span:nth-child(3) {
    background: #167761;
  }

  .crypto-icons span:nth-child(4) {
    background: #0b6c38;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
  }

  .method-icons {
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
  }

  .method-icons span {
    min-width: 54px;
  }

  .method-icons i,
  .method-icons b {
    background: var(--navy);
    font-size: 21px;
  }

  .method-icons span:nth-child(2) i {
    background: #0bbd37;
    font-size: 24px;
  }

  .method-icons span:nth-child(3) i {
    color: #0b419d;
    background: transparent;
    font-size: 34px;
  }

  .method-icons span:nth-child(4) b {
    background: #5d20b8;
    border-radius: 5px;
    font-size: 25px;
    font-family: Arial, sans-serif;
  }

  .method-icons span:nth-child(5) i {
    background: #081b3a;
    font-size: 18px;
  }

  .deposit-bonus {
    margin: 9px 0 0;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
  }

  .deposit-checks {
    display: grid;
    gap: 6px;
    min-width: 160px;
    padding-left: 0;
    list-style: none;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .deposit-checks li {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .deposit-checks i {
    color: #75bb20;
    font-size: 15px;
  }

  .deposit-showcase {
    position: relative;
    align-items: stretch;
    gap: 22px;
    margin-top: 8px;
    margin-bottom: 34px;
  }

  .deposit-showcase .deposit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 222px;
    padding: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(42, 69, 147, .14);
    border-left: 0;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(7, 21, 41, .14);
  }

  .deposit-showcase .deposit-heading h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1;
  }

  .deposit-showcase .deposit-card.crypto .deposit-heading h3 {
    justify-content: center;
  }

  .deposit-showcase .deposit-card.crypto .deposit-heading span {
    min-height: 0;
    padding: 0;
    color: #2d8f10;
    background: transparent;
    border-radius: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    white-space: normal;
  }

  .deposit-showcase .deposit-heading span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    color: #ffffff;
    background: #2d8f10;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .deposit-showcase .deposit-card-body {
    grid-template-columns: minmax(0, 1fr) minmax(210px, auto);
    align-items: center;
    gap: 20px;
  }

  .deposit-showcase .deposit-card.crypto .deposit-card-body {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .deposit-showcase .deposit-icons {
    align-items: center;
    gap: 12px;
  }

  .deposit-showcase .deposit-card.crypto .crypto-icons {
    justify-content: center;
    width: 100%;
  }

  .deposit-showcase .crypto-icons span,
  .deposit-showcase .method-icons i,
  .deposit-showcase .method-icons b {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    aspect-ratio: 1 / 1;
    flex: 0 0 52px;
    border-radius: 50%;
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(7, 21, 41, .16);
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .deposit-showcase .crypto-icons span:hover,
  .deposit-showcase .method-icons span:hover i,
  .deposit-showcase .method-icons span:hover b {
    transform: translateY(-2px);
    box-shadow: 0 14px 22px rgba(7, 21, 41, .2);
  }

  .deposit-showcase .crypto-icons i {
    font-size: 29px;
    line-height: 1;
  }

  .deposit-showcase .crypto-icons .coin-btc {
    background: #f7931a;
  }

  .deposit-showcase .crypto-icons .coin-eth {
    color: #ffffff;
    background: #627eea;
    font-size: 22px;
  }

  .deposit-showcase .crypto-icons .coin-usdt {
    background: #26a17b;
  }

  .deposit-showcase .coin-usdt img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .deposit-showcase .crypto-icons .coin-ltc {
    background: #345d9d;
    font-family: Georgia, serif;
    font-size: 31px;
    font-style: italic;
  }

  .deposit-showcase .deposit-bonus {
    display: inline-flex;
    width: fit-content;
    margin-top: 16px;
    padding: 9px 12px;
    color: #ff7800;
    border: 2px solid rgba(239, 82, 13);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
  }

  .deposit-showcase .deposit-checks {
    gap: 9px;
    min-width: 0;
    padding: 14px;
    background: #f2f8ee;
    border: 1px solid rgba(126, 200, 24, .25);
    border-radius: 8px;
    color: var(--navy);
  }

  .deposit-showcase .deposit-card.crypto .deposit-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
    margin-top: 2px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .deposit-showcase .deposit-card.crypto .deposit-checks li:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .deposit-showcase .deposit-checks li {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
  }

  .deposit-showcase .deposit-card.crypto .deposit-checks li {
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 12px;
    background: linear-gradient(180deg, #f7fff2 0%, #eff9e9 100%);
    border: 1px solid rgba(45, 143, 16, .22);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(45, 143, 16, .08);
    color: #1f6610;
    font-size: 15px;
  }

  .deposit-showcase .deposit-card.crypto .deposit-checks li:nth-child(3) {
    min-height: 42px;
    padding: 8px 14px;
    color: #1f6610;
    background: linear-gradient(180deg, #f7fff2 0%, #eff9e9 100%);
    border-color: rgba(45, 143, 16, .22);
    box-shadow: 0 8px 16px rgba(45, 143, 16, .08);
  }

  .deposit-showcase .deposit-card.crypto .deposit-checks li i {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #2d8f10;
    border-radius: 50%;
    font-size: 11px;
  }

  .deposit-showcase .deposit-checks i {
    color: #2d8f10;
    font-size: 17px;
  }

  .deposit-showcase .method-icons {
    display: grid;
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    gap: 12px;
    margin-top: 4px;
  }

  .deposit-showcase .method-icons span {
    min-width: 0;
    padding: 12px 8px;
    background: #f7fbff;
    border: 1px solid rgba(42, 69, 147, .11);
    border-radius: 8px;
  }

  .deposit-showcase .method-icons strong {
    color: #26344d;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
  }

  .deposit-showcase .method-icons i,
  .deposit-showcase .method-icons b {
    margin-bottom: 3px;
    font-size: 23px;
  }

  .deposit-showcase .method-icons span:nth-child(1) i {
    background: #283666;
  }

  .deposit-showcase .method-icons span:nth-child(2) i {
    background: #00d64f;
  }

  .deposit-showcase .method-icons span:nth-child(3) i {
    color: #ffffff;
    background: #0070ba;
    font-size: 26px;
  }

  .deposit-showcase .method-icons span:nth-child(4) b {
    background: #6d1ed4;
    border-radius: 50%;
  }

  .deposit-showcase .method-icons span:nth-child(5) i {
    background: #ef520d;
  }

  .deposit-showcase .cardm .deposit-bonus {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .payment-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .best-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .payment-card.crypto {
    border-left-color: var(--green);
  }

  .payment-card strong {
    color: var(--orange);
  }

  .power-line,
  .trust-line,
  .urgency {
    padding: 18px 22px;
    color: var(--navy);
    border-left: 5px solid var(--orange);
    font-size: 18px;
    font-weight: 600;
  }

  .trust-line2 {
    padding: 18px 22px;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    font-size: 33px;
    background-color: #d9dce763;
    font-weight: 600;
    margin-top: 15px;
	  line-height: 34px;
    text-align: center;
   }

  .section {
    padding: 34px 0;
  }

  .section-sm {
    padding: 24px 0;
  }

  .section .lead,
  .section-sm .lead {
    width: min(760px, 100%);
    margin: 0 auto 26px;
    text-align: center;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    display: grid;
    gap: 18px;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-section {
    padding: 66px 0 70px;
    background:
      linear-gradient(rgba(3, 18, 34, .2), rgba(3, 18, 34, .28)),
      url("../images/why-section-bg.png") center / cover no-repeat;
    border-top: 2px solid var(--yellow);
    border-bottom: 0;
  }

  .why-intro-box {
    position: relative;
    margin-bottom: 38px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
  }

  .why-intro-box::after {
    content: none;
  }

  .why-title {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(3, 18, 34, .35);
  }

  .why-title span {
    color: #ffffff;
  }

  .why-star {
    width: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px auto 4px;
    color: #004cff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
  }

  .why-star::before,
  .why-star::after {
    content: "";
    width: 42px;
    height: 1px;
    background: #004cff;
  }

  .why-section .why-lead {
    width: min(780px, 100%);
    margin-bottom: 30px;
    color: #ffffff;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    line-height: 1.18;
    text-shadow: 0 2px 8px rgba(3, 18, 34, .45);
  }

  .why-intro-box .cta-box3 {
    padding-bottom: 0;
  }

  .why-section .why-grid {
    gap: 14px;
  }

  .why-section .why-card {
    position: relative;
    overflow: hidden;
    min-height: 242px;
    padding: 50px 18px 24px;
    background: #eff6ff;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(3, 18, 34, .2);
    text-align: center;
  }

  .why-section .why-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 10px;
    background: var(--yellow);
  }

  .why-section .why-icon {
    position: relative;
    width: 76px;
    height: 76px;
    margin: -10px auto 18px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: #004cff;
    box-shadow: 0 8px 16px rgba(0, 76, 255, .24);
    font-size: 34px;
  }

  .why-section .why-icon span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding-top: 21px;
    color: #004cff;
    font-size: 13px;
    font-weight: 900;
  }

  .why-section .why-icon-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    padding: 13px;
    font-size: 24px;
  }

  .why-section .why-icon-stack i:first-child {
    grid-row: 1 / 3;
    align-self: center;
  }

  .why-section .why-card h3 {
    margin-bottom: 14px;
    color: #004cff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .why-section .why-card h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 10px auto 0;
    background: #004cff;
  }

  .why-section .why-card p {
    margin: 0;
    color: #071529;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
  }

  .panel,
  .card,
  .quote,
  .faq-item,
  .step,
  .cta-box {
    padding: 24px;
  }

    .card,
    .step {
        min-height: 100%;
        color: #283666;
        background: #ffffff;
        border-radius: 16px;
        text-align: center;
    }

        .card h3,
        .step h3 {
            color: #004cff;
        }

        .card p,
        .step p {
            color: #111627;
        }

    .icon,
    .step-number,
    .timeline-num {
        display: grid;
        place-items: center;
        border: 2px solid rgb(0 76 255);
        border-radius: 50%;
        /* background: radial-gradient(circle at 35% 25%, #22d8ff 0%, #1c5799 38%, #111b71 100%); */
        color: #004cff;
        box-shadow: 0 8px 15px rgba(3, 18, 34, .18);
    }

  .icon {
    width: 72px;
    height: 72px;
    margin: -4px auto 16px;
    font-size: 30px;
  }

  .timeline {
    display: grid;
    gap: 14px;
    margin-top: 22px;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .timeline-num {
    width: 44px;
    height: 44px;
    font-weight: 600;
  }

  .step {
    position: relative;
    padding-top: 58px;
    margin-top: 44px;
	height: 110px;
  }

  .step-number {
    position: absolute;
    top: -52px;
    left: 50%;
    width: 104px;
    height: 104px;
    translate: -50% 0;
    font-size: 42px;
    font-weight: 900;
    background-color: #FFF;
  }

  .quote {
    border-left: 5px solid var(--orange);
  }

  .quote p {
    color: var(--ink);
    font-size: 17px;
  }

  .quote strong {
    color: var(--blue);
  }

  .faq-wrap {
    display: grid;
    gap: 14px;
    margin-top: 24px;
  }

  .faq-item h3 {
    color: var(--orange);
    font-size: 17px;
  }

  .cta-box {
    border-top: 6px solid var(--orange);
    text-align: center;
  }

  footer {
    margin-top: 34px;
    padding: 38px 0;
    color: var(--white);
    background: var(--navy);
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
  }

  .footer-logo {
    width: 142px;
  }

  footer p {
    margin: 0;
    color: #dce9f7;
    font-weight: 700;
  }

  @media (max-width: 980px) {
    .offer-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .trust-strip {
      grid-template-columns: 1fr;
    }

    .slogan {
      display: none;
    }

    .trust-item {
      min-height: 0;
    }
  }

  @media (min-width: 721px) and (max-width: 980px) {
    .why-section .why-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  .deposit-options .power-line {
    padding: 10px 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(255, 255, 255, .92);
    border-left: 4px solid #ef520d;
    border-radius: 6px;
    color: #283666;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(40, 54, 102, .13);
  }

  @media (max-width: 720px) {
    .container {
      width: min(100% - 28px, var(--max));
    }

    .nav {
      min-height: auto;
      padding: 13px 0;
    }

    .logo img,
    .footer-logo {
      width: 122px;
    }

    .subbar {
      height: 10px;
    }

    .btn-outline {
      min-height: 36px;
      padding: 0 12px;
      font-size: 14px;
    }

    .banner-desktop {
      display: none;
    }

    .banner-mobile {
      display: block;
    }

    .hero-banner img {
      min-height: 0;
    }

    h1 {
      font-size: 34px;
	  text-align: center;
    }

    .offer-grid {
      gap: 22px;
    }

    .btn,
    .cta-row .btn {
      width: 100%;
    }

    .step {
      margin-top: 56px;
    }

    .deposit-card-body {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .deposit-icons {
      flex-wrap: wrap;
    }

    .method-icons {
      justify-content: flex-start;
      row-gap: 12px;
    }

    .deposit-showcase {
      gap: 18px;
      margin-top: 4px;
    }

    .deposit-showcase::before {
      inset: -10px;
    }

    .deposit-showcase .deposit-card {
      min-height: 0;
      padding: 22px 18px;
    }

    .deposit-showcase .deposit-heading h3 {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      font-size: 24px;
    }

    .deposit-showcase .deposit-card-body {
      grid-template-columns: 1fr;
    }

    .deposit-showcase .deposit-card.crypto .deposit-checks {
      grid-template-columns: 1fr;
    }

    .deposit-showcase .deposit-card.crypto .deposit-checks li {
      font-size: 14px;
    }

    .deposit-showcase .crypto-icons span,
    .deposit-showcase .method-icons i,
    .deposit-showcase .method-icons b {
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
      flex-basis: 48px;
    }

    .deposit-showcase .method-icons {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .deposit-showcase .method-icons span:last-child {
      grid-column: 1 / -1;
    }

    .deposit-checks {
      min-width: 0;
    }

    .trust-item {
      grid-template-columns: 58px 1fr;
      gap: 12px;
      padding: 14px;
    }

    .trust-icon {
      width: 58px;
      height: 58px;
      font-size: 27px;
    }

    .footer-inner {
      justify-content: center;
      text-align: center;
    }
	 
  }
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

	.title-home {
		align-content: center; 
		color:#2d8f10; 
		font-size: 35px; 
		text-align: center; 
		font-weight: 700;
		line-height: 34px;
	}
	.cta-box3 {
		padding-bottom: 20px;
		text-align: center;
	}

.payout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff7a00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.payout-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
  text-align: center;
}

.payout-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  font-weight: 700;
}

.payout-item span:last-child {
  font-weight: 700;
  text-align: center;
}

.payout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ff7a00;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}


.btn-pulse {
  position: relative;
  overflow: hidden;
  min-height: 56px;
  padding: 11px 34px;
  color: #ffffff;
  background: #2d8f10;
  border: 2px solid #7ec818;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(45, 143, 16, .28);
  animation: button-breathe 1.5s ease-in-out infinite;
}

.btn-pulse::before {
  display: none;
}

.btn-pulse a {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.btn-pulse i {
  color: #ffffff;
  transition: transform .25s ease;
}

.btn-pulse:hover {
  background: #267b0d;
  border-color: #9be538;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(45, 143, 16, .4);
}

.btn-pulse:hover i {
  color: #ffffff;
  transform: translateX(6px);
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 10px 20px rgba(45, 143, 16, .24), 0 0 0 0 rgba(126, 200, 24, .35);
  }
  50% {
    box-shadow: 0 14px 28px rgba(45, 143, 16, .4), 0 0 0 8px rgba(126, 200, 24, 0);
  }
}

@keyframes pulse-inside-out {
  0% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(.82);
  }
  70% {
    opacity: .16;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.32);
  }
}

@keyframes button-breathe {
  0%,
  100% {
    transform: scale(1);
    background: #2d8f10;
    box-shadow: 0 10px 20px rgba(45, 143, 16, .25);
  }
  50% {
    transform: scale(1.055);
    background: #3eaa18;
    box-shadow: 0 16px 30px rgba(45, 143, 16, .45);
  }
}

/* 2. Wobble Animation */
.btn-wobble {
  background-color: #e74c3c;
  color: white;
}

.btn-wobble:hover {
  animation: wobble 0.8s;
}

@keyframes wobble {
  0%,
  100% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
}

/* 3. Border Reveal */
.btn-border-reveal {
  background-color: transparent;
  color: #9b59b6;
  border: 2px solid #9b59b6;
  position: relative;
}

.btn-border-reveal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #9b59b6;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-border-reveal:hover::after {
  width: 100%;
}

.btn-border-reveal:hover {
  color: white;
}

/* 4. Rotate 3D */
.btn-rotate-3d {
  background-color: #f39c12;
  color: white;
  perspective: 300px;
  transform-style: preserve-3d;
}

.btn-rotate-3d:hover {
  animation: rotate3d 0.7s;
}

@keyframes rotate3d {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

