/* Source: shared/css/stocks.css */
:root {
  --stocks-violet: #9b51e0;
  --stocks-teal: #00d084;
  --stocks-ink: #1d274e;
  --stocks-blue: #1f4da5;
  --stocks-muted: #53618a;
  --stocks-surface: rgba(17, 46, 109, 0.72);
  --stocks-border: rgba(255, 255, 255, 0.3);
}

.stocks-page {
  background: #f7f9fc;
  color: var(--stocks-ink);
}

.stocks-container {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.stocks-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.stocks-section--light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.94) 58%, rgba(237, 255, 249, 0.94)),
    #f7f9fc;
}

.stocks-section--light::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.1), rgba(155, 81, 224, 0.02) 58%, transparent 70%);
  pointer-events: none;
}

.stocks-section--simulation {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: linear-gradient(135deg, #f6f2ff 0%, #f4fbff 54%, #effff8 100%);
}

.stocks-section--simulation::before {
  content: "";
  position: absolute;
  inset: auto -10% -220px auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.15), rgba(155, 81, 224, 0.05) 58%, transparent 70%);
  pointer-events: none;
}

.stocks-section--support-area::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -10%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.15), rgba(0, 208, 132, 0.05) 58%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.stocks-section--support-area .stocks-container {
  position: relative;
  z-index: 1;
}

.stocks-section--gradient,
.stocks-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, var(--stocks-violet), var(--stocks-teal));
}

.stocks-hero::before,
.stocks-section--gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/background-4.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.06;
  pointer-events: none;
}

.stocks-section--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(31, 44, 146, 0.46), rgba(0, 117, 121, 0.16));
  pointer-events: none;
}

.stocks-section--gradient .stocks-container,
.stocks-hero__inner {
  position: relative;
  z-index: 1;
}

.stocks-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.stocks-hero__inner {
  padding: 92px 0 98px;
}

.stocks-eyebrow,
.stocks-hero h1,
.stocks-section h2,
.stocks-section h3,
.stocks-section p {
  margin-top: 0;
}

.stocks-eyebrow {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.stocks-hero h1 {
  max-width: 790px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.stocks-hero__copy {
  max-width: 780px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.7;
}

.stocks-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 25px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  background: #00d084;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 9px 22px rgba(0, 99, 88, 0.22);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.stocks-cta:hover {
  background: #00b979;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 99, 88, 0.3);
}

.stocks-copy-block {
  max-width: 980px;
}

.stocks-section h2 {
  margin-bottom: 25px;
  color: var(--stocks-blue);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.stocks-section--gradient h2 {
  color: #fff;
}

.stocks-copy-block p,
.stocks-support > p,
.stocks-simulation > p {
  margin-bottom: 18px;
  color: var(--stocks-muted);
  font-size: 16px;
  line-height: 1.75;
}

.stocks-section--gradient .stocks-support > p,
.stocks-section--gradient .stocks-simulation > p {
  color: rgba(255, 255, 255, 0.89);
}

.stocks-card-grid {
  display: grid;
  gap: 18px;
}

.stocks-card-grid--benefits {
  grid-template-columns: repeat(6, 1fr);
}

.stocks-card-grid--benefits .stocks-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.stocks-card-grid--benefits .stocks-card:nth-child(n + 4) {
  grid-column: span 3;
}

.stocks-card-grid--benefits .stocks-card {
  border-color: rgba(255, 255, 255, 0.72);
  background: #fff;
  box-shadow: 0 16px 34px rgba(28, 51, 110, 0.2);
}

.stocks-card-grid--benefits .stocks-card:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 20px 38px rgba(28, 51, 110, 0.28);
}

.stocks-card-grid--benefits .stocks-card h3 {
  color: #234da5;
}

.stocks-card-grid--benefits .stocks-card p {
  color: #53618a;
}

.stocks-benefit-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.stocks-card {
  min-height: 182px;
  padding: 26px;
  border: 1px solid var(--stocks-border);
  border-radius: 8px;
  background: var(--stocks-surface);
  box-shadow: 0 16px 34px rgba(21, 38, 102, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.stocks-card:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(21, 52, 122, 0.81);
  transform: translateY(-4px);
}

.stocks-card h3,
.stocks-panel h3,
.stocks-simulation h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.stocks-card p,
.stocks-card li {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.stocks-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stocks-list li {
  position: relative;
  padding-left: 20px;
}

.stocks-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d084;
}

.stocks-list--two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 56px;
  margin: 30px 0;
}

.stocks-list--two-columns li {
  color: #3854a7;
  font-size: 16px;
}

.stocks-list--two-columns li::before {
  background: #9b51e0;
}

.stocks-section--extended {
  padding-bottom: 104px;
}

.stocks-card-grid--steps {
  grid-template-columns: repeat(4, 1fr);
}

.stocks-step {
  position: relative;
  min-height: 238px;
  overflow: hidden;
}

.stocks-card-grid--steps .stocks-card,
.stocks-card-grid--support .stocks-card {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(28, 51, 110, 0.2);
}

.stocks-card-grid--steps .stocks-card:hover,
.stocks-card-grid--support .stocks-card:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 20px 38px rgba(28, 51, 110, 0.28);
}

.stocks-card-grid--steps .stocks-card h3,
.stocks-card-grid--support .stocks-card h3 {
  color: #234da5;
}

.stocks-card-grid--steps .stocks-card p,
.stocks-card-grid--steps .stocks-card li,
.stocks-card-grid--support .stocks-card p,
.stocks-card-grid--support .stocks-card li {
  color: #53618a;
}

.stocks-step > span {
  position: absolute;
  bottom: 12px;
  right: 18px;
  z-index: 0;
  margin: 0;
  color: rgba(0, 208, 132, 0.15);
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
}

.stocks-step h3,
.stocks-step p {
  position: relative;
  z-index: 1;
}

.stocks-panel {
  margin-top: 70px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.22);
  backdrop-filter: blur(8px);
}

.stocks-panel h2,
.stocks-simulation h2,
.stocks-support h2,
.stocks-faq h2 {
  margin-bottom: 22px;
}

.stocks-panel h2,
.stocks-simulation h2,
.stocks-panel h3,
.stocks-simulation h3 {
  color: #234da5;
}

.stocks-panel strong,
.stocks-stat-grid strong {
  display: block;
  margin-bottom: 24px;
  color: #00a96d;
  font-size: 20px;
}

.stocks-panel p {
  margin-bottom: 12px;
  color: #53618a;
  font-size: 15px;
}

.stocks-simulation {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(35, 77, 165, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.2);
}

.stocks-simulation::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #9b51e0, #00d084);
}

.stocks-section--gradient .stocks-simulation > p {
  color: #53618a;
}

.stocks-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 28px;
}

.stocks-stat-grid div {
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(35, 77, 165, 0.16);
  border-radius: 7px;
  background: rgba(112, 96, 199, 0.08);
}

.stocks-stat-grid span {
  display: block;
  margin-bottom: 10px;
  color: #53618a;
  font-size: 14px;
}

.stocks-stat-grid strong {
  margin: 0;
}

.stocks-support,
.stocks-faq {
  margin-top: 88px;
}

.stocks-section--light .stocks-support {
  margin-top: 0;
}

.stocks-section--support-area .stocks-support {
  margin-top: 80px;
}

.stocks-card-grid--support {
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.stocks-card-grid--support .stocks-card {
  min-height: 224px;
}

.stocks-support > p:last-child a {
  color: #234da5;
  font-weight: 700;
  text-decoration-color: rgba(35, 77, 165, 0.55);
  text-underline-offset: 3px;
}

.stocks-support > p:last-child a:hover {
  color: #00a96d;
}

.stocks-faq details {
  margin-top: 11px;
  border: 1px solid #234da5;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(35, 77, 165, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stocks-faq details[open] {
  border-color: #3d2eaf;
  box-shadow: 0 10px 24px rgba(35, 77, 165, 0.14);
}

.stocks-faq summary {
  padding: 19px 21px;
  color: #234da5;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.stocks-faq details p {
  padding: 0 21px 19px;
  margin: 0;
  color: #53618a;
  font-size: 15px;
}

@media (max-width: 900px) {
  .stocks-card-grid--benefits,
  .stocks-card-grid--steps,
  .stocks-card-grid--support {
    grid-template-columns: repeat(2, 1fr);
  }

  .stocks-card-grid--benefits .stocks-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .stocks-container {
    width: min(100% - 32px, 1120px);
  }

  .stocks-section {
    padding: 62px 0;
  }

  .stocks-hero {
    min-height: 0;
  }

  .stocks-hero__inner {
    padding: 70px 0;
  }

  .stocks-eyebrow {
    font-size: 23px;
  }

  .stocks-hero h1,
  .stocks-section h2 {
    font-size: 32px;
  }

  .stocks-hero__copy,
  .stocks-copy-block p,
  .stocks-support > p,
  .stocks-simulation > p,
  .stocks-list--two-columns li {
    font-size: 15px;
  }

  .stocks-card-grid--benefits,
  .stocks-card-grid--steps,
  .stocks-card-grid--support,
  .stocks-list--two-columns,
  .stocks-stat-grid {
    grid-template-columns: 1fr;
  }

  .stocks-card,
  .stocks-step,
  .stocks-card-grid--support .stocks-card {
    min-height: 0;
  }

  .stocks-step > span {
    font-size: 96px;
  }

  .stocks-panel,
  .stocks-simulation,
  .stocks-support,
  .stocks-faq {
    margin-top: 52px;
  }

  .stocks-panel,
  .stocks-simulation {
    padding: 26px 22px;
  }

  .stocks-section--simulation {
    padding: 62px 0;
  }

  .stocks-section--support-area .stocks-support {
    margin-top: 52px;
  }
}
/* Source: shared/css/cryptocurrencies.css */
.crypto-page .stocks-hero__copy br {
  display: block;
  content: "";
  margin-top: 10px;
}

.crypto-market-section .stocks-container > section + section {
  margin-top: 96px;
}

.crypto-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.crypto-benefits .stocks-card:nth-child(n) {
  grid-column: auto;
}

.crypto-info-block {
  max-width: 980px;
}

.crypto-info-block > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.75;
}

.crypto-assets-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.crypto-assets-list li {
  position: relative;
  padding-left: 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.crypto-assets-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00e4a1;
}

.crypto-indicators {
  margin: 30px 0;
}

.crypto-indicators li {
  color: #fff;
}

.crypto-indicators li::before {
  background: #00e4a1;
}

.crypto-minimum {
  max-width: 980px;
  margin-top: 72px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.22);
}

.crypto-minimum h2 {
  color: #234da5;
}

.crypto-minimum p {
  margin-bottom: 14px;
  color: #53618a;
  font-size: 16px;
  line-height: 1.7;
}

.crypto-final-cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 88px;
  padding: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(115deg, #9b51e0, #00b985);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.18);
}

.crypto-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.crypto-final-cta__illustration {
  position: absolute;
  top: 50%;
  right: 48px;
  width: 230px;
  height: 230px;
  opacity: 0.35;
  transform: translateY(-50%);
  pointer-events: none;
}

.crypto-final-cta h2,
.crypto-final-cta p {
  color: #fff;
}

.crypto-final-cta h2 {
  margin-bottom: 18px;
}

.crypto-final-cta p {
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.7;
}

.crypto-final-cta .stocks-cta {
  background: #fff;
  color: #234da5;
}

.crypto-final-cta .stocks-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #234da5;
}

@media (max-width: 640px) {
  .crypto-benefits {
    grid-template-columns: 1fr;
  }

  .crypto-market-section .stocks-container > section + section {
    margin-top: 60px;
  }

  .crypto-assets-list {
    grid-template-columns: 1fr;
  }

  .crypto-minimum,
  .crypto-final-cta {
    margin-top: 52px;
    padding: 26px 22px;
  }

  .crypto-final-cta__illustration {
    top: auto;
    right: -30px;
    bottom: -50px;
    width: 180px;
    height: 180px;
    opacity: 0.18;
    transform: none;
  }
}
/* Source: shared/css/ai-investing.css */
.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-cta--light {
  border-color: #fff;
  background: #fff;
  color: #234da5;
}

.ai-cta--light:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #234da5;
}

.ai-section-intro {
  margin: -6px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.ai-technology-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-technology-grid .stocks-card:nth-child(n) {
  grid-column: auto;
}

.ai-technology-grid .stocks-card:last-child {
  grid-column: span 1;
}

.ai-indicators {
  margin-bottom: 28px;
}

.ai-benefits-grid {
  grid-template-columns: repeat(6, 1fr);
}

.ai-benefits-grid .stocks-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.ai-benefits-grid .stocks-card:nth-child(n + 4) {
  grid-column: span 3;
}

.ai-example {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(35, 77, 165, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.2);
}

.ai-example h2,
.ai-final-cta h2 {
  margin: 0 0 22px;
  color: #234da5;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.ai-example p,
.ai-support > p {
  margin: 0 0 14px;
  color: #53618a;
  font-size: 16px;
  line-height: 1.75;
}

.ai-support {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

.ai-final-cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 88px;
  padding: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(115deg, #9b51e0, #00b985);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.18);
}

.ai-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.ai-final-cta h2,
.ai-final-cta p {
  color: #fff;
}

.ai-final-cta p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.7;
}

.ai-final-cta__illustration {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 280px;
  height: 280px;
  opacity: 0.34;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .ai-technology-grid,
  .ai-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-benefits-grid .stocks-card:nth-child(n),
  .ai-technology-grid .stocks-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .ai-technology-grid,
  .ai-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ai-section-intro,
  .ai-example p,
  .ai-support > p {
    font-size: 15px;
  }

  .ai-example {
    padding: 26px 22px;
  }

  .ai-example h2,
  .ai-final-cta h2 {
    font-size: 32px;
  }

  .ai-final-cta {
    margin-top: 52px;
    padding: 26px 22px;
  }

  .ai-final-cta__illustration {
    top: auto;
    right: -34px;
    bottom: -54px;
    width: 180px;
    height: 180px;
    opacity: 0.18;
    transform: none;
  }
}
/* Source: shared/css/personal-support.css */
.support-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-cta--light {
  border-color: #fff;
  background: #fff;
  color: #234da5;
}

.support-cta--light:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #234da5;
}

.support-benefits-grid {
  grid-template-columns: repeat(6, 1fr);
}

.support-benefits-grid .stocks-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.support-benefits-grid .stocks-card:nth-child(n + 4) {
  grid-column: span 3;
}

/* Benefits and team-help content share one continuous background. */
.support-highlight {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, var(--stocks-violet), var(--stocks-teal));
}

.support-highlight::before,
.support-highlight::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.support-highlight::before {
  background: url("/images/background-4.webp") center / cover no-repeat;
  opacity: .06;
}

.support-highlight::after {
  background: linear-gradient(145deg, rgba(31, 44, 146, .46), rgba(0, 117, 121, .16));
}

.support-highlight .stocks-section--gradient {
  background: transparent;
}

.support-highlight .stocks-section--gradient::before,
.support-highlight .stocks-section--gradient::after {
  display: none;
}

.support-highlight .stocks-container {
  position: relative;
  z-index: 1;
}

.support-manager {
  max-width: 1120px;
}

.support-manager > p,
.support-channels > p {
  margin: -6px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.support-manager__list {
  margin-bottom: 28px;
}

.stocks-section--gradient .support-manager__list li {
  color: #fff;
  font-weight: 700;
}

.stocks-section--gradient .support-manager__list li::before {
  width: auto;
  height: auto;
  background: transparent;
  color: #00e4a1;
  content: "✓";
  top: 0;
}

.support-channels {
  margin-top: 88px;
}

.support-channels__grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-channels__grid .stocks-card {
  min-height: 198px;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(28, 51, 110, 0.2);
}

.support-channels__grid .stocks-card:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 20px 38px rgba(28, 51, 110, 0.28);
}

.support-channels__grid .stocks-card h3 {
  color: #234da5;
}

.support-channels__grid .stocks-card p {
  color: #53618a;
}

.support-hours {
  margin-top: 76px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.22);
}

.support-hours h2 {
  color: #234da5;
}

.support-hours p {
  margin: 0 0 14px;
  color: #53618a;
  font-size: 16px;
  line-height: 1.7;
}

.support-hours strong {
  display: block;
  margin-bottom: 18px;
  color: #00a96d;
  font-size: 18px;
  line-height: 1.5;
}

.support-lower-area .stocks-support {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

.support-final-cta {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 88px;
  padding: 44px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(115deg, #9b51e0, #00b985);
  box-shadow: 0 18px 36px rgba(28, 51, 110, 0.18);
}

.support-final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.support-final-cta h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
}

.support-final-cta p {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.support-final-cta p:last-of-type {
  margin-bottom: 26px;
}

.support-final-cta__illustration {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 280px;
  height: 280px;
  opacity: 0.34;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .support-benefits-grid,
  .support-channels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-benefits-grid .stocks-card:nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .support-benefits-grid,
  .support-channels__grid {
    grid-template-columns: 1fr;
  }

  .support-manager > p,
  .support-channels > p,
  .support-hours p,
  .support-final-cta p {
    font-size: 15px;
  }

  .support-channels,
  .support-hours {
    margin-top: 52px;
  }

  .support-hours {
    padding: 26px 22px;
  }

  .support-final-cta {
    margin-top: 52px;
    padding: 26px 22px;
  }

  .support-final-cta h2 {
    font-size: 32px;
  }

  .support-final-cta__illustration {
    top: auto;
    right: -34px;
    bottom: -54px;
    width: 180px;
    height: 180px;
    opacity: 0.18;
    transform: none;
  }
}
