:root {
  --blue: #0752c9;
  --deep: #061c48;
  --navy: #061a42;
  --orange: #ff6b00;
  --soft: #eff7ff;
  --text: #08214f;
  --muted: #4f6587;
  --line: #d7e4f7;
}

* {
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: #f8fbff;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1180px;
}

.main-nav {
  min-height: 78px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(18, 85, 160, .12);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  backdrop-filter: blur(12px);
}

.navbar-brand {
  padding: 0;
}

.site-logo {
  width: 235px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-logo {
  width: 205px;
}

.logo-mark {
  width: 52px;
  height: 39px;
  border: 4px solid var(--blue);
  border-top: 0;
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
  position: relative;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  top: -10px;
  height: 4px;
  border-radius: 9px;
  background: var(--orange);
}

.logo-mark::before {
  left: 10px;
  width: 24px;
}

.logo-mark::after {
  right: -3px;
  width: 14px;
}

.brand-copy {
  display: grid;
  line-height: .9;
}

.brand-copy strong {
  font-size: 31px;
  color: var(--orange);
  font-weight: 800;
}

.brand-copy strong span {
  color: var(--blue);
}

.brand-copy small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-link {
  color: #071f4b;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 0;
}

.nav-link.active {
  color: #071f4b !important;
  border-bottom: 3px solid var(--orange);
}

.btn {
  border-radius: 8px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  padding: 11px 24px;
}

.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, #ff5a00, #ff8b00);
  border: 0;
  box-shadow: 0 14px 24px rgba(255, 101, 0, .28);
}

.btn-primary-soft {
  color: #fff;
  background: linear-gradient(135deg, #0758d6, #053582);
  border: 0;
  min-width: 195px;
  box-shadow: 0 16px 30px rgba(0, 64, 160, .26);
}

.btn-outline-blue {
  color: #072b74;
  border: 2px solid #0d4faf;
  background: #fff;
  min-width: 170px;
}

.hero-section {
  padding: 150px 0 45px;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 14%, rgba(255,255,255,.5) 0 2px, transparent 3px),
    radial-gradient(circle at 89% 40%, rgba(255,255,255,.42) 0 2px, transparent 3px),
    linear-gradient(112deg, rgba(255,255,255,.98) 0 48%, rgba(198,230,255,.75) 67%, rgba(54,155,248,.82) 100%);
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(circle at 101% 2%, transparent 0 26px, rgba(255,255,255,.28) 27px 29px),
    repeating-radial-gradient(circle at -11% 84%, transparent 0 30px, rgba(0,97,200,.09) 31px 33px);
  pointer-events: none;
}

.hero-section .container,
main,
footer {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: #0062dc;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 14px;
}

.eyebrow {
  color: var(--orange);
  font-size: 18px;
}

.hero-copy h1 {
  color: #071d4a;
  font-size: clamp(38px, 4.6vw, 53px);
  line-height: 1.13;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero-copy .lead {
  color: #17315e;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.hero-checks {
  margin-top: 20px;
  color: #0a2c60;
  font-size: 15px;
  font-weight: 750;
}

.hero-checks i {
  color: var(--blue);
  margin-right: 8px;
}

.trust-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  color: #163764;
  font-size: 12px;
  font-weight: 800;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-row i {
  color: #1d83ff;
  font-size: 29px;
}

.green {
  color: #36a852 !important;
}

.orange {
  color: var(--orange) !important;
}

.blue {
  color: var(--blue) !important;
}

.purple {
  color: #8a4df6 !important;
}

.red {
  color: #c91925 !important;
}

.hero-visual {
  min-height: 560px;
  position: relative;
}

.laptop {
  width: min(620px, 88vw);
  margin: 10px auto 0;
  filter: drop-shadow(0 28px 24px rgba(3, 23, 60, .32));
}

.screen {
  width: 100%;
  aspect-ratio: 1.38;
  background: #111;
  border: 16px solid #101010;
  border-radius: 20px 20px 8px 8px;
  padding: 18px;
  position: relative;
}

.screen::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,.15);
  pointer-events: none;
}

.base {
  width: 112%;
  height: 36px;
  margin-left: -6%;
  background: linear-gradient(180deg, #dfe5ea, #8d969d);
  border-radius: 0 0 55px 55px;
  transform: perspective(130px) rotateX(10deg);
}

.app-top,
.app-body,
.summary {
  background: #fff;
}

.app-top {
  height: 34px;
  border-radius: 8px 8px 0 0;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2a4775;
  font-size: 11px;
  font-weight: 800;
}

.mini-logo {
  color: var(--orange);
}

.mini-logo i {
  color: var(--blue);
}

.lang b {
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  padding: 3px 8px;
}

.app-body {
  display: grid;
  grid-template-columns: 1fr 155px;
  gap: 12px;
  padding: 13px;
  min-height: 282px;
}

.typing-panel {
  position: relative;
  color: #172d55;
  font-size: 13px;
}

.typing-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
}

.timer {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 17px;
  font-weight: 900;
  text-align: right;
}

.timer small {
  color: #8190aa;
  font-size: 10px;
}

.typing-panel p {
  min-height: 66px;
  margin: 0;
  width: 82%;
  line-height: 1.8;
}

.progress {
  height: 6px;
  background: #dae5f5;
  margin: 10px 0 13px;
  border-radius: 9px;
}

.progress span {
  display: block;
  width: 45%;
  height: 100%;
  background: #1677ff;
  border-radius: inherit;
}

.keyboard {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
}

.keyboard span {
  min-height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #d4deee;
  border-radius: 3px;
  color: #506174;
  background: #f8fbff;
  font-size: 9px;
  font-weight: 800;
}

.keyboard .key-blue {
  background: #1474e8;
  color: #fff;
}

.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stats-panel div {
  background: #f5f9ff;
  border: 1px solid #dfe9f7;
  border-radius: 10px;
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #24456f;
}

.stats-panel small {
  font-size: 10px;
  font-weight: 800;
}

.stats-panel b {
  color: #0b55d5;
  border: 4px solid #46b85c;
  border-left-color: #1475ed;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.stats-panel em {
  font-size: 9px;
  color: #50a957;
  font-style: normal;
  font-weight: 800;
}

.stats-panel .wide {
  grid-column: 1 / -1;
  min-height: 58px;
}

.stats-panel .wide b {
  border: 0;
  height: auto;
  width: auto;
}

.graph span {
  width: 95%;
  height: 35px;
  background: linear-gradient(145deg, transparent 46%, #1677ff 48% 52%, transparent 54%), linear-gradient(#eef4fc 1px, transparent 1px), linear-gradient(90deg, #eef4fc 1px, transparent 1px);
  background-size: 100% 100%, 20px 12px, 24px 12px;
}

.summary {
  height: 46px;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #e6eef8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
  align-items: center;
  color: #536379;
  font-size: 10px;
}

.summary b {
  display: block;
  color: #0b214a;
  font-size: 14px;
}

.side-stat,
.floating-badges span {
  background: rgba(255,255,255,.94);
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(38, 114, 202, .18);
}

.side-stat {
  position: absolute;
  right: 0;
  width: 142px;
  min-height: 78px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  column-gap: 12px;
}

.side-stat i {
  grid-row: span 2;
  font-size: 35px;
  color: #25a34a;
}

.side-stat b {
  font-size: 23px;
}

.side-stat span {
  color: #4d6180;
  font-size: 12px;
}

.stat-one {
  top: 48px;
}

.stat-two {
  top: 148px;
}

.stat-two i {
  color: var(--orange);
}

.stat-three {
  top: 248px;
  width: 166px;
}

.stat-three i {
  color: #2083ff;
}

.floating-badges {
  position: absolute;
  right: 105px;
  bottom: 33px;
  display: flex;
  gap: 15px;
}

.floating-badges span {
  color: #18345e;
  min-width: 122px;
  padding: 14px 15px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-badges i {
  font-size: 24px;
  color: #1475ed;
}

.feature-strip {
  margin-top: -10px;
  padding: 35px 25px;
  background: rgba(255,255,255,.96);
  border: 1px solid #d8e8fb;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(30, 94, 160, .15);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
  z-index: 2;
}

.strip-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #d7e2f2;
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item i {
  font-size: 44px;
}

h2,
.strip-item h3,
.feature-cards h3,
.price-card h3,
.requirements h3 {
  color: #09265b;
  font-weight: 900;
}

.strip-item h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 13px 0 10px;
}

.strip-item p {
  color: #41587a;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.why-section {
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 94% 55%, rgba(7, 112, 227, .08), transparent 30%),
    #fbfdff;
}

.why-section h2,
.pricing h2,
.testimonials h2 {
  font-size: 31px;
  line-height: 1.28;
}

.title-line {
  display: block;
  width: 44px;
  height: 3px;
  background: var(--orange);
  margin: 18px 0 24px;
}

.why-section p {
  color: #466080;
  line-height: 1.8;
  font-size: 14px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}

.why-grid div {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 4px 12px;
  align-items: start;
}

.why-grid i {
  grid-row: span 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #1475ed;
  background: #edf6ff;
  border-radius: 8px;
  box-shadow: 0 9px 16px rgba(25, 117, 237, .12);
}

.why-grid b {
  font-size: 14px;
}

.why-grid span {
  color: #526986;
  font-size: 12px;
  line-height: 1.55;
}

.software-box {
  width: 210px;
  height: 265px;
  border-radius: 10px;
  padding: 34px 18px 18px;
  background: linear-gradient(145deg, #0b3c91, #061b46 72%);
  color: #fff;
  box-shadow: -14px 23px 34px rgba(5, 26, 70, .28);
  display: grid;
  align-content: center;
  gap: 28px;
  transform: perspective(420px) rotateY(-6deg);
}

.box-logo {
  font-size: 23px;
  font-weight: 800;
}

.box-logo i {
  font-size: 33px;
}

.box-logo,
.box-logo i {
  color: #fff;
}

.software-box strong {
  font-size: 15px;
  line-height: 1.5;
}

.software-box div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.software-box div span {
  border: 1px solid rgba(255, 138, 0, .7);
  border-radius: 5px;
  padding: 6px 2px;
  font-size: 9px;
  text-align: center;
  color: #ff9d28;
}

.power-section {
  padding: 28px 0 0;
  background: linear-gradient(135deg, #06246a, #0049ad 48%, #022e78);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.section-kicker.light {
  color: #d5e8ff;
  margin-bottom: 4px;
}

.power-section h2 {
  font-size: 29px;
}

.feature-cards {
  margin-top: 14px;
}

.feature-cards > div {
  flex: 0 0 20%;
  max-width: 20%;
}

.feature-cards article {
  min-height: 150px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 12px 20px rgba(3, 22, 58, .24);
}

.feature-cards i {
  display: block;
  color: #1475ed;
  font-size: 39px;
  margin-bottom: 10px;
}

.feature-cards h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.feature-cards p {
  color: #4c607d;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.trusted-panel {
  margin: 18px auto 54px;
  background: #fff;
  border-radius: 8px;
  padding: 25px 26px;
  box-shadow: 0 18px 34px rgba(6, 35, 88, .18);
}

.trusted-panel h2 {
  color: #0a4bb7;
  font-size: 26px;
  text-align: center;
  margin-bottom: 24px;
}

.trusted-panel .col-lg {
  border-right: 1px solid #d9e5f4;
  display: grid;
  grid-template-columns: 54px 1fr;
  text-align: left;
  align-items: center;
}

.trusted-panel .col-lg:last-child {
  border-right: 0;
}

.trusted-panel i {
  grid-row: span 2;
  color: #1475ed;
  font-size: 32px;
  text-align: center;
}

.trusted-panel b {
  color: #073a9d;
  font-size: 26px;
}

.trusted-panel span {
  color: #435b79;
  font-size: 13px;
}

.testimonials {
  padding: 94px 0 35px;
  background: #fff;
  position: relative;
}

.testimonial {
  min-height: 170px;
  border-radius: 8px;
  padding: 23px 28px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(43, 95, 150, .12);
}

.stars {
  color: #ffb300;
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial p {
  color: #344c71;
  font-size: 13px;
  line-height: 1.65;
}

.testimonial b,
.testimonial span {
  display: block;
  padding-left: 46px;
  position: relative;
}

.testimonial b::before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0;
  top: -6px;
  border-radius: 50%;
  background: linear-gradient(145deg, #263f67, #e7b7a7);
}

.testimonial b {
  color: #0c2c64;
  font-size: 13px;
}

.testimonial span {
  color: #557090;
  font-size: 12px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid #b8cbe4;
  border-radius: 50%;
  color: #0b4ead;
  background: #fff;
  box-shadow: 0 8px 18px rgba(30, 94, 160, .12);
}

.slider-arrow.left {
  left: 52px;
}

.slider-arrow.right {
  right: 52px;
}

.pricing {
  padding: 20px 0 38px;
  background: #fff;
}

.price-card,
.requirements {
  height: 100%;
  border-radius: 8px;
  padding: 25px 28px;
  background: #fff;
  border: 1px solid #bed2ec;
}

.price-card {
  position: relative;
  text-align: center;
}

.price-card.popular {
  border: 2px solid var(--orange);
}

.price-card.popular > span {
  position: absolute;
  top: -1px;
  left: -1px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px 0 8px 0;
  padding: 7px 22px;
  font-size: 11px;
  font-weight: 800;
}

.price-card h3 {
  color: #0b50ba;
  font-size: 15px;
  margin: 8px 0;
}

.price-card strong {
  display: block;
  color: #062d83;
  font-size: 26px;
  margin-bottom: 22px;
}

.price-card small {
  color: #223a60;
  font-size: 13px;
}

.price-card ul {
  padding: 0;
  margin: 0 0 23px;
  list-style: none;
  text-align: left;
  color: #18365d;
  font-size: 13px;
  line-height: 2.1;
}

.price-card li::before {
  content: "✓";
  color: #083a98;
  font-weight: 900;
  margin-right: 12px;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.cart-row .cart-quantity {
  min-height: 46px;
  border-color: var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.requirements {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 30px 34px;
  background:
    linear-gradient(135deg, rgba(7, 82, 201, .96), rgba(5, 28, 72, .98)),
    #082a6a;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(5, 38, 99, .18);
  display: grid;
  grid-template-columns: 250px repeat(5, minmax(135px, 1fr));
  align-items: stretch;
  gap: 14px;
}

.requirements::before {
  content: "";
  position: absolute;
  inset: -70px -110px auto auto;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.requirements::after {
  content: "";
  position: absolute;
  inset: auto auto -85px 18%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.requirements h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.requirements p {
  position: relative;
  z-index: 1;
  min-height: 96px;
  margin: 0;
  padding: 18px 14px;
  color: #eaf3ff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  gap: 8px;
}

.requirements i {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff6b00, #ff9d22);
  border-radius: 10px;
  font-size: 21px;
  box-shadow: 0 12px 22px rgba(255, 107, 0, .28);
}

.download-cta {
  color: #fff;
  background: linear-gradient(90deg, #07317d, #0058c9);
  padding: 24px 0;
}

.download-cta h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 4px;
}

.download-cta p {
  margin: 0;
  color: #d8eaff;
  font-size: 13px;
}

.site-footer {
  color: #dcecff;
  background: linear-gradient(135deg, #02142d, #041f3e);
  padding: 24px 0 12px;
}

.site-footer .brand-copy strong,
.site-footer .brand-copy strong span,
.site-footer .brand-copy small,
.site-footer .logo-mark {
  color: #fff;
  border-color: #fff;
}

.site-footer p,
.site-footer a {
  color: #dcecff;
  display: block;
  font-size: 13px;
  line-height: 1.8;
}

.site-footer h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 13px;
}

.socials {
  display: flex;
  gap: 12px;
  color: #47a0ff;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 20px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  color: #b9cbe0;
  font-size: 12px;
}

.footer-bottom b {
  color: #ff4d32;
}

@media (max-width: 1199px) {
  .side-stat {
    right: -8px;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
  }

  .strip-item:nth-child(3) {
    border-right: 0;
  }

  .feature-cards > div {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

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

  .requirements h3 {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 4px;
    border-right: 0;
  }
}

@media (max-width: 991px) {
  .main-nav {
    border-radius: 0;
  }

  .hero-section {
    padding-top: 115px;
  }

  .hero-visual {
    min-height: 640px;
  }

  .side-stat {
    right: 0;
  }

  .feature-strip {
    margin-top: 0;
  }

  .trusted-panel .col-lg {
    border: 0;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .site-logo {
    width: 190px;
  }

  .footer-logo {
    width: 185px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .hero-copy h1 {
    font-size: 35px;
  }

  .screen {
    padding: 10px;
    border-width: 10px;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    display: none;
  }

  .summary {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    padding: 8px;
    row-gap: 8px;
  }

  .side-stat {
    position: static;
    display: inline-grid;
    margin: 8px;
  }

  .floating-badges {
    position: static;
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: center;
  }

  .feature-strip,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid #d7e2f2;
    padding: 0 12px 22px;
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .feature-cards > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .requirements {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .requirements h3 {
    justify-content: center;
    text-align: center;
    font-size: 23px;
  }

  .requirements p {
    min-height: 84px;
  }

  .slider-arrow {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .feature-cards > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
  }
}
