/* VerifyPDF-style clone – design tokens and base */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-page: #0f1424;
  --bg-card: #1a2034;
  --btn-secondary: #3f4a62;
  --primary-blue: #3b82f6;
  --accent-blue: #5e7bff;
  --gradient-end: #a07bff;
  --headline-accent: #9fe8ff;
  --success-green: #27ae60;
  --border-dashed: #50576f;
  --text-primary: #ffffff;
  --text-muted: #e0e0e0;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --hero-size: clamp(2.5rem, 5vw, 3.75rem);
  --section-title: clamp(1.75rem, 3vw, 2.25rem);
  --card-title: 1.25rem;
  --body-size: 1rem;
  --nav-size: 1rem;

  /* Layout */
  --container-max: 1200px;
  --section-padding: 12rem 2rem;
  --radius: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.5;
}


.light-theme #contact {
  padding-top: 12rem;
}

.light-theme section.work-with-section {
  padding-top: 6rem;
}



img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-page);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-pill {
  background: var(--accent-blue);
  color: white;
  padding: 0.2em 0.5em;
  border-radius: 6px;
  font-weight: 700;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-main a {
  color: var(--text-muted);
  font-size: var(--nav-size);
  text-decoration: none;
}
.nav-main a:hover { color: var(--text-primary); text-decoration: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.theme-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { color: var(--text-primary); }
.btn-login {
  background: var(--accent-blue);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: var(--nav-size);
}
.btn-login:hover { filter: brightness(1.1); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  min-height: calc(100vh - 73px);
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .hero-inner {
  max-width: 60rem;
  margin-inline: auto;
  padding: 6rem 2rem 6rem 2rem;
}
.hero h1 {
  font-size: var(--hero-size);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.hero .gradient-text {
  background: linear-gradient(90deg, var(--accent-blue), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0 2rem;
  margin-inline: auto;
  line-height: 1.6;
}
.hero-form {
  max-width: 480px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.upload-zone {
  background: var(--bg-card);
  border: 2px dashed var(--border-dashed);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover {
  border-color: var(--accent-blue);
  background: rgba(26, 32, 52, 0.9);
}
.upload-zone .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--border-dashed);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.upload-zone strong { display: block; margin-bottom: 0.25rem; }
.upload-zone span { color: var(--text-muted); font-size: 0.95rem; }
.hero-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dashed);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
}
.hero-form input[type="email"]::placeholder { color: var(--text-muted); }
.hero-form .terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-form .terms input { margin-top: 0.2rem; }
.hero-form .terms a { color: var(--accent-blue); }
.btn-check {
  background: var(--btn-secondary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
}
.btn-check:hover { filter: brightness(1.15); }

/* Section common */
section {
  padding: var(--section-padding);
}
.section-title {
  font-size: var(--section-title);
  font-weight: 800;
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.hero .cta-buttons {
  margin-top: 0.5rem;
}

/* Trusted section – service cards */
.trusted-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.services-grid {
  gap: 2.25rem;
}
.trusted-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.trusted-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(94, 123, 255, 0.2);
  border: 1px solid rgba(94, 123, 255, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 1.25rem;
}
.trusted-card h3 {
  font-size: var(--card-title);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.trusted-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.project-card .btn-demo {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* See how easy – demo block */
.demo-block {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.demo-editor-bar {
  background: var(--bg-card);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.demo-doc {
  background: #fff;
  color: #1a1a1a;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.5rem;
  font-family: var(--font-sans);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.demo-doc h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.demo-doc .meta { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.demo-doc table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.demo-doc th, .demo-doc td { padding: 0.5rem; text-align: left; border-bottom: 1px solid #eee; }
.demo-doc th { font-weight: 600; }

/* Why Partner With Us – modern cards */
.why-section {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 32, 52, 0.4) 50%, transparent 100%);
}
.why-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: -0.5rem auto 3rem;
  font-size: 1.05rem;
  line-height: 1.65;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2rem 2.25rem;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.why-card:hover {
  border-color: rgba(94, 123, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.why-card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-blue), var(--gradient-end));
  border-radius: 4px 0 0 4px;
}
.why-card-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Three-column section (legacy/other use) */
.three-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.three-cols h3 {
  font-size: var(--card-title);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.three-cols p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing */
.pricing-section { background: var(--bg-card); }
.stats-section .pricing-cards { display: none; }
.stats-section .billing-toggle { display: none; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}
.stat-block {
  background: var(--bg-page);
  border: 1px solid var(--border-dashed);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
}
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.billing-toggle button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
.billing-toggle button.active { color: var(--text-primary); font-weight: 600; }
.save-badge {
  background: var(--success-green);
  color: white;
  font-size: 0.75rem;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-weight: 600;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.pricing-card {
  background: var(--bg-page);
  border: 1px solid var(--border-dashed);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.pricing-card h3 { font-size: 1.25rem; margin: 0 0 0.25rem; }
.pricing-card .price { font-size: 1.75rem; font-weight: 800; margin: 0 0 0.25rem; }
.pricing-card .billing-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}
.pricing-card li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card li::before { content: "✓"; color: var(--success-green); font-weight: bold; }
.btn-trial {
  background: var(--accent-blue);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-trial:hover { filter: brightness(1.1); text-decoration: none; }
.btn-contact {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-contact:hover { background: rgba(94, 123, 255, 0.1); text-decoration: none; }

/* Reviews slider – modern testimonial section */
.reviews-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.reviews-slider {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 500%;
}
.review-slide {
  flex: 0 0 20%;
  width: 20%;
  padding: 0.5rem;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.review-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-blue);
  opacity: 0.4;
  font-family: Georgia, serif;
}
.review-quote {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.review-quote::before,
.review-quote::after {
  display: none;
}
.review-cite {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: normal;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.review-cite::before {
  content: '— ';
  color: var(--accent-blue);
  font-weight: 400;
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.reviews-prev,
.reviews-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-dashed);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.reviews-prev:hover,
.reviews-next:hover {
  border-color: var(--accent-blue);
  background: rgba(94, 123, 255, 0.12);
  color: var(--accent-blue);
}
.reviews-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.reviews-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border-dashed);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.reviews-dots button:hover {
  background: var(--text-muted);
}
.reviews-dots button.active {
  background: var(--accent-blue);
  transform: scale(1.25);
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-dashed);
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}
.faq-item button:hover { color: var(--accent-blue); }
.faq-item .faq-icon { color: var(--text-muted); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item .faq-answer-inner {
  padding-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final CTA block */
.cta-block {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(94, 123, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block-inner {
  position: relative;
  max-width: 36rem;
  margin-inline: auto;
}
.cta-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin: 0 0 1rem;
}
.cta-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.cta-block .highlight {
  background: linear-gradient(90deg, var(--accent-blue), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-desc {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.cta-btn-primary {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(94, 123, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(94, 123, 255, 0.45);
  text-decoration: none;
  color: white;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta-buttons .btn-trial { display: inline-block; }
.cta-buttons .btn-demo {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-dashed);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
}
.cta-buttons .btn-demo:hover { border-color: var(--accent-blue); color: var(--accent-blue); text-decoration: none; }

/* Why Work With Us */
.work-with-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.work-with-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 480px;
  margin: -0.5rem auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.work-with-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.work-with-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-page);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.work-with-item:hover {
  border-color: rgba(94, 123, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.work-with-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(94, 123, 255, 0.2);
  border: 1px solid rgba(94, 123, 255, 0.4);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-with-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.35;
}
@media (max-width: 560px) {
  .work-with-grid {
    grid-template-columns: 1fr;
  }
}

/* Trusted result card (legacy) */
.result-card-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.result-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-dashed);
}
.result-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.result-row:last-child { margin-bottom: 0; }
.result-row.highlight { background: var(--success-green); color: white; }
.result-row .check { color: var(--success-green); flex-shrink: 0; }
.result-row.highlight .check { color: white; }
.result-row strong { font-size: 0.95rem; }
.result-row span { font-size: 0.85rem; opacity: 0.9; }

/* Footer */
.site-footer {
  padding: 3rem 1.5rem 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-simple {
  text-align: center;
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: 2rem;
}
.footer-simple .logo { font-size: 1.1rem; display: inline-block; margin-bottom: 0.5rem; }
.footer-simple p {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-contact {
  color: var(--accent-blue);
  font-size: 1rem;
  font-weight: 500;
}
.footer-contact:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  max-width: var(--container-max);
  margin-inline: auto;
  margin-bottom: 2rem;
}
.footer-brand p {
  margin: 0.5rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-brand .logo { font-size: 1.1rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  color: var(--text-muted);
}
.social-link:hover { color: var(--text-primary); }
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--text-primary); }
.hiring-pill {
  display: inline-block;
  background: var(--success-green);
  color: white;
  font-size: 0.7rem;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  margin-left: 0.35rem;
}
.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-dashed);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 200;
}
.cookie-banner.hidden { display: none; }
.cookie-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 280px;
}
.cookie-banner a { color: var(--accent-blue); }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-actions button {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
}
.cookie-decline {
  background: transparent;
  border: 1px solid var(--border-dashed);
  color: var(--text-muted);
}
.cookie-accept {
  background: var(--accent-blue);
  border: none;
  color: white;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* Hover states */
.btn-login:hover, .btn-trial:hover { opacity: 0.95; }
.btn-check:hover { background: #4a5568; }
.pricing-card { transition: border-color 0.2s, box-shadow 0.2s; }
.pricing-card:hover { border-color: var(--accent-blue); }
.faq-question:hover { color: var(--accent-blue); }

/* Light theme (optional) */
body.light-theme {
  --bg-page: #f5f6fa;
  --bg-card: #ffffff;
  --text-primary: #1a1d2b;
  --text-muted: #50576f;
  --border-dashed: #cbd0dc;
}
body.light-theme .site-header,
body.light-theme .site-footer { border-color: rgba(0,0,0,0.08); }
body.light-theme .demo-doc { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
body.light-theme .cta-block::before {
  background: none;
}
body.light-theme .why-section {
  background: none;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem 0.5rem;
  }
  .site-header .container {
    padding-inline: 0.3rem;
  }
  .nav-main { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; }
  section {
    padding-top: 2.75rem;
    padding-bottom: 5rem;
    padding-inline: 1rem;
  }
  section:first-of-type {
    padding-top: 0;
  }
  /* Override inline padding-top:0 so spacing is consistent */
  section#services,
  section.why-section {
    padding-top: 2.75rem !important;
  }
  section.why-section {
    padding-bottom: 8rem !important;
  }
  section.work-with-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .hero {
    min-height: auto;
    padding-top: 5rem !important;
    padding-bottom: 5rem;
    padding-inline: 1rem;
  }
  .hero .hero-inner {
    padding: 4rem 1rem;
  }
  .cta-block {
    padding: 3rem 1rem;
  }
  .site-footer {
    padding: 2rem 1rem 0.5rem;
  }
  .trusted-cards,
  .why-grid,
  .work-with-grid {
    padding-inline: 1rem;
  }
  /* Why Partner cards: gradient line on top for mobile */
  .why-card-accent {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(90deg, var(--accent-blue), var(--gradient-end));
  }
}
@media (max-width: 480px) {
  section {
    padding-top: 2.75rem;
    padding-bottom: 5rem;
    padding-inline: 0.75rem;
  }
  section:first-of-type {
    padding-top: 0;
  }
  section#services,
  section.why-section {
    padding-top: 2.75rem !important;
  }
  .site-header {
    padding: 0.75rem 0.5rem;
  }
  .hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-inline: 0.75rem;
  }
  .hero .hero-inner {
    padding: 3rem 0.75rem;
  }
  section.why-section {
    padding-bottom: 8rem !important;
  }
  section.work-with-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
}
