/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background: #ffffff;

  color: #17112f;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

  --purple: green;
  --purple-dark: green;
  --purple-light: green;

  --purple-soft: #f6edff;
  --purple-border: #e6d4fb;

  --text: #18112f;
  --text-soft: #676274;

  --green: #11aa78;

  --border: #e9e5ef;

  --container: 1160px;

  --shadow:
    0 20px 60px rgba(77, 20, 150, 0.08);
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {

  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255,255,255,.95);

  border-bottom:
    1px solid #eeeaf3;

  backdrop-filter:
    blur(14px);
}

.nav-container {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  min-height: 76px;

  margin: auto;

  display: flex;
  align-items: center;

  gap: 30px;
}


/* Logo */

.logo {

  display: flex;
  align-items: center;

  gap: 9px;

  flex-shrink: 0;

  color: var(--text);

  font-size: 18px;
  font-weight: 800;

  letter-spacing: -.6px;
}

.logo-mark {

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      green,
      green
    );

  color: white;

  font-size: 16px;
  font-weight: 800;

  box-shadow:
    0 6px 16px
    rgba(101, 21, 214, .2);
}


/* Navigation links */

.nav-links {

  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 29px;
}

.nav-links a {

  position: relative;

  color: #686274;

  font-size: 13px;
  font-weight: 600;

  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {

  color: var(--purple);
}

.nav-links a.active::after {

  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -9px;

  height: 2px;

  border-radius: 10px;

  background: var(--purple);
}


/* Nav actions */

.nav-actions {

  display: flex;
  align-items: center;

  gap: 8px;
}

.login-btn {

  padding: 10px 15px;

  color: var(--purple);

  font-size: 12px;
  font-weight: 700;
}

.signup-btn {

  padding: 11px 17px;

  border-radius: 8px;

  background: var(--purple);

  color: white;

  font-size: 12px;
  font-weight: 700;

  transition: .2s ease;
}

.signup-btn:hover {

  background:
    var(--purple-dark);

  transform:
    translateY(-1px);
}


/* Menu button */

.menu-button {

  width: 40px;
  height: 40px;

  display: none;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  border:
    1px solid var(--border);

  border-radius: 8px;

  background: white;

  cursor: pointer;
}

.menu-button span {

  width: 18px;
  height: 2px;

  border-radius: 5px;

  background: var(--text);

  transition: .2s;
}

.menu-button.open span:nth-child(1) {

  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-button.open span:nth-child(2) {

  opacity: 0;
}

.menu-button.open span:nth-child(3) {

  transform:
    translateY(-7px)
    rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

  display: none;

  padding: 20px 24px 25px;

  border-bottom:
    1px solid var(--border);

  background: white;
}

.mobile-menu a {

  display: block;

  padding: 12px 0;

  color: #676172;

  font-size: 14px;
  font-weight: 600;
}

.mobile-menu a.active {

  color: var(--purple);
}

.mobile-actions {

  margin-top: 10px;

  display: flex;
  flex-direction: column;
}

.mobile-menu.show {

  display: block;
}


/* =========================================================
   HERO
========================================================= */

.hero {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  min-height: 650px;

  margin: auto;

  padding:
    85px 35px
    90px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 70px;

  overflow: hidden;

  position: relative;
}

.hero::before {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -250px;
  top: -180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(154, 70, 241, .11),
      transparent 68%
    );

  pointer-events: none;
}

.hero-content {

  position: relative;
  z-index: 2;
}

.eyebrow {

  width: fit-content;

  margin-bottom: 20px;

  padding: 7px 12px;

  display: flex;
  align-items: center;

  gap: 7px;

  border:
    1px solid var(--purple-border);

  border-radius: 100px;

  background:
    var(--purple-soft);

  color: var(--purple);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 1px;
}

.eyebrow-dot {

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #8e32e7;

  box-shadow:
    0 0 0 4px
    rgba(142,50,231,.1);
}

.hero h1 {

  max-width: 600px;

  color: var(--text);

  font-size:
    clamp(42px, 5vw, 63px);

  line-height: 1.04;

  font-weight: 800;

  letter-spacing: -3px;
}

.hero h1 span {

  display: block;

  color: var(--purple);
}

.hero-content > p {

  max-width: 570px;

  margin-top: 22px;

  color: var(--text-soft);

  font-size: 15px;

  line-height: 1.75;
}

.hero-buttons {

  margin-top: 30px;

  display: flex;
  align-items: center;

  gap: 15px;
}

.primary-button {

  padding: 14px 19px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      #6415d6,
      #8126e6
    );

  color: white;

  font-size: 12px;
  font-weight: 800;

  box-shadow:
    0 12px 25px
    rgba(100,21,214,.2);
}

.primary-button span {

  font-size: 16px;
}

.activation-note {

  color: #85808d;

  font-size: 10px;
}

.hero-trust {

  margin-top: 23px;

  display: flex;

  gap: 18px;

  color: #777180;

  font-size: 10px;
  font-weight: 600;
}


/* =========================================================
   VIRTUAL CARD
========================================================= */

.hero-card-area {

  position: relative;

  min-height: 410px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.card-glow {

  position: absolute;

  width: 390px;
  height: 390px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(137,48,228,.2),
      rgba(137,48,228,.05) 45%,
      transparent 70%
    );

  filter:
    blur(3px);
}

.virtual-card {

  width: 440px;
  max-width: 90%;

  aspect-ratio: 1.62;

  position: relative;

  padding: 29px 32px;

  display: flex;
  flex-direction: column;

  border-radius: 23px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(183, 111, 255, .38),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      green 0%,
      green 48%,
      green
    );

  color: white;

  box-shadow:
    0 30px 55px
    rgba(65, 10, 120, .28);

  transform:
    perspective(1000px)
    rotateY(-7deg)
    rotateX(3deg);
}

.card-top {

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-weight: 800;
}

.card-brand {

  font-size: 14px;

  letter-spacing: 1px;
}

.visa {

  font-size: 22px;

  font-style: italic;
  font-weight: 900;
}

.card-chip {

  width: 44px;
  height: 33px;

  margin-top: 38px;

  border-radius: 7px;

  background:
    linear-gradient(
      135deg,
      #d7b96c,
      #fff0a5,
      #bc9340
    );

  position: relative;
}

.card-chip::after {

  content: "";

  position: absolute;

  left: 50%;
  top: 0;
  bottom: 0;

  width: 1px;

  background:
    rgba(100,70,20,.35);
}

.card-number {

  margin-top: 27px;

  font-family:
    "Courier New",
    monospace;

  font-size: 21px;

  letter-spacing: 1px;
}

.card-details {

  margin-top: auto;

  display: flex;
  justify-content: space-between;
}

.card-details div {

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.card-details small {

  color:
    rgba(255,255,255,.55);

  font-size: 7px;

  letter-spacing: 1px;
}

.card-details strong {

  font-size: 9px;

  letter-spacing: .5px;
}

.card-shine {

  position: absolute;

  width: 250px;
  height: 500px;

  right: -130px;
  top: -150px;

  transform:
    rotate(35deg);

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.09),
      transparent
    );
}

.card-floating-badge {

  position: absolute;

  right: 8px;
  bottom: 43px;

  padding: 10px 14px;

  display: flex;
  align-items: center;

  gap: 7px;

  border:
    1px solid rgba(255,255,255,.7);

  border-radius: 100px;

  background:
    rgba(255,255,255,.9);

  color: #332642;

  font-size: 10px;
  font-weight: 800;

  box-shadow:
    0 10px 30px
    rgba(52,12,100,.15);
}

.check {

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #17b77f;

  color: white;

  font-size: 10px;
}


/* =========================================================
   CENTER HEADINGS
========================================================= */

.center-heading,
.section-title {

  max-width: 700px;

  margin: auto;

  text-align: center;
}

.small-label {

  margin-bottom: 9px;

  color: var(--purple);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;
}

.center-heading h2,
.section-title h2 {

  color: var(--text);

  font-size: 32px;

  line-height: 1.15;

  letter-spacing: -1.3px;

  font-weight: 800;
}

.center-heading h2 span,
.section-title h2 span {

  color: var(--purple);
}

.center-heading p {

  max-width: 590px;

  margin: 15px auto 0;

  color: var(--text-soft);

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   PLATFORM SECTION
========================================================= */

.platform-section {

  padding:
    80px 24px
    90px;

  background:
    linear-gradient(
      180deg,
      #fcf9ff,
      #ffffff
    );
}

.platform-grid {

  width:
    min(
      100%,
      940px
    );

  margin:
    42px auto 0;

  display: grid;

  grid-template-columns:
    repeat(7, 1fr);

  gap: 10px;
}

.platform-card {

  min-height: 115px;

  padding: 15px 8px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;

  border:
    1px solid var(--border);

  border-radius: 13px;

  background: white;

  color: #555060;

  font-size: 9px;
  font-weight: 700;

  text-align: center;

  box-shadow:
    0 8px 22px
    rgba(50,20,90,.035);

  transition: .2s ease;
}

.platform-card:hover {

  transform:
    translateY(-3px);

  border-color:
    #d7c0f0;

  box-shadow:
    0 15px 30px
    rgba(73,20,135,.08);
}

.platform-logo {

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  font-size: 21px;
  font-weight: 900;
}

.facebook {
  background: #edf4ff;
  color: #1877f2;
}

.google {
  background: #f5f5f5;
  color: #4285f4;
}

.netflix {
  background: #fff0f0;
  color: #e50914;
}

.openai {
  background: #eefaf8;
  color: #111;
}

.apple {
  background: #f4f4f4;
  color: #111;
}

.ali {
  background: #fff4ed;
  color: #f26d21;
}

.amazon {
  background: #fff7e7;
  color: #ff9900;
}


/* =========================================================
   STEPS
========================================================= */

.steps-section {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin: auto;

  padding:
    95px 0
    105px;
}

.steps-grid {

  margin-top: 43px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.step-card {

  position: relative;

  min-height: 250px;

  padding: 28px;

  border:
    1px solid var(--border);

  border-radius: 17px;

  background: white;

  box-shadow:
    0 10px 30px
    rgba(40,15,80,.035);

  overflow: hidden;
}

.step-number {

  position: absolute;

  top: 20px;
  right: 21px;

  color: #eee8f5;

  font-size: 43px;

  font-weight: 900;

  line-height: 1;
}

.step-icon {

  width: 48px;
  height: 48px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: var(--purple-soft);

  color: var(--purple);
}

.step-icon svg {

  width: 22px;
  height: 22px;

  stroke-width: 1.7;
}

.step-card h3 {

  margin-bottom: 9px;

  color: var(--text);

  font-size: 16px;

  font-weight: 800;
}

.step-card p {

  color: var(--text-soft);

  font-size: 12px;

  line-height: 1.65;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-section {

  padding:
    90px 24px;

  background:
    #faf7ff;
}

.pricing-container {

  width:
    min(
      100%,
      var(--container)
    );

  margin: auto;

  display: grid;

  grid-template-columns:
    .8fr 1.4fr;

  gap: 70px;

  align-items: center;
}

.pricing-intro h2 {

  color: var(--text);

  font-size: 34px;

  line-height: 1.1;

  letter-spacing: -1.5px;

  font-weight: 800;
}

.pricing-intro h2 span {

  display: block;

  color: var(--purple);
}

.pricing-intro > p {

  max-width: 350px;

  margin-top: 17px;

  color: var(--text-soft);

  font-size: 13px;

  line-height: 1.7;
}

.pricing-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 13px;
}

.pricing-item {

  padding: 21px;

  display: flex;

  gap: 14px;

  border:
    1px solid var(--border);

  border-radius: 14px;

  background: white;
}

.pricing-icon {

  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 800;
}

.pricing-icon.purple {
  background: #f3e9ff;
  color: #7823dc;
}

.pricing-icon.green {
  background: #e9faf4;
  color: #0ba676;
}

.pricing-icon.blue {
  background: #eaf3ff;
  color: #367fe5;
}

.pricing-icon.orange {
  background: #fff4e5;
  color: #df951e;
}

.pricing-item h3 {

  margin-bottom: 6px;

  color: var(--text);

  font-size: 13px;

  font-weight: 800;
}

.pricing-item p {

  color: var(--text-soft);

  font-size: 10.5px;

  line-height: 1.55;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-section {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin: auto;

  padding:
    100px 0;
}

.audience-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;
}

.audience-card {

  min-height: 310px;

  padding: 32px;

  display: grid;

  grid-template-columns:
    auto 1fr;

  gap: 22px;

  border-radius: 20px;

  overflow: hidden;

  position: relative;
}

.audience-card::after {

  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -100px;
  bottom: -100px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.1);
}

.freelancer {

  background:
    linear-gradient(
      135deg,
      #f6edff,
      #ead9ff
    );

  border:
    1px solid #dfc5fa;
}

.shopper {

  background:
    linear-gradient(
      135deg,
      #eef8ff,
      #e1f1ff
    );

  border:
    1px solid #cce5fa;
}

.audience-icon {

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  background: white;

  color: var(--purple);

  box-shadow:
    0 7px 20px
    rgba(50,20,100,.08);
}

.audience-icon svg {

  width: 22px;
  height: 22px;

  stroke-width: 1.6;
}

.audience-card h2 {

  margin-bottom: 12px;

  color: var(--text);

  font-size: 25px;

  line-height: 1.15;

  letter-spacing: -1px;

  font-weight: 800;
}

.audience-card h2 span {

  display: block;

  color: var(--purple);
}

.audience-card p {

  max-width: 440px;

  color: #625d6e;

  font-size: 12px;

  line-height: 1.7;
}

.text-link {

  margin-top: 19px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--purple);

  font-size: 11px;

  font-weight: 800;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  min-height: 390px;

  margin:
    0 auto
    95px;

  padding: 70px 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  overflow: hidden;

  border-radius: 25px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(191,112,255,.38),
      transparent 35%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(145,55,237,.4),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      green,
      green
    );

  color: white;

  text-align: center;

  box-shadow:
    0 25px 60px
    rgba(81,16,160,.2);
}

.final-cta-content {

  position: relative;

  z-index: 2;
}

.final-cta .small-label {

  color:
    rgba(255,255,255,.68);
}

.final-cta h2 {

  max-width: 700px;

  font-size: 45px;

  line-height: 1.05;

  letter-spacing: -2px;

  font-weight: 800;
}

.final-cta h2 span {

  color: #dfb9ff;
}

.final-cta p {

  max-width: 530px;

  margin: 17px auto 0;

  color:
    rgba(255,255,255,.73);

  font-size: 13px;

  line-height: 1.7;
}

.cta-buttons {

  margin-top: 27px;

  display: flex;
  justify-content: center;

  gap: 10px;
}

.white-button,
.outline-button {

  padding: 13px 18px;

  border-radius: 8px;

  font-size: 11px;

  font-weight: 800;
}

.white-button {

  display: flex;
  align-items: center;

  gap: 10px;

  background: white;

  color: var(--purple);
}

.outline-button {

  border:
    1px solid
    rgba(255,255,255,.3);

  color: white;
}

.final-cta-glow {

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.04);

  right: -250px;
  top: -250px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

  border-top:
    1px solid #eeeaf2;

  background:
    #fbfafc;
}

.footer-container {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin: auto;

  padding:
    65px 0
    50px;

  display: grid;

  grid-template-columns:
    1.7fr 1fr 1fr 1fr;

  gap: 50px;
}

.footer-brand {

  max-width: 300px;
}

.footer-logo {

  margin-bottom: 16px;
}

.footer-brand > p {

  color: var(--text-soft);

  font-size: 11px;

  line-height: 1.7;
}

.contact-info {

  margin-top: 20px;

  display: flex;
  flex-direction: column;

  gap: 7px;
}

.contact-info a,
.contact-info span {

  color: #6d6875;

  font-size: 10px;
}

.footer-column {

  display: flex;
  flex-direction: column;

  gap: 10px;
}

.footer-column h3 {

  margin-bottom: 7px;

  color: var(--text);

  font-size: 11px;

  font-weight: 800;
}

.footer-column a {

  color: #6e6975;

  font-size: 10px;

  transition: .2s;
}

.footer-column a:hover {

  color: var(--purple);
}


/* Footer bottom */

.footer-bottom {

  width:
    min(
      calc(100% - 48px),
      var(--container)
    );

  margin: auto;

  padding:
    28px 0
    35px;

  border-top:
    1px solid #e8e4ed;
}

.compliance {

  display: flex;

  gap: 11px;

  margin-bottom: 15px;
}

.compliance-check {

  width: 29px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #e8faf4;

  color: #0ba777;

  font-size: 12px;
  font-weight: 800;
}

.compliance strong {

  display: block;

  margin-bottom: 4px;

  color: var(--text);

  font-size: 10px;
}

.compliance p {

  max-width: 800px;

  color: #77727e;

  font-size: 9px;

  line-height: 1.6;
}

.legal-text {

  max-width: 900px;

  margin-bottom: 20px;

  color: #77727e;

  font-size: 9px;

  line-height: 1.7;
}

.copyright {

  padding-top: 19px;

  border-top:
    1px solid #e9e5ed;

  color: #89848f;

  font-size: 9px;
}

.copyright span {

  margin-left: 6px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

  .nav-links {

    gap: 17px;
  }

  .nav-links a {

    font-size: 11px;
  }

  .nav-actions {

    display: none;
  }

  .menu-button {

    display: flex;
  }

  .hero {

    grid-template-columns:
      1fr;

    padding-top: 70px;

    text-align: center;
  }

  .hero-content {

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {

    max-width: 750px;
  }

  .hero-content > p {

    max-width: 650px;
  }

  .platform-grid {

    grid-template-columns:
      repeat(4, 1fr);
  }

  .pricing-container {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .pricing-intro {

    text-align: center;
  }

  .pricing-intro > p {

    margin-left: auto;
    margin-right: auto;
  }

  .footer-container {

    grid-template-columns:
      repeat(2, 1fr);
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .nav-container {

    width:
      calc(100% - 32px);

    min-height: 68px;
  }

  .nav-links {

    display: none;
  }

  .hero {

    width:
      calc(100% - 32px);

    min-height: auto;

    padding:
      60px 0
      65px;

    gap: 55px;
  }

  .hero h1 {

    font-size: 40px;

    letter-spacing: -2px;
  }

  .hero-content > p {

    font-size: 13px;
  }

  .hero-buttons {

    flex-direction: column;

    gap: 10px;
  }

  .hero-card-area {

    min-height: 300px;
  }

  .virtual-card {

    width: 390px;

    padding: 22px;

    border-radius: 18px;
  }

  .card-chip {

    margin-top: 24px;

    width: 36px;
    height: 27px;
  }

  .card-number {

    margin-top: 20px;

    font-size: 15px;
  }

  .card-floating-badge {

    right: 0;
    bottom: 20px;
  }

  .platform-section {

    padding:
      65px 16px
      70px;
  }

  .center-heading h2,
  .section-title h2 {

    font-size: 26px;
  }

  .platform-grid {

    grid-template-columns:
      repeat(2, 1fr);

    gap: 9px;
  }

  .platform-card {

    min-height: 105px;
  }

  .steps-section {

    width:
      calc(100% - 32px);

    padding:
      70px 0
      75px;
  }

  .steps-grid {

    grid-template-columns: 1fr;

    gap: 13px;
  }

  .step-card {

    min-height: 210px;
  }

  .pricing-section {

    padding:
      65px 16px;
  }

  .pricing-intro h2 {

    font-size: 29px;
  }

  .pricing-grid {

    grid-template-columns: 1fr;
  }

  .audience-section {

    width:
      calc(100% - 32px);

    padding:
      70px 0;
  }

  .audience-grid {

    grid-template-columns: 1fr;
  }

  .audience-card {

    min-height: auto;

    padding: 25px;

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .audience-card h2 {

    font-size: 23px;
  }

  .final-cta {

    width:
      calc(100% - 32px);

    margin-bottom: 65px;

    padding:
      55px 20px;
  }

  .final-cta h2 {

    font-size: 35px;

    letter-spacing: -1.5px;
  }

  .cta-buttons {

    flex-direction: column;

    align-items: stretch;
  }

  .white-button,
  .outline-button {

    justify-content: center;

    text-align: center;
  }

  .footer-container {

    width:
      calc(100% - 32px);

    padding:
      50px 0
      40px;

    grid-template-columns: 1fr;

    gap: 32px;
  }

  .footer-brand {

    max-width: 100%;
  }

  .footer-bottom {

    width:
      calc(100% - 32px);
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 400px) {

  .hero h1 {

    font-size: 35px;
  }

  .virtual-card {

    transform: none;

    max-width: 100%;
  }

  .card-number {

    font-size: 13px;
  }

  .final-cta h2 {

    font-size: 31px;
  }

}
