:root {
  --bg: #050914;
  --bg-2: #071426;
  --panel: rgba(9, 20, 38, 0.74);
  --panel-2: rgba(12, 28, 52, 0.88);
  --line: rgba(103, 223, 255, 0.18);
  --line-strong: rgba(25, 217, 255, 0.46);
  --text: #eef7ff;
  --muted: #96a6ba;
  --cyan: #19d9ff;
  --cyan-2: #00a8ff;
  --coral: #ff5364;
  --violet: #8f5cff;
  --green: #63ffab;
  --gold: #ffc857;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(25, 217, 255, 0.16), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(255, 83, 100, 0.14), transparent 30%),
    radial-gradient(circle at 48% 44%, rgba(143, 92, 255, 0.10), transparent 35%),
    linear-gradient(135deg, #040711 0%, #071426 52%, #03060e 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.48;
  pointer-events: none;
  z-index: -2;
  animation: floatOrb 11s ease-in-out infinite;
}

.orb-one {
  left: -120px;
  top: 100px;
  background: rgba(25, 217, 255, 0.36);
}

.orb-two {
  right: -140px;
  top: 220px;
  background: rgba(255, 83, 100, 0.28);
  animation-delay: -4s;
}

.orb-three {
  left: 36%;
  bottom: -180px;
  background: rgba(143, 92, 255, 0.22);
  animation-delay: -7s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -24px, 0) scale(1.08); }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 16px;
  background: rgba(4, 9, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.08em;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.brand span {
  color: #ffffff;
}

.brand strong {
  color: var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(238, 247, 255, 0.78);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-btn,
.ghost-btn,
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #05101e;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2) 46%, var(--coral));
  box-shadow: 0 18px 38px rgba(25, 217, 255, 0.22), 0 10px 34px rgba(255, 83, 100, 0.16);
}

.primary-btn:hover,
.ghost-btn:hover,
.play-btn:hover {
  transform: translateY(-2px);
}

.primary-btn.small,
.ghost-btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.ghost-btn,
.play-btn {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.play-btn span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--cyan);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: 76px 0 50px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 10% auto auto 25%;
  width: 460px;
  height: 230px;
  background: linear-gradient(90deg, rgba(25, 217, 255, 0.16), rgba(255, 83, 100, 0.15));
  transform: rotate(-14deg);
  filter: blur(55px);
  z-index: -1;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--cyan);
  border: 1px solid rgba(25, 217, 255, 0.28);
  background: rgba(25, 217, 255, 0.07);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 20px var(--coral);
}

.kicker {
  margin: 0 0 14px;
  color: var(--coral);
  border-color: rgba(255, 83, 100, 0.25);
  background: rgba(255, 83, 100, 0.08);
}

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

h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(3.5rem, 7vw, 7.65rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h1:after {
  content: " All in one place.";
  display: block;
  margin-top: 8px;
  background: linear-gradient(120deg, var(--cyan), var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.proof-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
}

.proof-row strong {
  display: block;
  color: var(--cyan);
  font-size: 1.8rem;
}

.proof-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.dashboard-window {
  position: absolute;
  inset: 25px 42px auto auto;
  width: min(100%, 680px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(10, 23, 42, 0.92), rgba(2, 8, 18, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.dots span:first-child { background: var(--coral); }
.dots span:nth-child(2) { background: var(--gold); }
.dots span:nth-child(3) { background: var(--green); }

.window-bar button,
.sales-panel-head button {
  color: var(--text);
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 500px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.dash-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
}

.dash-sidebar .side-active {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.dash-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.metric-card,
.chart-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  padding: 16px;
}

.metric-card span,
.metric-card small,
.card-head b {
  color: var(--muted);
  font-size: 0.76rem;
}

.metric-card strong {
  display: block;
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.metric-card small {
  color: var(--green);
}

.chart-card.wide {
  grid-column: span 3;
  min-height: 230px;
}

.donut-card {
  grid-column: span 1;
  min-height: 230px;
}

.card-head,
.sales-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sales-chart {
  display: block;
  width: 100%;
  height: 160px;
  margin-top: 18px;
}

.grid-line {
  stroke: rgba(255,255,255,0.07);
  stroke-width: 1;
}

.area {
  fill: rgba(25, 217, 255, 0.09);
}

.line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 5;
  stroke-linecap: round;
}

.donut {
  width: 112px;
  height: 112px;
  margin: 24px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 0 46%, var(--coral) 46% 73%, var(--violet) 73% 100%);
  position: relative;
  box-shadow: 0 0 45px rgba(25, 217, 255, 0.18);
}

.donut:after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #071426;
}

.legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legend span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 7px;
  background: var(--cyan);
}

.legend li:nth-child(2) span { background: var(--coral); }
.legend li:nth-child(3) span { background: var(--violet); }

.phone-card {
  position: absolute;
  width: 185px;
  min-height: 318px;
  border: 8px solid #060a12;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 15%, rgba(25, 217, 255, 0.25), transparent 35%),
    linear-gradient(165deg, #0b1f36, #07101e 55%, #03070f);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
  padding: 24px 15px 16px;
}

.phone-top {
  top: 70px;
  right: 0;
  transform: rotate(5deg);
}

.phone-bottom {
  right: 54px;
  top: 370px;
  transform: rotate(-3deg);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 70px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #060a12;
  transform: translateX(-50%);
}

.phone-card h3 {
  margin: 38px 0 7px;
  font-size: 1.5rem;
  line-height: 1;
}

.phone-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.phone-card button {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border-radius: 13px;
  color: #04101e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
}

.ticket-tag {
  display: inline-block;
  margin-top: 30px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
}

.scan-box {
  width: 80px;
  height: 80px;
  margin: 40px auto 8px;
  border: 2px solid rgba(99, 255, 171, 0.7);
  border-radius: 24px;
  position: relative;
  box-shadow: 0 0 35px rgba(99, 255, 171, 0.2);
}

.scan-box:after {
  content: "";
  position: absolute;
  inset: 22px 18px 26px 24px;
  border-left: 5px solid var(--green);
  border-bottom: 5px solid var(--green);
  transform: rotate(-45deg);
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 24px 30px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

.logo-strip b {
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-top: 110px;
  margin-bottom: 28px;
}

.section-title h2,
.dashboard-copy h2,
.cta-card h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-title p:last-child,
.dashboard-copy p,
.cta-card p {
  max-width: 510px;
  color: var(--muted);
  line-height: 1.75;
}

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

.feature-card,
.step-card,
.sales-panel,
.price-card,
.cta-card,
.use-card {
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.feature-card {
  min-height: 340px;
  padding: 24px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  position: absolute;
  inset: auto -40px -65px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(25, 217, 255, 0.12);
  filter: blur(25px);
}

.feature-card.large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 217, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.feature-card.accent {
  border-color: rgba(255, 83, 100, 0.32);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 83, 100, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(25, 217, 255, 0.18), rgba(255, 83, 100, 0.18));
  border: 1px solid rgba(25, 217, 255, 0.32);
  position: relative;
}

.feature-icon:before,
.feature-icon:after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(25, 217, 255, 0.56);
}

.tag-icon:before { inset: 16px 12px 16px 12px; transform: rotate(-28deg); }
.tag-icon:after { width: 7px; height: 7px; right: 17px; top: 15px; background: var(--bg); }
.ticket-icon:before { inset: 14px 11px; }
.ticket-icon:after { width: 12px; height: 52px; left: 20px; top: 0; background: var(--panel-2); }
.table-icon:before { width: 28px; height: 16px; left: 12px; top: 15px; }
.table-icon:after { width: 5px; height: 16px; left: 15px; bottom: 10px; box-shadow: 16px 0 0 var(--cyan); }
.whatsapp-icon:before { width: 30px; height: 30px; left: 10px; top: 10px; border-radius: 50%; background: transparent; border: 4px solid var(--cyan); }
.whatsapp-icon:after { width: 12px; height: 6px; left: 13px; bottom: 10px; transform: rotate(-35deg); }
.bars-icon:before { width: 8px; height: 20px; left: 12px; bottom: 12px; box-shadow: 12px -8px 0 var(--cyan), 24px -18px 0 var(--cyan); }
.bars-icon:after { display: none; }
.wallet-icon:before { inset: 18px 10px 14px 10px; }
.wallet-icon:after { width: 10px; height: 10px; right: 13px; top: 22px; border-radius: 50%; background: var(--bg-2); }
.event-icon:before { inset: 14px 12px; background: transparent; border: 3px solid var(--cyan); }
.event-icon:after { width: 32px; height: 4px; left: 10px; top: 22px; }
.scan-icon:before { width: 17px; height: 17px; left: 10px; top: 10px; background: transparent; border-left: 4px solid var(--cyan); border-top: 4px solid var(--cyan); }
.scan-icon:after { width: 17px; height: 17px; right: 10px; bottom: 10px; background: transparent; border-right: 4px solid var(--cyan); border-bottom: 4px solid var(--cyan); }

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

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

.feature-card ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 11px;
  color: #c5d2e1;
  font-size: 0.92rem;
}

.feature-card li,
.price-card li {
  position: relative;
  padding-left: 18px;
}

.feature-card li:before,
.price-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.platform {
  margin-top: 20px;
}

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

.step-card {
  padding: 24px;
  border-radius: 24px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 15px;
  color: #06101e;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
  font-weight: 900;
}

.step-card h3 {
  font-size: 1.25rem;
}

.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: center;
  margin-top: 120px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: #dcecff;
}

.check-list span:before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(99, 255, 171, 0.4);
}

.sales-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
  background:
    radial-gradient(circle at 75% 0%, rgba(25, 217, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
}

.sales-panel-head strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.sales-panel-head span {
  color: var(--muted);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 13px;
  height: 250px;
  padding: 22px;
  margin: 26px 0;
  border-radius: 24px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.07);
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-height: 30px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--coral), var(--cyan));
  box-shadow: 0 15px 35px rgba(25, 217, 255, 0.18);
  transition: height 0.55s ease;
}

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

.promoter-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  color: var(--muted);
}

.promoter-list b {
  color: var(--text);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 13px;
}

.use-card {
  min-height: 105px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 10px;
  border-radius: 20px;
  color: #dcecff;
  font-weight: 800;
}

.toggle-wrap {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.toggle-wrap button {
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
}

.toggle-wrap button.active {
  color: #04101e;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 28px;
  border-radius: 28px;
}

.price-card.featured {
  border-color: rgba(25, 217, 255, 0.5);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 217, 255, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  transform: translateY(-10px);
}

.price-card > span {
  color: var(--cyan);
  font-weight: 900;
}

.price-card h3 {
  margin: 18px 0 12px;
  font-size: 2.6rem;
  letter-spacing: -0.05em;
}

.price-card h3 small,
.price-card h3 em {
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}

.price-card a {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 16px;
  color: #04101e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
}

.contact {
  margin-top: 120px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 10%, rgba(255, 83, 100, 0.14), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(25, 217, 255, 0.14), transparent 36%),
    rgba(255,255,255,0.045);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #d6e6f8;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(2, 8, 18, 0.68);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 15px;
  outline: none;
  padding: 14px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form select option {
  color: #06101e;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(25, 217, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(25, 217, 255, 0.12);
}

.lead-form .primary-btn {
  width: 100%;
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 54px;
  padding: 32px 0 44px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
  color: #d8e8f8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one { transition-delay: 0.08s; }
.delay-two { transition-delay: 0.16s; }

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .dashboard-window {
    left: 0;
    right: auto;
  }

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

  .workflow,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-section,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .lead-form {
    max-width: 620px;
  }
}

@media (max-width: 880px) {
  .site-header {
    border-radius: 24px;
  }

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

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    background: rgba(5, 9, 20, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.active span:first-child { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:last-child { transform: translateY(-6px) rotate(-45deg); }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.8rem);
  }

  .proof-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-window {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-card {
    display: none;
  }

  .dash-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chart-card.wide,
  .donut-card {
    grid-column: span 2;
  }

  .logo-strip,
  .section-title,
  .site-footer {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: min(100% - 24px, 1240px);
    padding: 12px;
  }

  .primary-btn,
  .ghost-btn,
  .play-btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

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

  .dash-sidebar {
    display: none;
  }

  .dash-main,
  .features-grid,
  .workflow,
  .use-case-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .chart-card.wide,
  .donut-card,
  .feature-card.large {
    grid-column: span 1;
  }

  .hero-visual {
    margin-inline: -4px;
  }

  .dashboard-window {
    border-radius: 22px;
  }

  .metric-card strong {
    font-size: 1rem;
  }

  .cta-card,
  .sales-panel {
    padding: 22px;
  }
}
