
:root {
  --ink: #061416;
  --panel: #0a2426;
  --panel-2: #102f31;
  --lime: #c7ff3d;
  --paper: #f4f8f2;
  --muted: #8ea7a6;
  --teal: #2bb6a8;
  --line: rgba(124, 186, 182, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(29, 138, 132, 0.16), transparent 32%),
    radial-gradient(circle at 5% 48%, rgba(25, 132, 142, 0.12), transparent 24%),
    linear-gradient(124deg, #041013 0%, #07181a 46%, #020b0e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 89px 0 auto;
  height: 1px;
  background: rgba(168, 218, 213, 0.13);
}

.site-header {
  position: relative;
  z-index: 10;
  height: 90px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 31px;
  font-weight: 720;
  letter-spacing: -0.055em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #dfe9e6;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--lime);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.main-nav i {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--lime);
}

.header-cta {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(199, 255, 61, 0.45);
  border-radius: 10px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--lime);
  color: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: min(1520px, 100%);
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: minmax(430px, 0.76fr) minmax(720px, 1.24fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 4px;
}

.version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 38px;
  margin-bottom: 28px;
  padding: 0 18px;
  border: 1px solid var(--lime);
  border-radius: 99px;
  color: var(--lime);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 15px;
  box-shadow: 0 0 24px rgba(199, 255, 61, 0.07);
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(54px, 5vw, 79px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 720;
}

.hero-copy > p:not(.subdomain-note) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 680;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: #061009;
  box-shadow: 0 10px 38px rgba(199, 255, 61, 0.19);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 44px rgba(199, 255, 61, 0.29);
}

.button-secondary {
  border: 1px solid rgba(199, 255, 61, 0.75);
  color: var(--lime);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--lime);
  color: var(--ink);
}

.subdomain-note {
  margin: 31px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

.subdomain-note svg {
  color: var(--teal);
}

.subdomain-note strong {
  margin-left: 2px;
  color: var(--lime);
  font-weight: 620;
}

.hero-proof {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(122, 183, 179, 0.26);
  border-radius: 13px;
  background: rgba(6, 23, 25, 0.76);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-right: 1px solid rgba(136, 186, 181, 0.2);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 560;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof svg {
  color: var(--lime);
}

.dashboard-shell {
  position: relative;
  min-height: 625px;
  display: grid;
  grid-template-columns: 68px 1fr;
  border: 1px solid rgba(87, 157, 153, 0.3);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(4, 24, 27, 0.91);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.35),
    0 0 70px rgba(24, 159, 151, 0.08);
  transform: perspective(1600px) rotateY(-2.3deg) rotateX(0.8deg);
  transform-origin: center left;
}

.dash-sidebar {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(91, 158, 155, 0.19);
  background: rgba(4, 19, 22, 0.82);
}

.dash-sidebar span,
.dash-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #71918f;
}

.dash-mark {
  margin-bottom: 13px;
  background: var(--lime);
  color: var(--ink);
}

.dash-sidebar span.active {
  background: rgba(199, 255, 61, 0.1);
  color: var(--lime);
}

.dash-main {
  min-width: 0;
  padding: 26px;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dash-top small {
  color: #668482;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.dash-top h2 {
  margin: 5px 0 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.dash-date {
  padding: 9px 12px;
  border: 1px solid rgba(119, 168, 165, 0.21);
  border-radius: 8px;
  color: #a7bab8;
  font-size: 10px;
}

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

.kpi-grid article {
  min-width: 0;
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 8px;
  border: 1px solid rgba(68, 148, 143, 0.22);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(8, 45, 47, 0.8), rgba(5, 31, 34, 0.86));
}

.kpi-grid article svg {
  color: var(--teal);
}

.kpi-grid article span {
  overflow: hidden;
  color: #9ab1af;
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.kpi-grid article strong {
  grid-column: 1 / -1;
  margin-top: 7px;
  font-size: 26px;
  line-height: 1;
}

.kpi-grid article small {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: var(--lime);
  font-size: 9px;
}

.schedule-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(69, 146, 142, 0.23);
  border-radius: 11px;
  background: rgba(5, 30, 33, 0.78);
}

.card-heading {
  display: flex;
  justify-content: space-between;
  color: #dce7e4;
  font-size: 11px;
}

.card-heading span {
  color: #668482;
  font-size: 9px;
}

.booking-list {
  margin-top: 11px;
  display: grid;
  gap: 7px;
}

.booking-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 8px;
}

.booking-row > span {
  color: #8ca3a1;
  font-size: 9px;
}

.booking {
  width: 48%;
  min-width: 145px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(45, 182, 168, 0.26);
  border-radius: 6px;
  background: rgba(19, 86, 86, 0.62);
  color: #dce8e5;
  font-size: 9px;
}

.booking-2 {
  margin-left: 13%;
}

.booking-3 {
  margin-left: 37%;
}

.booking-4 {
  margin-left: 25%;
  border-color: rgba(199, 255, 61, 0.75);
  background: rgba(199, 255, 61, 0.06);
  color: var(--lime);
}

.booking small {
  color: #88a5a1;
  font-size: 8px;
}

.dash-bottom {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.dash-bottom article {
  min-height: 115px;
  padding: 13px;
  border: 1px solid rgba(69, 146, 142, 0.23);
  border-radius: 11px;
  background: rgba(5, 30, 33, 0.78);
}

.ring-card {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--lime) 0 76%, #18494a 76% 100%);
  position: relative;
}

.ring::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #08282a;
}

.ring strong {
  position: relative;
  z-index: 1;
  font-size: 17px;
}

.ring-card > div:last-child {
  display: grid;
  gap: 5px;
}

.ring-card span,
.chart-card > span {
  color: #d4e0dd;
  font-size: 10px;
}

.ring-card small {
  color: #789492;
  font-size: 9px;
}

.chart-card {
  overflow: hidden;
}

.mini-chart {
  height: 74px;
  margin-top: 8px;
  display: flex;
  align-items: end;
  gap: 7px;
  border-bottom: 1px solid rgba(100, 157, 153, 0.2);
}

.mini-chart i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(199, 255, 61, 0.2), var(--lime));
}

.mini-chart i:nth-child(1) { height: 26%; }
.mini-chart i:nth-child(2) { height: 43%; }
.mini-chart i:nth-child(3) { height: 34%; }
.mini-chart i:nth-child(4) { height: 65%; }
.mini-chart i:nth-child(5) { height: 51%; }
.mini-chart i:nth-child(6) { height: 75%; }
.mini-chart i:nth-child(7) { height: 90%; }

.court-lines {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -8%;
  bottom: -35%;
  height: 76%;
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(52, 151, 159, 0.55) 50%, transparent 50.15%),
    linear-gradient(83deg, transparent 49.82%, rgba(52, 151, 159, 0.52) 50%, transparent 50.18%),
    linear-gradient(97deg, transparent 49.82%, rgba(52, 151, 159, 0.52) 50%, transparent 50.18%),
    linear-gradient(0deg, transparent 44%, rgba(52, 151, 159, 0.5) 44.3%, transparent 44.6%);
  transform: perspective(500px) rotateX(58deg);
  transform-origin: bottom center;
}

.floodlight {
  position: absolute;
  z-index: 2;
  top: 124px;
  width: 74px;
  height: 5px;
  border-radius: 99px;
  background: #e5ffff;
  box-shadow:
    0 0 12px #bbffff,
    0 0 38px rgba(82, 228, 232, 0.65);
}

.floodlight-left {
  left: 11px;
  transform: rotate(25deg);
}

.floodlight-right {
  right: 8px;
  transform: rotate(-25deg);
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .dashboard-shell {
    min-height: 600px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .hero::after {
    top: 75px;
  }

  .brand {
    font-size: 27px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    height: 39px;
    padding: 0 13px;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(47px, 15vw, 66px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .subdomain-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero-proof {
    width: 100%;
    justify-content: space-between;
    padding: 15px 14px;
  }

  .hero-proof span {
    gap: 6px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-proof span svg {
    width: 17px;
    height: 17px;
  }

  .dashboard-shell {
    min-height: 520px;
    grid-template-columns: 48px 1fr;
  }

  .dash-sidebar {
    padding: 14px 7px;
  }

  .dash-sidebar span,
  .dash-mark {
    width: 32px;
    height: 32px;
  }

  .dash-main {
    padding: 16px 12px;
  }

  .dash-date,
  .dash-top small {
    display: none;
  }

  .dash-top h2 {
    font-size: 16px;
  }

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

  .kpi-grid article:nth-child(3) {
    display: none;
  }

  .booking {
    width: 65%;
    min-width: 128px;
  }

  .booking-3 {
    margin-left: 22%;
  }

  .dash-bottom {
    grid-template-columns: 1fr;
  }

  .chart-card {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: reveal-up 580ms both;
  }

  .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 120ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 170ms; }
  .hero-copy > *:nth-child(5) { animation-delay: 220ms; }
  .hero-copy > *:nth-child(6) { animation-delay: 270ms; }

  .dashboard-shell {
    animation: dashboard-in 700ms 150ms both;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dashboard-in {
  from {
    opacity: 0;
    transform: perspective(1600px) rotateY(-2.3deg) translateX(28px);
  }
  to {
    opacity: 1;
    transform: perspective(1600px) rotateY(-2.3deg) rotateX(0.8deg);
  }
}

.section-shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.benefits-section,
.modules-section,
.workflow-section {
  position: relative;
  padding: 130px 0;
}

.benefits-section {
  background:
    radial-gradient(circle at 85% 8%, rgba(43, 182, 168, 0.07), transparent 25%),
    #f2f6ef;
  color: #102a28;
}

.section-heading h2,
.workflow-intro h2,
.conversion-content h2 {
  margin: 16px 0 0;
  font-size: clamp(45px, 5vw, 69px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #177c70;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 100px;
}

.heading-split > p {
  max-width: 530px;
  margin: 0 0 5px;
  color: #5e7370;
  font-size: 18px;
  line-height: 1.75;
}

.benefit-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-grid article {
  min-height: 300px;
  padding: 34px;
  border: 1px solid #d8e2db;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-5px);
  border-color: #bdd6c9;
  box-shadow: 0 22px 50px rgba(19, 62, 56, 0.09);
}

.feature-icon,
.module-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e0f2de;
  color: #177c70;
}

.benefit-grid h3,
.module-card h3,
.steps-list h3 {
  margin: 40px 0 0;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.benefit-grid p,
.module-card p,
.steps-list p {
  margin: 14px 0 0;
  color: #627572;
  font-size: 15px;
  line-height: 1.7;
}

.dedicated-strip {
  position: relative;
  margin-top: 22px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 54px;
  overflow: hidden;
  border-radius: 18px;
  background: #0b3735;
  color: var(--paper);
}

.dedicated-strip::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -42px;
  top: -68px;
  border-radius: 50%;
  border: 1px solid rgba(199, 255, 61, 0.18);
}

.dedicated-strip > div {
  display: grid;
  gap: 7px;
}

.dedicated-strip span {
  color: #96b2ae;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dedicated-strip strong {
  font-size: clamp(21px, 2.1vw, 31px);
  letter-spacing: -0.03em;
}

.dedicated-strip strong b {
  color: var(--lime);
}

.dedicated-strip p {
  margin: 0;
  color: #a9bfbc;
  font-size: 14px;
  line-height: 1.65;
}

.dedicated-strip > svg {
  position: relative;
  z-index: 1;
  color: var(--lime);
}

.modules-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(28, 118, 114, 0.13), transparent 23%),
    #07191b;
}

.heading-centered {
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.heading-centered .eyebrow {
  color: var(--lime);
}

.heading-centered h2 {
  color: var(--paper);
}

.heading-centered > p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #91a8a5;
  font-size: 17px;
  line-height: 1.7;
}

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

.module-card {
  min-height: 375px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(98, 163, 159, 0.19);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(13, 48, 49, 0.78), rgba(7, 31, 33, 0.78));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 61, 0.43);
  background: linear-gradient(145deg, rgba(16, 58, 58, 0.88), rgba(7, 35, 37, 0.88));
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.module-icon {
  background: rgba(199, 255, 61, 0.1);
  color: var(--lime);
}

.module-number {
  color: #567573;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.module-card h3 {
  margin-top: 34px;
  color: var(--paper);
}

.module-card p {
  color: #8da4a1;
}

.tag-list {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list span {
  padding: 7px 9px;
  border: 1px solid rgba(108, 161, 157, 0.18);
  border-radius: 6px;
  color: #8ea8a5;
  font-size: 10px;
}

.module-cta {
  margin-top: 30px;
  padding: 4px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.module-cta p {
  margin: 0;
  color: #819b98;
  font-size: 14px;
}

.module-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 650;
}

.workflow-section {
  overflow: hidden;
  background: #f2f6ef;
  color: #102a28;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 110px;
}

.workflow-intro {
  align-self: start;
  position: sticky;
  top: 60px;
}

.workflow-intro h2 {
  max-width: 570px;
}

.workflow-intro > p {
  max-width: 520px;
  margin: 25px 0 31px;
  color: #617572;
  font-size: 17px;
  line-height: 1.75;
}

.workflow-intro .button-primary {
  width: fit-content;
}

.steps-list {
  display: grid;
}

.steps-list article {
  min-height: 190px;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  border-top: 1px solid #ccd9d1;
}

.steps-list article:last-child {
  border-bottom: 1px solid #ccd9d1;
}

.steps-list article > span {
  color: #168174;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.steps-list h3 {
  margin: 0;
  font-size: 26px;
}

.steps-list p {
  max-width: 540px;
  font-size: 16px;
}

.conversion-section {
  position: relative;
  overflow: hidden;
  padding: 145px 0 135px;
  background: var(--lime);
  color: #061416;
  text-align: center;
}

.conversion-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  left: 50%;
  top: -360px;
  border: 1px solid rgba(6, 20, 22, 0.15);
  border-radius: 50%;
  transform: translateX(-50%);
}

.conversion-glow::before,
.conversion-glow::after {
  content: "";
  position: absolute;
  inset: 75px;
  border: 1px solid rgba(6, 20, 22, 0.1);
  border-radius: 50%;
}

.conversion-glow::after {
  inset: 150px;
}

.conversion-content {
  position: relative;
  z-index: 1;
}

.conversion-content .version {
  border-color: #0d3432;
  color: #0d3432;
  box-shadow: none;
}

.conversion-content h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.conversion-content > p {
  max-width: 670px;
  margin: 24px auto 0;
  color: #31504b;
  font-size: 18px;
  line-height: 1.7;
}

.conversion-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.conversion-content .button-primary {
  background: #07191b;
  color: var(--paper);
  box-shadow: 0 12px 32px rgba(4, 23, 25, 0.18);
}

.button-light {
  border: 1px solid rgba(6, 20, 22, 0.4);
  color: #061416;
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.42);
}

.conversion-content > small {
  display: block;
  margin-top: 24px;
  color: #47615c;
  font-size: 12px;
}

.site-footer {
  background: #041214;
  color: var(--paper);
}

.footer-main {
  padding: 78px 0 62px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr;
  gap: 80px;
}

.footer-main > div:first-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #819996;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links > span {
  margin-bottom: 7px;
  color: #607c79;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #a7bab7;
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  padding: 24px 0 28px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(120, 173, 168, 0.13);
  color: #58726f;
  font-size: 11px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  background: #25d366;
  color: #062b16;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.27);
  font-size: 13px;
  font-weight: 730;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 48px, 820px);
  }

  .benefits-section,
  .modules-section,
  .workflow-section {
    padding: 100px 0;
  }

  .heading-split,
  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .heading-split > p {
    margin: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .dedicated-strip {
    grid-template-columns: 1fr auto;
    gap: 15px 30px;
  }

  .dedicated-strip p {
    grid-column: 1 / -1;
  }

  .dedicated-strip > svg {
    grid-column: 2;
    grid-row: 1;
  }

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

  .workflow-intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-main .footer-links:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: calc(100% - 40px);
  }

  .benefits-section,
  .modules-section,
  .workflow-section {
    padding: 80px 0;
  }

  .section-heading h2,
  .workflow-intro h2,
  .conversion-content h2 {
    font-size: 43px;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-grid article {
    padding: 27px;
  }

  .benefit-grid h3 {
    margin-top: 28px;
  }

  .dedicated-strip {
    padding: 27px 23px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .module-card {
    min-height: 340px;
  }

  .module-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-list article {
    grid-template-columns: 48px 1fr;
  }

  .conversion-section {
    padding: 100px 0 94px;
  }

  .conversion-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .conversion-actions .button {
    width: 100%;
  }

  .footer-main {
    padding: 64px 0 48px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-main .footer-links:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}
