:root {
  --black: #030504;
  --black-soft: #080b09;
  --black-card: #0f1411;
  --black-card-2: #151b17;
  --ink: #f4f7f4;
  --muted: #b9c3bc;
  --muted-dark: #7f8a83;
  --lime: #79db00;
  --lime-bright: #96f000;
  --lime-soft: rgba(121, 219, 0, 0.12);
  --deep-green: #075b37;
  --dark-green: #0b3f2a;
  --yellow: #ffbd00;
  --yellow-bright: #ffd43b;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.11);
  --line-lime: rgba(121, 219, 0, 0.38);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(121, 219, 0, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(7, 91, 55, 0.16), transparent 32rem), var(--black);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 12px 16px;
  color: #101510;
  background: var(--lime);
  border-radius: 10px;
  font-weight: 900;
}

.container {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.section,
.section-sm,
.page-intro {
  position: relative;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 58px 0;
}

.page-intro {
  padding: 76px 0 66px;
}

.eyebrow {
  color: var(--lime);
  text-transform: uppercase;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.display {
  margin: 0.25em 0;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  font-weight: 950;
  line-height: 1.01;
  letter-spacing: -0.048em;
}

.display span,
.lime {
  color: var(--lime);
}

h1,
h2,
h3 {
  color: var(--white);
  line-height: 1.12;
}

h2 {
  margin: 0.25em 0 0.55em;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  letter-spacing: -0.038em;
}

h3 {
  margin: 0.2em 0 0.5em;
  font-size: 1.24rem;
}

p {
  margin: 0.65em 0 1em;
  color: var(--muted);
}

.lead {
  max-width: 790px;
  color: #d4ddd6;
  font-size: 1.18rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 15px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.34);
}

.btn-lime {
  color: #0d1709;
  background: linear-gradient(135deg, var(--lime), var(--lime-bright));
}

.btn-yellow {
  color: #171300;
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
}

.btn-dark {
  color: var(--white);
  background: #171d19;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  color: var(--lime);
  background: rgba(0, 0, 0, 0.24);
  border-color: var(--line-lime);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

/* Top utility bar */
.topbar {
  color: #d7ded9;
  background: #000000;
  border-bottom: 1px solid rgba(121, 219, 0, 0.16);
  font-size: 0.86rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 20px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.topbar a:hover {
  color: var(--lime);
}

.topbar svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
}

/* Dark SaaS header and pill navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 4, 3, 0.97);
  border-bottom: 1px solid rgba(121, 219, 0, 0.2);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 104px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 255px;
  height: auto;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid rgba(121, 219, 0, 0.5);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 11px 14px;
  color: #f6f8f6;
  background: linear-gradient(180deg, #171d19, #101411);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 850;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime-bright);
  background: linear-gradient(180deg, #18331d, #112416);
  border-color: rgba(121, 219, 0, 0.62);
  box-shadow: 0 9px 28px rgba(121, 219, 0, 0.12);
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 13px);
  width: 320px;
  padding: 12px;
  color: var(--white);
  background: #080c09;
  border: 1px solid rgba(121, 219, 0, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  margin: 3px 0;
  padding: 12px 14px;
  color: #dce4de;
  background: #101512;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  font-weight: 760;
}

.dropdown a:hover {
  color: #101810;
  background: var(--lime);
  border-color: var(--lime);
}

.nav-cta {
  margin-left: 4px;
  min-height: 46px;
  padding-inline: 19px;
  box-shadow: 0 10px 28px rgba(121, 219, 0, 0.18);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  padding: 12px 18px;
  color: #11170d;
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.mobile-panel {
  display: none;
}

/* Responsive banners - never crop the supplied banner artwork */
.hero {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-bottom: 1px solid rgba(121, 219, 0, 0.24);
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1672px;
  margin-inline: auto;
  background: #000000;
}

.slide {
  display: none;
  position: relative;
  width: 100%;
}

.slide.active {
  display: block;
  animation: bannerFade 0.45s ease;
}

@keyframes bannerFade {
  from {
    opacity: 0.35;
  }

  to {
    opacity: 1;
  }
}

.slide a {
  display: block;
  width: 100%;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #000000;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 52px;
  height: 64px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(121, 219, 0, 0.35);
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  color: #101610;
  background: var(--lime);
}

.carousel-arrow.prev {
  left: 0;
  border-radius: 0 16px 16px 0;
}

.carousel-arrow.next {
  right: 0;
  border-radius: 16px 0 0 16px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 6;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translateX(-50%);
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(121, 219, 0, 0.14);
}

.hero-underbar {
  color: var(--white);
  background: #050806;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(121, 219, 0, 0.2);
}

.quick {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #0d120f;
}

.quick svg {
  flex: none;
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.7;
}

.quick strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
}

.quick small {
  color: var(--muted);
}

/* SaaS content blocks */
.saas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card,
.step,
.form-card,
.price-card,
.stat,
.faq-item {
  color: var(--ink);
  background: linear-gradient(150deg, #121814, #0a0e0c);
  border: 1px solid rgba(255, 255, 255, 0.105);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.26);
}

.card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card:hover {
  border-color: rgba(121, 219, 0, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  transform: translateY(-5px);
}

.card h3,
.step h3,
.price-card h3,
.form-card h2,
.form-card h3 {
  color: var(--white);
}

.card p,
.step p,
.price-card p {
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 19px;
  background: linear-gradient(145deg, rgba(121, 219, 0, 0.18), rgba(7, 91, 55, 0.36));
  border: 1px solid rgba(121, 219, 0, 0.38);
  border-radius: 18px;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
}

.dark-section {
  color: var(--white);
  background: linear-gradient(135deg, rgba(121, 219, 0, 0.035), transparent 38%), #070a08;
  border-top-color: rgba(121, 219, 0, 0.14);
  border-bottom: 1px solid rgba(121, 219, 0, 0.1);
}

.dark-section h2,
.dark-section h3,
.dark-section .lead {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 28px;
}

.price-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  background: rgba(121, 219, 0, 0.08);
  border-radius: 50%;
  content: "";
}

.price-card.featured {
  background: linear-gradient(145deg, #15321b, #0a0e0b 70%);
  border-color: rgba(121, 219, 0, 0.5);
}

.price-card .tag {
  display: inline-flex;
  padding: 7px 12px;
  color: #102007;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.price {
  margin: 12px 0;
  color: var(--lime);
  font-size: 2.5rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.price small {
  color: #d6ded8;
  font-size: 0.9rem;
  font-weight: 700;
}

.checklist {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 10px;
  margin: 11px 0;
  color: #d7dfd9;
}

.checklist svg {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.info-panel,
.contact-card {
  color: var(--white);
  background: linear-gradient(140deg, #12351b, #080c09 72%);
  border: 1px solid rgba(121, 219, 0, 0.38);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.info-panel {
  padding: 40px;
}

.info-panel h2,
.info-panel h3,
.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pill {
  padding: 9px 13px;
  color: var(--lime);
  background: rgba(121, 219, 0, 0.1);
  border: 1px solid rgba(121, 219, 0, 0.32);
  border-radius: 999px;
  font-weight: 800;
}

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

.step {
  position: relative;
  padding: 28px 24px;
  border-radius: 22px;
}

.step-num {
  color: var(--lime);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  padding: 0 22px;
  border-radius: 17px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 21px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--muted);
}

.faq-item.open {
  border-color: rgba(121, 219, 0, 0.45);
}

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(121, 219, 0, 0.24), transparent 18rem),
    linear-gradient(135deg, #0d2c16, #070a08 72%);
  border: 1px solid rgba(121, 219, 0, 0.46);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
}

.form-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-card {
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 15px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #dce3de;
}

.contact-list a:hover {
  color: var(--lime);
}

.contact-list svg {
  flex: none;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
}

.form-card {
  padding: 34px;
  border-radius: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px;
  color: #f2f5f2;
  background: #080b09;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.field select option {
  color: #111;
  background: #fff;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(121, 219, 0, 0.18);
  border-color: var(--lime);
}

.breadcrumb {
  margin-bottom: 18px;
  color: #9ca8a0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--lime);
}

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

.stat {
  padding: 22px;
  color: #c8d1cb;
  border-radius: 18px;
}

.stat strong {
  display: block;
  color: var(--lime);
  font-size: 1.42rem;
}

.notice {
  padding: 17px;
  color: #fff1c4;
  background: #2b240a;
  border: 1px solid rgba(255, 189, 0, 0.48);
  border-radius: 15px;
}

.hidden {
  display: none !important;
}

.thank-you {
  max-width: 760px;
  margin: auto;
  padding: 120px 0;
  text-align: center;
}

/* Full dark footer */
.footer {
  padding: 72px 0 112px;
  color: #d0d8d2;
  background: #000000;
  border-top: 1px solid rgba(121, 219, 0, 0.25);
}

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

.footer .brand img {
  width: 285px;
}

.footer h3 {
  color: var(--white);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #bdc7c0;
}

.footer a:hover {
  color: var(--lime);
}

.legal-strip {
  margin-top: 44px;
  padding-top: 23px;
  color: #929d95;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.floating-book {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  color: #101400;
  background: linear-gradient(135deg, var(--yellow-bright), var(--yellow));
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 15px 44px rgba(0, 0, 0, 0.52);
  font-weight: 950;
  transform: translateX(-50%);
  transition: 0.2s ease;
}

.floating-book:hover {
  transform: translateX(-50%) translateY(-3px);
}

.floating-book svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cookie {
  position: fixed;
  left: 20px;
  bottom: 92px;
  z-index: 1200;
  max-width: 420px;
  padding: 20px;
  color: var(--ink);
  background: #0e130f;
  border: 1px solid rgba(121, 219, 0, 0.36);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.86rem;
}

@media (max-width: 1320px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    min-height: 88px;
  }

  .brand img {
    width: 255px;
  }

  .mobile-panel.open {
    position: fixed;
    inset: 128px 0 0;
    z-index: 999;
    display: block;
    padding: 22px;
    overflow: auto;
    color: var(--white);
    background: #030504;
    border-top: 1px solid rgba(121, 219, 0, 0.25);
  }

  .mobile-panel a,
  .mobile-panel button {
    display: block;
    width: 100%;
    margin: 7px 0;
    padding: 15px 18px;
    color: #f2f6f3;
    background: #101512;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: left;
    font-weight: 850;
  }

  .mobile-panel a:hover,
  .mobile-panel button:hover {
    color: #11170d;
    background: var(--lime);
    border-color: var(--lime);
  }

  .mobile-sub {
    display: none;
    padding-left: 16px;
  }

  .mobile-group.open .mobile-sub {
    display: block;
  }

  .saas-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand img {
    width: 216px;
    padding: 6px 9px;
    border-radius: 13px;
  }

  .mobile-toggle {
    padding: 11px 15px;
  }

  .mobile-panel.open {
    inset: 78px 0 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .page-intro {
    padding: 52px 0;
  }

  .display {
    font-size: 2.48rem;
  }

  /* Show every supplied banner in full on phones. */
  .hero,
  .carousel,
  .slide,
  .slide a {
    width: 100%;
    min-height: 0;
  }

  .slide img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .carousel-arrow {
    width: 38px;
    height: 46px;
    font-size: 1.55rem;
  }

  .dots {
    bottom: 6px;
    gap: 6px;
    padding: 6px 9px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .quick-grid,
  .saas-grid,
  .pricing-grid,
  .split,
  .process,
  .form-shell,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .quick {
    padding: 18px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 126px;
  }

  .floating-book {
    bottom: 12px;
    width: calc(100% - 36px);
    padding-inline: 18px;
  }

  .cookie {
    right: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 184px;
  }

  .mobile-toggle {
    padding: 10px 13px;
    font-size: 0.88rem;
  }

  .display {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  .carousel-arrow {
    width: 32px;
    height: 40px;
  }

  .dots {
    display: none;
  }
}

.saas-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 760px) {
  .saas-grid-two {
    grid-template-columns: 1fr;
  }
}
