:root {
  --bg: #f6f7fb;
  --bg-soft: #ffffff;
  --ink: #121620;
  --muted: #5f6777;
  --line: #dce2ee;
  --accent: #00b7ff;
  --accent-ink: #031018;
  --radius: 22px;
  --shadow: 0 20px 42px rgba(16, 22, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 95% -10%, rgba(255, 255, 255, 0.9), transparent 70%),
    radial-gradient(1000px 420px at -10% 15%, rgba(208, 226, 255, 0.45), transparent 72%),
    var(--bg);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus-visible {
  left: 14px;
  top: 14px;
  z-index: 999;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 20px;
}

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

.col-7 {
  grid-column: span 7;
}

.col-5 {
  grid-column: span 5;
}

.section {
  padding: 88px 0;
}

.section-compact {
  padding-top: 58px;
  padding-bottom: 58px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

h1 {
  margin-top: 14px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.8vw, 4.5rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2.6vw, 1.42rem);
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1rem, 2.4vw, 1.13rem);
  color: var(--muted);
}

.section-sub {
  margin-top: -2px;
  margin-bottom: 24px;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.1vw, 1.1rem);
}

.small {
  color: var(--muted);
  font-size: 0.8rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #70798a;
  font-weight: 700;
}

.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-header {
  z-index: 40;
  border-bottom: 1px solid transparent;
}

@media (min-width: 960px) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(246, 247, 251, 0.9);
    border-bottom-color: rgba(18, 22, 32, 0.05);
    backdrop-filter: blur(10px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}

.logo {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: #334055;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 183, 255, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 24px rgba(0, 183, 255, 0.3);
}

.btn-primary:hover {
  background: #00adf0;
}

.btn-secondary {
  background: transparent;
  border-color: #c7d0e0;
  color: #2f405d;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(16, 22, 34, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #cbd4e4;
  background: #fff;
  border-radius: 12px;
  color: #1c2434;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding-top: 74px;
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-bullets {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #2f3b52;
  font-size: 1rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 20px;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c8698;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.micro {
  margin-top: 4px;
  color: #667084;
  font-size: 0.82rem;
}

.hero-visual {
  min-width: 0;
}

.mock-frame {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(170deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid #d5deef;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.mock-title {
  color: #5d6779;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.mock-card {
  border: 1px solid #d6deed;
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: #fff;
  transition: transform 0.2s ease;
}

.mock-card:hover {
  transform: translateY(-2px);
}

.mock-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.mock-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-grid {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.demo-card {
  padding: 22px;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
}

.demo-card h3 {
  font-size: 1.08rem;
}

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

.how-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.step-index {
  width: fit-content;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid #d7dfed;
  color: #4e5a72;
}

.how-card p {
  color: var(--muted);
}

.features-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 24px;
  display: grid;
  gap: 11px;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  position: relative;
  padding-left: 26px;
}

.feature-card h3::before,
.feature-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #7d8798;
}

.feature-card h3::after {
  transform: rotate(90deg);
}

.feature-card p {
  color: var(--muted);
}

.payments {
  border: 1px solid #d7deec;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 34px;
}

.payments p {
  color: var(--muted);
  max-width: 900px;
}

.business-card {
  padding: 34px;
  display: grid;
  gap: 14px;
}

.business-card p {
  color: var(--muted);
}

.badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  border: 1px solid #cfd8e7;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  font-size: 0.87rem;
  font-weight: 700;
  color: #2f3b52;
}

.pricing-card {
  margin-top: 24px;
  padding: 34px;
  display: grid;
  gap: 16px;
}

.price {
  margin: 4px 0 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.price-sub {
  color: var(--muted);
}

.included-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.included-list li {
  position: relative;
  padding-left: 24px;
  color: #2f3b52;
}

.included-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #95a0b3;
}

.proof {
  padding: 34px;
  border: 1px solid #d9e1ef;
  border-radius: 24px;
  background: #fff;
}

.proof ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #2f3b52;
  display: grid;
  gap: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.04rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 1.3rem;
  color: #556079;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: -2px 0 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.cta-band {
  padding: 36px;
  border-radius: 26px;
  border: 1px solid #d5deef;
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ff 100%);
  display: grid;
  gap: 16px;
}

.cta-band p {
  max-width: 900px;
  color: var(--muted);
}

.contact-form {
  margin-top: 22px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: #3a475f;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8e8;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #1c2434;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 112px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 183, 255, 0.2);
}

.field-error {
  min-height: 16px;
  color: #b42318;
  font-size: 0.77rem;
}

.submit-btn {
  width: fit-content;
  min-width: 188px;
}

.submit-btn[disabled] {
  cursor: progress;
  opacity: 0.8;
}

.success-message {
  margin: 0;
  color: #1e7d44;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-footer {
  padding: 34px 0 34px;
  border-top: 1px solid rgba(18, 22, 32, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #616a7d;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: #404f68;
  text-decoration: none;
}

.small a {
  color: #2f405d;
}

.small a:hover,
.small a:focus-visible {
  color: var(--accent);
}

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

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
}

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

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

@media (max-width: 959px) {
  body {
    padding-bottom: 88px;
  }

  .header-cta {
    display: none;
  }

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

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    background: #fff;
    border: 1px solid #d8deeb;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.12);
    padding: 14px;
    display: grid;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8f9fc;
  }

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

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding-top: 44px;
  }

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

  .col-7,
  .col-5 {
    grid-column: 1 / -1;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .hero-bullets {
    gap: 8px;
    font-size: 0.96rem;
  }

  .demo-grid,
  .how-grid,
  .features-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .payments,
  .business-card,
  .pricing-card,
  .proof,
  .cta-band,
  .contact-form {
    padding: 22px;
  }

  .submit-btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
