:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-strong: #f0ede6;
  --ink: #151515;
  --muted: #67645e;
  --line: #ded8cc;
  --track: #101114;
  --track-soft: #1c1d21;
  --red: #d40b2a;
  --red-dark: #9f071d;
  --gold: #d6aa45;
  --green: #17875c;
  --danger: #bd2537;
  --shadow: 0 20px 60px rgba(13, 13, 14, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(14, 14, 16, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(246, 244, 239, 0.95);
  color: var(--ink);
  border-color: rgba(21, 21, 21, 0.12);
  box-shadow: 0 12px 30px rgba(12, 12, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand-text {
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 650;
}

.primary-nav a {
  opacity: 0.86;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.primary-button,
.secondary-button,
.ghost-button,
.store-button,
.tab-button {
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 16px 34px rgba(212, 11, 42, 0.26);
  font-weight: 800;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.primary-button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.primary-button.full {
  width: 100%;
}

.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  font-weight: 750;
}

.site-header.scrolled .ghost-button {
  border-color: rgba(21, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.secondary-button:hover,
.ghost-button:hover,
.secondary-button:focus-visible,
.ghost-button:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.95) 0%, rgba(9, 10, 12, 0.82) 38%, rgba(9, 10, 12, 0.4) 68%, rgba(9, 10, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(16, 17, 20, 0.88));
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.06rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

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

.trust-row span {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.metrics-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -72px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metrics-strip article {
  min-height: 144px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

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

.metrics-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.metrics-strip span {
  color: var(--muted);
  font-weight: 650;
}

.section-pad {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2,
.vault-copy h2,
.mobile-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.feature-card,
.academy-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card.featured {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(212, 11, 42, 0.92), rgba(16, 17, 20, 0.98)),
    var(--track);
  border-color: rgba(212, 11, 42, 0.3);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  color: var(--red);
  background: rgba(212, 11, 42, 0.08);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.82rem;
}

.featured .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.feature-card h3,
.academy-grid h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.18;
}

.feature-card p,
.academy-grid p,
.vault-copy p,
.mobile-copy p,
.footer-brand p,
.risk-disclosure {
  color: var(--muted);
  line-height: 1.65;
}

.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-card a,
.text-link {
  color: var(--red);
  font-weight: 850;
}

.market-shell {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--track);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.tab-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  font-weight: 750;
}

.tab-button.active {
  color: #fff;
  background: var(--track);
  border-color: var(--track);
}

.ticker-bar {
  display: flex;
  gap: 28px;
  overflow: hidden;
  max-width: 100%;
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.78);
  background: #08090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 850;
}

.ticker-bar span {
  flex: 0 0 auto;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.market-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #fff;
}

.market-table th,
.market-table td {
  padding: 20px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-table th {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.asset-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asset-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--track);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.76rem;
}

.asset-name strong {
  display: block;
  margin-bottom: 2px;
}

.asset-name span,
.data-note {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.change.up {
  color: #66d89d;
}

.change.down {
  color: #ff7f91;
}

.spark {
  display: grid;
  align-items: end;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  width: 96px;
  height: 34px;
}

.spark span {
  display: block;
  min-height: 6px;
  background: currentColor;
  border-radius: 2px 2px 0 0;
  opacity: 0.9;
}

.market-action {
  min-height: 36px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 750;
}

.market-action:hover,
.market-action:focus-visible {
  border-color: var(--gold);
}

.data-note {
  margin: 0;
  padding: 18px 22px 22px;
}

.vault-section,
.mobile-section {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.vault-copy > p,
.mobile-copy > p {
  max-width: 660px;
  margin: 22px 0 30px;
  font-size: 1.04rem;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.security-list strong {
  font-size: 1rem;
}

.security-list span {
  color: var(--muted);
  line-height: 1.5;
}

.vault-panel {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--track);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.panel-header span {
  color: rgba(255, 255, 255, 0.58);
}

.progress-card {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 2fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-track {
  height: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: inherit;
}

.mobile-section {
  padding-bottom: 12px;
}

.phone-stack {
  position: relative;
  min-height: 520px;
}

.phone-card {
  position: absolute;
  width: min(250px, 44vw);
  min-height: 430px;
  padding: 28px 18px 18px;
  background: #111217;
  border: 8px solid #26272c;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(13, 13, 14, 0.28);
}

.phone-one {
  left: 5%;
  top: 22px;
  transform: rotate(-7deg);
}

.phone-two {
  right: 9%;
  bottom: 10px;
  transform: rotate(7deg);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 18px;
  transform: translateX(-50%);
  background: #050506;
  border-radius: 999px;
}

.phone-topline {
  height: 96px;
  margin: 28px 0 20px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 8px;
}

.mini-chart {
  height: 150px;
  background:
    linear-gradient(135deg, transparent 48%, rgba(214, 170, 69, 0.9) 49%, rgba(214, 170, 69, 0.9) 52%, transparent 53%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-list span {
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 5px;
}

.alert-pill {
  margin: 40px auto 28px;
  padding: 12px;
  color: #fff;
  background: rgba(212, 11, 42, 0.78);
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
}

.qr-grid span {
  aspect-ratio: 1;
  background: #111217;
  border-radius: 3px;
}

.qr-grid span:nth-child(3n) {
  background: var(--red);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: grid;
  min-width: 178px;
  min-height: 66px;
  padding: 10px 16px;
  color: #fff;
  background: var(--track);
  border: 1px solid var(--track);
  text-align: left;
}

.store-button.light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.store-button span {
  color: currentColor;
  opacity: 0.68;
  font-size: 0.78rem;
}

.store-button strong {
  font-size: 1.08rem;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.academy-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 7px 9px;
  color: var(--red);
  background: rgba(212, 11, 42, 0.08);
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-section {
  padding-bottom: 112px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 76px;
  padding: 0 24px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 850;
}

.faq-item b {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  color: #fff;
  background: var(--red);
  border-radius: 8px;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 50px;
  padding: 56px clamp(18px, 5vw, 72px) 34px;
  color: #fff;
  background: var(--track);
}

.footer-brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.62);
  margin: 18px 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-columns h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-columns a,
.footer-columns button {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
}

.footer-columns a:hover,
.footer-columns button:hover {
  color: #fff;
}

.risk-disclosure {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.chat-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(212, 11, 42, 0.34);
  font-weight: 900;
  font-size: 1.3rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 10, 12, 0.68);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.modal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.55;
}

.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.modal-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 780;
}

.modal-form input,
.modal-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.modal-form input:focus,
.modal-form select:focus {
  outline: 2px solid rgba(212, 11, 42, 0.2);
  border-color: var(--red);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .primary-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.nav-open .primary-nav,
  .site-header.nav-open .header-actions {
    display: flex;
  }

  .site-header.nav-open .primary-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .site-header.nav-open .primary-nav a {
    padding: 12px 0;
  }

  .site-header.nav-open .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 8px;
  }

  .metrics-strip,
  .feature-grid,
  .academy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-strip article:nth-child(2) {
    border-right: 0;
  }

  .metrics-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .vault-section,
  .mobile-section {
    grid-template-columns: 1fr;
  }

  .mobile-copy {
    order: -1;
  }

  .phone-stack {
    min-height: 470px;
  }

  .phone-one {
    left: 12%;
  }

  .phone-two {
    right: 14%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-top: 86px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero-actions,
  .download-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .store-button {
    width: 100%;
  }

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

  .metrics-strip {
    margin-top: -42px;
  }

  .metrics-strip article,
  .metrics-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-pad {
    width: min(100% - 28px, var(--max));
    padding-top: 76px;
  }

  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .tab-controls {
    width: 100%;
  }

  .tab-button {
    flex: 1 1 30%;
  }

  .progress-card {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 520px;
  }

  .phone-card {
    width: min(230px, 64vw);
  }

  .phone-one {
    left: 0;
  }

  .phone-two {
    right: 0;
  }

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

  .modal-card {
    padding: 26px 18px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
