:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --card: #111827;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 52%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

.shell { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.85rem 0; gap: 1rem; }

.nav-left { display: flex; align-items: center; gap: 0.75rem; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reserve space to prevent layout jump while the logo image loads */
.logo-mark.logo-image {
  width: 216px;
  height: 48px;
  flex: 0 0 auto;
}

.logo-mark.logo-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
}

.logo-mark.logo-image.logo-error .logo-fallback {
  display: inline-flex;
}

.nav-links { display: flex; align-items: center; gap: 1.25rem; font-size: 0.9rem; }

.nav-links a { color: var(--muted); padding: 0.15rem 0; position: relative; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #60a5fa, #2563eb);
  transition: width 0.18s ease;
}

.nav-links a:hover { color: #e5e7eb; }
.nav-links a:hover::after { width: 100%; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.52rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.4), transparent 52%),
    linear-gradient(135deg, #2563eb, #1d4ed8, #0f172a);
  color: #eff6ff;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 14px 34px rgba(15, 23, 42, 0.9); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 8px 18px rgba(15, 23, 42, 0.9); }
.btn-primary span.icon { font-size: 1.1rem; line-height: 0; }

.btn-ghost {
  white-space: nowrap;
  padding: 0.52rem 0.85rem;

  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted);
  font-size: 0.86rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, transform 0.12s ease;
}

.btn-ghost:hover {
  background: rgba(30, 64, 175, 0.55);
  border-color: rgba(191, 219, 254, 0.9);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(14px);
}

.mobile-menu a {
  display: block;
  padding: 0.6rem 0;
  color: rgba(209, 213, 219, 0.92);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.mobile-menu a:last-child { border-bottom: none; }

a:focus-visible, button:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

main { flex: 1; }

.hero { padding: 3.4rem 0 3.6rem; }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3.3rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.16rem 0.6rem 0.16rem 0.18rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.1rem;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #bef264, #22c55e);
  font-size: 0.9rem;
}

.hero-kicker-text { font-size: 0.75rem; color: var(--muted); }

.hero-title { font-size: clamp(2.1rem, 3.2vw, 3rem); letter-spacing: -0.03em; margin-bottom: 0.8rem; }

.hero-subtitle { font-size: 1rem; color: var(--muted); max-width: 34rem; margin-bottom: 1.1rem; }

.hero-subtitle-2 { font-size: 0.9rem; color: #9ca3af; max-width: 30rem; margin-bottom: 1.6rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-bottom: 1.1rem; }

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-note span.badge {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.75);
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note span.badge2 {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.6);
  background: rgba(37, 99, 235, 0.10);
  color: rgba(191, 219, 254, 0.95);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual { position: relative; }

.hero-card {
  position: relative;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.28), transparent 52%),
    linear-gradient(145deg, #020617, #020617, #020617, #111827, #0b1120);
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.32) 0, transparent 52%),
    radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.35) 0, transparent 55%);
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  z-index: 1;
}

.chat-bubble {
  background: rgba(15, 23, 42, 0.94);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  margin-bottom: 0.7rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.9);
}

.chat-label { font-size: 0.7rem; color: rgba(148, 163, 184, 0.9); margin-bottom: 0.2rem; }
.chat-text { font-size: 0.8rem; color: #e5e7eb; }
.chat-text span.q { color: #bfdbfe; }
.chat-text span.a { color: #bbf7d0; }

.chat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  color: rgba(209, 213, 219, 0.95);
  margin-top: 0.4rem;
}

.chat-pill span.dot { width: 6px; height: 6px; border-radius: 999px; background: #22c55e; }

.hero-metrics { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.8rem; }

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.8));
}

.metric-label { color: rgba(148, 163, 184, 0.95); }
.metric-value { font-weight: 600; color: #e5e7eb; }
.metric-tag { font-size: 0.7rem; color: rgba(74, 222, 128, 0.9); }

.section {
  padding: 2.8rem 0 2.9rem;
  border-top: 1px solid rgba(30, 64, 175, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9) 0, transparent 62%);
}

.section.alt {
  background: radial-gradient(circle at top, rgba(30, 64, 175, 0.26) 0, rgba(15, 23, 42, 0.98) 46%, #020617 100%);
}

.section-header { max-width: 40rem; margin-bottom: 1.8rem; }

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(129, 140, 248, 0.95);
  margin-bottom: 0.4rem;
}

.section-title { font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.section-description { font-size: 0.96rem; color: var(--muted); }

.grid-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem; align-items: start; }

.pill-list { display: flex; flex-direction: column; gap: 0.75rem; }

.pill-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.pill-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, #60a5fa, #22c55e);
  flex-shrink: 0;
}

.pill-body { font-size: 0.9rem; color: #e5e7eb; }
.muted { color: var(--muted); font-size: 0.9rem; }

.reasons-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 0.9rem; }

.reason-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.reason-label {
  font-size: 0.75rem;
  color: rgba(129, 140, 248, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.28rem;
}

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1.2rem; }

.step-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.24) 0, transparent 55%);
  opacity: 0.4;
  pointer-events: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(191, 219, 254, 0.7);
  font-size: 0.72rem;
  color: #bfdbfe;
  margin-bottom: 0.35rem;
}

.step-title { font-weight: 550; margin-bottom: 0.25rem; }
.step-text { color: var(--muted); font-size: 0.86rem; }

.step-footer {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: rgba(209, 213, 219, 0.95);
  background: rgba(22, 163, 74, 0.1);
  border-radius: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.7);
  padding: 0.75rem 0.85rem;
}

.stories { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; margin-top: 1.4rem; }

.story-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.story-tag { font-size: 0.74rem; color: rgba(96, 165, 250, 0.9); text-transform: uppercase; letter-spacing: 0.13em; }
.story-title { font-weight: 550; color: #e5e7eb; }
.story-text { color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.1rem;
  align-items: center;
  margin-top: 1.2rem;
}

.about-card {
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.about-label {
  font-size: 0.75rem;
  color: rgba(129, 140, 248, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.3rem;
}

.about-title { font-size: 1.25rem; margin-bottom: 0.4rem; }
.about-text { font-size: 0.94rem; color: var(--muted); }

.about-highlights { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }

.badge-soft {
  font-size: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.avatar-orbit { position: relative; width: 220px; height: 220px; margin: 0 auto; }

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-main {
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #f9fafb, #e5e7eb, #94a3b8);
  overflow: hidden;
  border: 2px solid rgba(15, 23, 42, 1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.avatar-chip {
  position: absolute;
  right: 6px;
  bottom: 46px;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.8);
  font-size: 0.7rem;
  color: #bbf7d0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.avatar-chip-dot { width: 7px; height: 7px; border-radius: 999px; background: #22c55e; }

.cta-final { text-align: center; padding: 3rem 0 2.8rem; }
.cta-final h2 { font-size: 1.7rem; letter-spacing: -0.02em; margin-bottom: 0.7rem; }

.cta-final p { max-width: 34rem; margin: 0 auto 1rem; color: var(--muted); font-size: 0.96rem; }

.cta-reassure {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: rgba(209, 213, 219, 0.88);
}

.cta-reassure a { color: rgba(191, 219, 254, 0.95); text-decoration: underline; text-underline-offset: 3px; }

footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: #020617;
  padding: 1.4rem 0 1.6rem;
  margin-top: auto;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
}

.footer-inner { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; justify-content: space-between; }

.footer-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-links a { color: rgba(148, 163, 184, 0.9); }

.faq-list { display: flex; flex-direction: column; gap: 0.9rem; }

.faq-item {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
}

.faq-q { font-weight: 560; margin-bottom: 0.25rem; color: #e5e7eb; }
.faq-a { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 2.4rem; }
  .hero-visual { order: -1; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 768px) {
  .nav-phone { display: none; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding-bottom: 2.4rem; }
  .section { padding: 2.3rem 0 2.4rem; }
  .grid-two { grid-template-columns: minmax(0, 1fr); }
  .reasons-list { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .stories { grid-template-columns: minmax(0, 1fr); }
  .hero-card-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-card { padding: 1.3rem 1.2rem; }
  .avatar-orbit { width: 190px; height: 190px; }
  .avatar-main { width: 110px; height: 110px; font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .shell { padding: 0 1.1rem; }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.96rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-ghost, .btn-primary { justify-content: center; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Blog basics, keep it consistent */
.site-main .post, .site-main article {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 16px;
  padding: 1.2rem 1.2rem;
  margin-bottom: 1rem;
}

.site-main .entry-title a { color: #e5e7eb; }
.site-main .entry-title a:hover { color: rgba(191, 219, 254, 0.95); }

.site-main .entry-meta { color: rgba(148, 163, 184, 0.9); font-size: 0.85rem; margin-top: 0.25rem; }

.site-main .entry-content, .site-main .entry-summary { color: rgba(209, 213, 219, 0.92); }

.site-main .pagination, .nav-links, .post-navigation { margin-top: 1rem; }
/* ============================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================ */

/* Global adjustments for smaller devices */
@media (max-width: 1024px) {

  /* Make body text larger and easier to read */
  body, p, li, span, a {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* Increase heading sizes slightly for visibility */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.3rem; }

  /* Add more breathing room around paragraphs */
  p {
    margin-bottom: 1rem;
  }

  /* Wider padding for general content */
  .shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Larger navigation links */
  .nav-links a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }

  /* Make header height a bit larger */
  header .shell.nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  /* Improve spacing around hero text */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle, .hero-subtitle-2 {
    font-size: 1.1rem;
  }
}

/* ============================
   FOR TABLETS AND SMALLER
   ============================ */
@media (max-width: 768px) {

  /* Stack nav items and increase spacing */
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  /* More space on mobile nav */
  .mobile-menu a {
    padding: 0.8rem 0;
    font-size: 1rem;
  }

  /* Hero section spacing */
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Improve text sizes */
  h1.hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle, .hero-subtitle-2 {
    font-size: 1.05rem;
  }

  /* Wider safe zone around action buttons */
  .hero-actions {
    gap: 1rem;
  }

  /* Overall content spacing */
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* ============================
   FOR SMALL PHONES
   ============================ */
@media (max-width: 480px) {

  /* Slightly bigger text globally on tiny screens */
  body, p, li, span, a {
    font-size: 1.12rem;
  }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }

  .btn-primary, .btn-ghost {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle, .hero-subtitle-2 {
    font-size: 1rem;
  }

  /* More generous padding on small screens */
  .shell {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
/* Center the Pipedrive form safely */
.form-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-center .pipedriveWebForms {
  width: 100%;
  max-width: 560px;
}

/* If the embed uses an iframe, make it responsive */
.form-center .pipedriveWebForms iframe {
  width: 100%;
  max-width: 560px;
}
/* Center the Pipedrive form block visually */
.pipedriveWebForms {
  max-width: 520px;
  margin: 0 auto;
}

/* Center the labels and inputs */
.pipedriveWebForms form {
  text-align: center;
}

/* Ensure inputs fill nicely */
.pipedriveWebForms input,
.pipedriveWebForms textarea {
  width: 100%;
}
