/* ================================
   DVS TECH FUNNEL — HOME.CSS
   Page-specific styles only
================================ */

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(92, 244, 236, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: clamp(48px, 6vw, 68px);
  max-width: 200px;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.logo:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(92, 244, 236, 0.4));
}

.nav-cta {
  font-size: 13px;
  padding: 11px 14px;
  white-space: nowrap;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 78% 18%, rgba(92, 244, 236, 0.18), transparent 28%),
    radial-gradient(circle at 18% 8%, rgba(6, 158, 150, 0.14), transparent 30%),
    linear-gradient(180deg, #050505 0%, #090909 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 38px;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  color: #5cf4ec;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(34px, 9vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #5cf4ec;
  text-shadow: 0 0 24px rgba(92, 244, 236, 0.38);
}

.subtext {
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-buttons .btn {
  text-align: center;
}

.hero-points {
  display: grid;
  gap: 12px;
}

.hero-points div {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(92, 244, 236, 0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

/* FORM CARD */
.hero-form {
  background: rgba(12, 12, 12, 0.94);
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid rgba(92, 244, 236, 0.18);
  box-shadow: 0 0 40px rgba(92, 244, 236, 0.08);
}

.hero-form h3 {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-form > p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.68);
}

.hero-form form {
  display: grid;
  gap: 13px;
}

.hero-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: #d7fefa;
  font-weight: 500;
}

.hero-form input,
.hero-form select {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #090909;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.hero-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #5cf4ec 50%),
    linear-gradient(135deg, #5cf4ec 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 12px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.hero-form input::placeholder {
  color: rgba(255,255,255,0.38);
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: #5cf4ec;
  box-shadow: 0 0 0 3px rgba(92, 244, 236, 0.12);
}

.hero-form input.error,
.hero-form select.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12);
}

.hero-form button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.hero-form button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  font-size: 11px !important;
  color: rgba(255,255,255,0.52) !important;
  margin: 0 !important;
}

/* TABLET */
@media (min-width: 640px) {
  .hero-buttons {
    display: flex;
    align-items: center;
  }

  .hero-buttons .btn {
    min-width: 190px;
  }

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

/* DESKTOP */
@media (min-width: 900px) {
  .hero {
    padding: 82px 0 92px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 52px;
  }

  .hero-form {
    max-width: 460px;
    margin-left: auto;
    padding: 30px;
  }

  .subtext {
    font-size: 16px;
  }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
  .logo img {
    height: 46px;
    max-width: 160px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-cta {
    font-size: 11px;
    padding: 10px 11px;
  }

  .hero {
    padding: 42px 0 56px;
  }

  .hero-form {
    padding: 22px 16px;
  }

  .hero-points div {
    font-size: 13px;
  }
}
/* INDUSTRY STRIP */
.industry-strip {
  position: relative;
  padding: 28px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018)),
    #070707;
  border-top: 1px solid rgba(92, 244, 236, 0.12);
  border-bottom: 1px solid rgba(92, 244, 236, 0.12);
}

.strip-kicker {
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.industry-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(92, 244, 236, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.industry-item span {
  color: #5cf4ec;
  text-shadow: 0 0 16px rgba(92, 244, 236, 0.5);
}

/* PROBLEM SECTION */
.problem-section {
  position: relative;
  overflow: hidden;
  padding: 66px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 244, 236, 0.12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.problem-section .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 14px;
}

.section-heading > p:not(.eyebrow) {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  gap: 14px;
}

.problem-card {
  padding: 22px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(92, 244, 236, 0.14);
  box-shadow: 0 0 30px rgba(92, 244, 236, 0.045);
}

.problem-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #5cf4ec;
  background: rgba(92, 244, 236, 0.08);
  border: 1px solid rgba(92, 244, 236, 0.22);
  font-size: 22px;
  box-shadow: 0 0 22px rgba(92, 244, 236, 0.12);
}

.problem-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.problem-card p {
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.65;
}

.problem-note {
  margin: 26px auto 0;
  max-width: 680px;
  text-align: center;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
}

/* PHASE 2 RESPONSIVE */
@media (min-width: 700px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1000px) {
  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .problem-section {
    padding: 82px 0;
  }
}
/* SOLUTION SECTION */
.solution-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(6, 158, 150, 0.16), transparent 28%),
    radial-gradient(circle at 85% 60%, rgba(92, 244, 236, 0.1), transparent 30%),
    #050505;
  border-top: 1px solid rgba(92, 244, 236, 0.08);
}

.solution-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.solution-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
}

.solution-content h2 {
  font-size: clamp(30px, 7vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.solution-content > p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.solution-list {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.solution-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(92, 244, 236, 0.13);
}

.solution-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #5cf4ec;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 7px;
}

.solution-list p {
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.65;
}

/* SYSTEM CARD */
.system-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    #080808;
  border: 1px solid rgba(92, 244, 236, 0.18);
  box-shadow: 0 0 50px rgba(92, 244, 236, 0.08);
}

.system-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(92,244,236,0.35), transparent 35%, rgba(6,158,150,0.22));
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.system-top {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}

.system-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.8);
  box-shadow: 0 0 12px rgba(92, 244, 236, 0.45);
}

.system-flow {
  display: grid;
  gap: 12px;
}

.flow-item {
  padding: 17px;
  border-radius: 17px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
}

.flow-item.active,
.flow-item.final {
  border-color: rgba(92, 244, 236, 0.22);
  background: rgba(92, 244, 236, 0.055);
}

.flow-item small {
  display: block;
  color: #5cf4ec;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.flow-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.flow-item p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.55;
}

.flow-line {
  width: 1px;
  height: 22px;
  margin-left: 24px;
  background: linear-gradient(to bottom, #5cf4ec, transparent);
}

/* SOLUTION RESPONSIVE */
@media (min-width: 900px) {
  .solution-section {
    padding: 88px 0;
  }

  .solution-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 54px;
  }

  .solution-content > p {
    font-size: 16px;
  }

  .system-card {
    padding: 22px;
  }
}
/* RESULTS SECTION */
.results-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(92, 244, 236, 0.12), transparent 30%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.results-section .container {
  position: relative;
  z-index: 2;
}

.results-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.result-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(92, 244, 236, 0.12);
  box-shadow: 0 0 30px rgba(92, 244, 236, 0.05);
}

.result-card.highlight {
  border-color: rgba(92, 244, 236, 0.3);
  background: rgba(92, 244, 236, 0.06);
}

.result-top {
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(92, 244, 236, 0.15);
  color: #5cf4ec;
  margin-bottom: 6px;
}

.result-card strong {
  display: block;
  font-size: 16px;
}

.result-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.result-metrics {
  display: flex;
  gap: 12px;
}

.result-metrics div {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

.result-metrics .metric-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 16px;
  background: rgba(92, 244, 236, 0.08);
  border: 1px solid rgba(92, 244, 236, 0.22);
  box-shadow: 0 0 22px rgba(92, 244, 236, 0.1);
}

.result-metrics .metric-icon svg {
  width: 24px;
  height: 24px;
  stroke: #5cf4ec;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.results-cta {
  text-align: center;
  margin-top: 40px;
}

.results-cta p {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
}

/* RESPONSIVE */
@media (min-width: 900px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-section {
    padding: 90px 0;
  }
}
/* PROCESS SECTION */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(6, 158, 150, 0.13), transparent 30%),
    #050505;
  border-top: 1px solid rgba(92, 244, 236, 0.08);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.process-card {
  position: relative;
  padding: 24px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(92, 244, 236, 0.13);
  box-shadow: 0 0 34px rgba(92, 244, 236, 0.045);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #5cf4ec;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 9px;
  letter-spacing: -0.025em;
}

.process-card p {
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.7;
}

/* FINAL CTA */
.final-cta-section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(92, 244, 236, 0.16), transparent 34%),
    linear-gradient(180deg, #050505 0%, #080808 100%);
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 34px 22px;
  border-radius: 26px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.028)),
    #080808;
  border: 1px solid rgba(92, 244, 236, 0.22);
  box-shadow: 0 0 54px rgba(92, 244, 236, 0.09);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.7;
  pointer-events: none;
}

.final-cta-card > * {
  position: relative;
  z-index: 2;
}

.final-cta-card h2 {
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.final-cta-card > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta-actions {
  display: grid;
  gap: 12px;
}

.final-cta-actions .btn {
  text-align: center;
}

/* PHASE 5 RESPONSIVE */
@media (min-width: 700px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .final-cta-actions .btn {
    min-width: 210px;
  }
}

@media (min-width: 900px) {
  .process-section,
  .final-cta-section {
    padding: 90px 0;
  }

  .final-cta-card {
    padding: 54px 42px;
  }
}
/* FOOTER */
.footer {
  padding: 34px 0 22px;
  background: #030303;
  border-top: 1px solid rgba(92, 244, 236, 0.12);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 12px;
}

.footer-logo img {
  height: clamp(70px, 8vw, 110px);
  width: auto;
  display: block;
}

.footer p {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.65;
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: #5cf4ec;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
}

/* FOOTER RESPONSIVE */
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-links {
    text-align: right;
  }
}
.form-message {
  min-height: 18px;
  text-align: center;
  font-size: 12px !important;
  line-height: 1.4;
  margin: 0 !important;
  color: rgba(255,255,255,0.62) !important;
}

.form-message.error {
  color: #ff7070 !important;
}

.form-message.success {
  color: #5cf4ec !important;
}
/* HERO POINT ICON POLISH */
.mini-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-right: 9px;
  border-radius: 999px;
  background: #5cf4ec;
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(92, 244, 236, 0.32);
}

.hero-points div {
  display: flex;
  align-items: center;
}
/* BIGGER BRANDED ICONS */
.industry-item span {
  font-size: 20px;
  line-height: 1;
}

.problem-icon {
  width: 58px;
  height: 58px;
  font-size: 28px;
  border-radius: 18px;
}

/* SVG ICON SYSTEM */
.problem-icon svg {
  width: 30px;
  height: 30px;
  stroke: #5cf4ec;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Bigger icon container */
.problem-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(92, 244, 236, 0.08);
  border: 1px solid rgba(92, 244, 236, 0.22);
  box-shadow: 0 0 24px rgba(92, 244, 236, 0.12);
}
/* CTA RESPONSIVE LOGIC */
.desktop-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.mobile-cta-group {
  display: none;
}

@media (max-width: 640px) {
  .desktop-cta {
    display: none;
  }

  .mobile-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .mobile-cta-group .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }
}
