/* Scheduletura marketing — Paytura-adjacent trust aesthetic + GorillaDesk-style sections */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --st-navy: #0b1220;
  --st-slate: #111827;
  --st-muted: #64748b;
  --st-line: #e2e8f0;
  --st-surface: #f1f5f9;
  --st-card: #ffffff;
  --st-accent: #2563eb;
  --st-accent-hover: #1d4ed8;
  --st-teal: #0d9488;
  --st-glow: rgba(37, 99, 235, 0.35);
  --st-radius: 14px;
  --st-radius-lg: 22px;
  --st-max: 1180px;
  --st-nav-h: 119px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.marketing-body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--st-slate);
  background: var(--st-card);
}

a {
  color: var(--st-accent);
  text-decoration: none;
}
a:hover {
  color: var(--st-accent-hover);
  text-decoration: underline;
}

.st-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.st-skip:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #fff;
  z-index: 9999;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Top trust bar */
.st-trust-bar {
  background: var(--st-navy);
  color: #cbd5e1;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.st-trust-bar .inner {
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}
.st-trust-bar a {
  color: #e2e8f0;
}
.st-trust-bar a:hover {
  color: #fff;
}

/* Nav */
.st-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--st-line);
}
.st-nav {
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--st-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.st-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--st-navy);
  text-decoration: none;
}
.st-brand:hover {
  text-decoration: none;
  color: var(--st-accent);
}
.st-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--st-accent), var(--st-teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--st-glow);
}
.st-brand-logo {
  display: block;
  height: 102px;
  width: auto;
  max-width: min(468px, 55vw);
  object-fit: contain;
}
.st-brand-footer {
  margin-bottom: 12px;
}
.st-brand-footer .st-brand-logo {
  height: 119px;
  max-width: 510px;
}
.st-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-nav-links a {
  color: #334155;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}
.st-nav-links a:hover {
  background: var(--st-surface);
  text-decoration: none;
  color: var(--st-navy);
}
.st-nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.st-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.st-btn-primary {
  background: linear-gradient(135deg, var(--st-accent), #1e40af);
  color: #fff !important;
  box-shadow: 0 10px 28px var(--st-glow);
  text-align: center;
}
.st-btn-primary:hover {
  color: #fff !important;
  box-shadow: 0 14px 36px var(--st-glow);
}
.st-btn-outline {
  background: transparent;
  color: var(--st-navy) !important;
  border: 1px solid var(--st-line);
  text-align: center;
  justify-content: center;
}
.st-btn-outline:hover {
  border-color: #cbd5e1;
  background: var(--st-surface);
}

.st-nav-cta .st-btn {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.2;
}

.st-nav-cta .st-btn-outline {
  padding-left: 16px;
  padding-right: 16px;
  width: 125px;
  white-space: normal;
  line-height: 1.15;
  text-wrap: balance;
  background: var(--st-accent);
  color: #fff !important;
  border-color: var(--st-accent);
}

.st-nav-cta .st-btn-primary {
  padding-top: 8px;
  padding-bottom: 8px;
}

.st-nav-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.st-nav-toggle {
  display: none;
  border: 1px solid var(--st-line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .st-nav-toggle {
    display: inline-flex;
  }
  .st-nav-menu {
    position: fixed;
    inset: calc(var(--st-nav-h) + 36px) 12px auto 12px;
    background: #fff;
    border: 1px solid var(--st-line);
    border-radius: var(--st-radius);
    padding: 12px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    gap: 4px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    flex: none;
    justify-content: flex-start;
  }
  .st-nav-menu.is-open {
    display: flex;
  }
  .st-nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .st-nav-links a {
    padding: 12px 14px;
  }
  .st-nav-cta {
    flex-direction: column;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--st-line);
  }
  .st-nav-cta .st-btn {
    width: 100%;
  }
}

/* Hero */
.st-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(37, 99, 235, 0.12), transparent),
    radial-gradient(900px 500px at 90% 0%, rgba(13, 148, 136, 0.1), transparent),
    linear-gradient(180deg, #f8fafc 0%, #fff 45%);
  border-bottom: 1px solid var(--st-line);
}
.st-hero-inner {
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 56px 20px 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .st-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}
.st-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--st-teal);
  background: rgba(13, 148, 136, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.st-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.12;
  font-weight: 700;
  color: var(--st-navy);
  letter-spacing: -0.02em;
}
.st-hero-lead {
  margin: 0 0 28px;
  font-size: 1.15rem;
  color: var(--st-muted);
  max-width: 34rem;
}
.st-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.st-hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}
.st-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--st-accent);
}

/* Device frame + screenshot */
.st-device {
  border-radius: var(--st-radius-lg);
  background: linear-gradient(145deg, #0f172a, #1e293b);
  padding: 14px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}
.st-device-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-left: 4px;
}
.st-device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}
.st-device-dot:nth-child(1) {
  background: #f87171;
}
.st-device-dot:nth-child(2) {
  background: #fbbf24;
}
.st-device-dot:nth-child(3) {
  background: #34d399;
}
.st-device-screen {
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.st-device-screen img,
.st-device-screen svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Sections */
.st-section {
  padding: 72px 20px;
}
.st-section-alt {
  background: var(--st-surface);
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
}
.st-section-inner {
  max-width: var(--st-max);
  margin: 0 auto;
}
.st-section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.st-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--st-navy);
  letter-spacing: -0.02em;
}
.st-section-head p {
  margin: 0;
  color: var(--st-muted);
  font-size: 1.05rem;
}

/* Logo strip */
.st-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  font-weight: 600;
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Feature grid (GorillaDesk-style) */
.st-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 992px) {
  .st-grid {
    grid-template-columns: 1fr;
  }
}
.st-card {
  background: var(--st-card);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 26px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.st-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.st-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(13, 148, 136, 0.12));
}
.st-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--st-navy);
}
.st-card p {
  margin: 0;
  color: var(--st-muted);
  font-size: 15px;
}
.st-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--st-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Split feature row */
.st-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .st-split {
    grid-template-columns: 1fr;
  }
}
.st-split.reverse .st-split-visual {
  order: -1;
}
@media (max-width: 992px) {
  .st-split.reverse .st-split-visual {
    order: 0;
  }
}

/* Stats */
.st-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .st-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.st-stat {
  padding: 20px;
  border-radius: var(--st-radius);
  background: #fff;
  border: 1px solid var(--st-line);
}
.st-stat strong {
  display: block;
  font-size: 1.75rem;
  color: var(--st-navy);
  font-weight: 700;
}
.st-stat span {
  font-size: 14px;
  color: var(--st-muted);
}

/* Video */
.st-video-wrap {
  border-radius: var(--st-radius-lg);
  overflow: hidden;
  border: 1px solid var(--st-line);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  background: #000;
}
.st-video-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Testimonials */
.st-quote {
  background: var(--st-navy);
  color: #e2e8f0;
  border-radius: var(--st-radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.st-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
}
.st-quote blockquote {
  margin: 0;
  position: relative;
  font-size: 1.15rem;
  line-height: 1.65;
}
.st-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
}
.st-quote span.role {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 4px;
}

/* CTA band */
.st-cta-band {
  background: linear-gradient(120deg, #1e3a8a, #0f172a 55%, #134e4a);
  color: #e2e8f0;
  padding: 56px 20px;
  text-align: center;
}
.st-cta-band h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.st-cta-band p {
  margin: 0 auto 24px;
  max-width: 560px;
  color: #cbd5e1;
}

/* Footer */
.st-footer {
  background: var(--st-navy);
  color: #94a3b8;
  padding: 56px 20px 28px;
  font-size: 14px;
}
.st-footer a {
  color: #cbd5e1;
}
.st-footer a:hover {
  color: #fff;
}
.st-footer-grid {
  max-width: var(--st-max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .st-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.st-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.st-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-footer li {
  margin-bottom: 10px;
}
.st-footer-bottom {
  max-width: var(--st-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

/* Persona / inner pages */
.st-page-hero {
  background: linear-gradient(180deg, #f8fafc, #fff);
  border-bottom: 1px solid var(--st-line);
  padding: 48px 20px 40px;
}
.st-page-hero-inner {
  max-width: var(--st-max);
  margin: 0 auto;
}
.st-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--st-navy);
}
.st-page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--st-muted);
  font-size: 1.1rem;
}
.st-content {
  max-width: var(--st-max);
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.st-steps {
  counter-reset: st;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-steps li {
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
}
.st-steps li::before {
  counter-increment: st;
  content: counter(st);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--st-accent), var(--st-teal));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.st-steps h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--st-navy);
}
.st-steps p {
  margin: 0;
  color: var(--st-muted);
}

/* Contact form */
.st-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #334155;
}
.st-form .st-field {
  margin-bottom: 18px;
}
.st-form input,
.st-form select,
.st-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--st-line);
  font-family: inherit;
  font-size: 15px;
}
.st-form input:focus,
.st-form select:focus,
.st-form textarea:focus {
  outline: none;
  border-color: var(--st-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.st-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 15px;
}
.st-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.st-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.field-validation-error,
.text-danger {
  color: #b91c1c !important;
  font-size: 13px;
  display: block;
  margin-top: 4px;
}

/* Tables (features page) */
.st-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  background: #fff;
}
.st-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.st-table th,
.st-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--st-line);
}
.st-table th {
  background: var(--st-surface);
  font-weight: 600;
  color: var(--st-navy);
}
.st-table tr:last-child td {
  border-bottom: none;
}

/* Query Builder / feature detail pages */
.st-grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.st-feature-panel {
  background: var(--st-card);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 1.2rem;
}
.st-feature-panel h3 {
  margin: 0 0 0.5rem;
  color: var(--st-navy);
  font-size: 1.1rem;
}
.st-feature-panel p {
  margin: 0;
  color: var(--st-muted);
}
.st-feature-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--st-muted);
}
.st-feature-panel li + li {
  margin-top: 0.35rem;
}
.st-image-card {
  background: var(--st-card);
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 0.85rem;
}
.st-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--st-line);
  display: block;
}
.st-image-caption {
  margin: 0.65rem 0 0;
  color: var(--st-muted);
  font-size: 0.92rem;
}
@media (max-width: 768px) {
  .st-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Two-col checklist */
.st-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
@media (max-width: 768px) {
  .st-check-grid {
    grid-template-columns: 1fr;
  }
}
.st-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-size: 15px;
}
.st-check::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(13, 148, 136, 0.15);
  color: var(--st-teal);
  font-weight: 700;
  font-size: 12px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* Pricing page */
.st-pricing-intro {
  margin-bottom: 26px;
}
.st-pricing-intro h2 {
  margin: 0 0 8px;
  color: var(--st-navy);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}
.st-pricing-intro p {
  margin: 0;
  color: var(--st-muted);
}
.st-currency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: #475569;
}
.st-currency-row span {
  background: #eef2ff;
  border: 1px solid #dbe3ff;
  border-radius: 999px;
  padding: 4px 10px;
}
.st-currency-row span:first-child {
  background: transparent;
  border: 0;
  padding-left: 0;
  font-weight: 600;
}

.st-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1050px) {
  .st-pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .st-pricing-grid {
    grid-template-columns: 1fr;
  }
}
.st-price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: var(--st-radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-price-card h3 {
  margin: 0;
  color: var(--st-navy);
  font-size: 1.2rem;
}
.st-price-tagline {
  margin: 0;
  color: var(--st-muted);
  font-size: 14px;
}
.st-price-amount {
  margin: 2px 0 0;
  color: var(--st-navy);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}
.st-price-amount span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}
.st-price-meta {
  margin: 0;
  color: var(--st-muted);
  font-size: 13px;
}
.st-price-card ul {
  margin: 2px 0 8px;
  padding-left: 16px;
  color: #334155;
  font-size: 14px;
}
.st-price-card li {
  margin-bottom: 6px;
}
.st-price-card .st-btn {
  margin-top: auto;
}
.st-price-card-featured {
  border-color: #8fb4ff;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.14);
}
.st-price-badge {
  position: absolute;
  right: 14px;
  top: -10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 10px;
}
.st-pricing-footnote {
  color: var(--st-muted);
  font-size: 13px;
  margin-top: 14px;
}
