
:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --card: #020617;
  /* Farben aus dem Logo (Cyan → Violett) */
  --accent: #22d3ee;
  --accent-soft: rgba(34, 211, 238, 0.18);
  --accent-strong: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #22d3ee, #8b5cf6);
  --accent-gradient-strong: radial-gradient(circle at top left, #5eead4, #8b5cf6);
  --text-main: #f9fafb;
  --text-soft: #d1d5f0;
  --text-muted: #9ca3af;
  --max-width: 1120px;
  --shadow-soft: 0 40px 120px rgba(15, 23, 42, 0.9);
  --radius-xl: 1.6rem;
}

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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.32), transparent 60%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.26), transparent 55%),
    #020617;
  -webkit-font-smoothing: antialiased;
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.85), transparent);
  border-bottom: 1px solid rgba(30, 64, 175, 0.4);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo-wrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #22d3ee, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.brand-logo-wrap img {
  width: 130%;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-soft);
  margin: 4px 0;
}

nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  font-size: 0.86rem;
}

.nav-link {
  position: relative;
  opacity: 0.86;
  padding-bottom: 0.15rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gradient);
  transition: width 0.15s ease-out;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mega dropdown for Leistungen */

.nav-item {
  position: relative;
}

.nav-item.dropdown:hover > .nav-dropdown,
.nav-item.dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.45rem;
  min-width: 520px;
  background: #020617;
  border-radius: 1.3rem;
  border: 1px solid rgba(30, 64, 175, 0.7);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem 1.15rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s ease-out;
  z-index: 35;
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.05fr);
  gap: 1.1rem;
}

.nav-drop-section-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.nav-drop-links {
  display: grid;
  gap: 0.35rem;
}

.nav-drop-links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.3rem 0.45rem;
  border-radius: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.nav-drop-links a span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-drop-links a:hover {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
}

.nav-drop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.nav-drop-badge {
  font-size: 0.74rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-soft);
}

.nav-drop-list {
  list-style: none;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.nav-drop-list li {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.nav-drop-list li::before {
  content: "•";
  color: #38bdf8;
  margin-top: 0.05rem;
}

/* Mobile nav */

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }
  nav.is-open {
    display: block;
    position: absolute;
    inset: 52px 1.5rem auto;
    background: #020617;
    border-radius: 1rem;
    border: 1px solid rgba(30, 64, 175, 0.6);
    box-shadow: var(--shadow-soft);
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem 1rem;
  }
  .nav-item.dropdown .nav-dropdown {
    position: static;
    margin-top: 0.4rem;
    min-width: 0;
    box-shadow: none;
    border-radius: 0.9rem;
  }

  /* Mobile dropdown fix for Leistungen */
  .nav-item.dropdown > .nav-dropdown {
    position: static;
    min-width: unset;
    width: 100%;
    margin-top: 0.6rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item.dropdown.is-open > .nav-dropdown {
    display: block;
  }

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    padding: 0.9rem;
    gap: 0.8rem;
  }

}

/* Hero */

main {
  flex: 1 0 auto;
}

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

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at left, rgba(37, 99, 235, 0.2), rgba(2, 6, 23, 0.95));
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3rem);
  line-height: 1.16;
  margin-bottom: 1rem;
}

.hero-title span {
  background-image: var(--accent-gradient-strong);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0.5rem auto 1.9rem auto;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
             transform 0.1s ease, box-shadow 0.14s ease;
}

.btn-primary {
  background-image: var(--accent-gradient);
  color: #020617;
  box-shadow: 0 26px 70px rgba(37, 99, 235, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 32px 90px rgba(37, 99, 235, 0.85);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text-soft);
}

.btn-secondary:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-bottom: 2.4rem;
}

.kpi-card {
  padding: 1rem 0.9rem;
  border-radius: 1.2rem;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(37, 99, 235, 0.55);
}

.kpi-value {
  font-size: 1.45rem;
  font-weight: 600;
}

.kpi-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

.kpi-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

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

.hero-feature {
  padding: 1.4rem 1.15rem 1.5rem;
  border-radius: 1.4rem;
  background: rgba(4, 7, 20, 0.95);
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.8);
  text-align: left;
}

.hero-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 1rem;
  background: linear-gradient(145deg, #1d4ed8, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.hero-feature-title {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hero-feature-text {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Inner sections */

.page-section {
  padding: 3rem 0 3.6rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(56,189,248,0.85);
}

.section-title {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  margin: 0.45rem 0 0.35rem;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 0 18px rgba(56,189,248,0.10);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: rgba(209, 213, 240, 0.92);
  max-width: 58rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.text-block {
  font-size: 0.95rem;
  color: var(--text-main);
}

.text-block p + p {
  margin-top: 0.7rem;
}

.card {
  padding: 1.6rem 1.45rem;
  border-radius: 1.4rem;
  background: rgba(4, 7, 20, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.95);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
}

.list {
  list-style: none;
  margin-top: 0.7rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.list li {
  display: flex;
  gap: 0.4rem;
}

.list li::before {
  content: "•";
  color: #38bdf8;
  margin-top: 0.05rem;
}

.table-wrap {
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
  overflow: hidden;
  margin-top: 0.8rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table th,
.table td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid rgba(31, 41, 55, 0.95);
}

.table th {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  font-weight: 500;
  color: var(--text-soft);
  text-align: left;
}

.table tr:last-child td {
  border-bottom: none;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

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

.blog-list {
  display: grid;
  gap: 1.3rem;
  margin-top: 1rem;
}

.blog-item h3 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.faq-item {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(4, 7, 20, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

footer {
  margin-top: auto;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  background: #020617;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.8rem 1.5rem 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    padding-top: 2.6rem;
  }
  .hero-kpis {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.15rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
}


/* Contact Form */
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items:start;
}
@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; }
}
.contact-form{
  margin-top: 1rem;
}
.form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 760px){
  .form-row{ grid-template-columns: 1fr; gap: 1rem; }
}

.form-field{ margin-bottom: 1.15rem; }
.form-field label{
  display:block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(6, 14, 26, 0.55);
  color: rgba(255,255,255,0.92);
  padding: 1.0rem 1.05rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form textarea{ resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(60, 155, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(60,155,255,0.12);
}
.checkbox{
  display:flex;
  gap: 0.6rem;
  align-items:flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}
.checkbox input{ margin-top: 0.2rem; width: 18px; height: 18px; }
.form-notice{
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin: 0.9rem 0;
  font-size: 0.95rem;
}
.form-notice.success{
  border: 1px solid rgba(70, 200, 130, 0.25);
  background: rgba(70, 200, 130, 0.12);
  color: rgba(230,255,240,0.95);
}
.form-notice.error{
  border: 1px solid rgba(255, 120, 120, 0.25);
  background: rgba(255, 120, 120, 0.12);
  color: rgba(255,235,235,0.95);
}
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
.contact-side{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(10, 18, 32, 0.40);
  padding: 1.1rem 1.1rem;
}
.contact-side h3{ margin-top: 0; }
.divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 1rem 0;
}


/* === BusinessFlow Updates: Make-only, CTA button, Contact form polish === */
.nav-cta{
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1.05rem;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background-image: var(--accent-gradient);
  color: #061021;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.45);
  white-space: nowrap;
}
.nav-cta:active{ transform: translateY(0px); }

@media (max-width: 900px){
  /* Ensure CTA looks good in mobile menu */
  nav ul li .nav-cta{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }
}

.contact-form{
  margin-top: 1.25rem;
  background: rgba(6, 14, 26, 0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(10px);
}
.contact-form .form-field label{
  font-weight: 600;
  letter-spacing: 0.01em;
}
.contact-form .checkbox span{
  line-height: 1.35;
  color: rgba(255,255,255,0.85);
}
.contact-form .hp-field{ display:none; }
.btn-submit{
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.2rem;
  font-size: 0.98rem;
  font-weight: 800;
}


.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 0;
  background: var(--accent-gradient);
  color: rgba(255,255,255,0.98) !important;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(37,99,235,0.28), 0 0 0 1px rgba(56,189,248,0.18) inset;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.nav-cta:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37,99,235,0.36), 0 0 0 1px rgba(56,189,248,0.22) inset;
}
.nav-cta:active{ transform: translateY(0); }

/* Keep dark inputs even when browser autofill is active */
.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill{
  -webkit-text-fill-color: rgba(255,255,255,0.92);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(6, 14, 26, 0.75) inset;
  border: 1px solid rgba(255,255,255,0.18);
}

.faq-mini{
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148,163,184,0.18);
}
.faq-mini h3{
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
}
.faq-mini details{
  background: rgba(2,6,23,0.42);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin: 0.7rem 0;
}
.faq-mini summary{
  cursor: pointer;
  font-weight: 650;
  color: rgba(255,255,255,0.92);
  list-style: none;
}
.faq-mini summary::-webkit-details-marker{ display:none; }
.faq-mini p{
  margin: 0.65rem 0 0;
  color: rgba(209,213,240,0.92);
  line-height: 1.55;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap: 0.85rem;
  margin: 1.05rem 0 1.2rem;
}

.checklist{
  list-style:none;
  padding: 0;
  margin: 0.9rem 0 0.4rem;
}
.checklist li{
  position: relative;
  padding-left: 1.6rem;
  margin: 0.55rem 0;
  color: rgba(209,213,240,0.92);
  line-height: 1.5;
}
.checklist li:before{
  content: "✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(56,189,248,0.95);
  font-weight: 800;
}

/* Match select styling to dark inputs */
.contact-form select{
  width:100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,18,40,.55);
  color: rgba(255,255,255,.92);
  outline: none;
  appearance: none;
}
.contact-form select:focus{
  border-color: rgba(59,130,246,.6);
  box-shadow: 0 0 0 4px rgba(59,130,246,.18);
}


/* --- Contact form: mobile-like layout on desktop --- */
.contact-wrapper, .contact-container, .contact-inner{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form label{
  display:block;
  margin-bottom:.45rem;
  font-weight:600;
  color: rgba(255,255,255,.86);
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  box-sizing:border-box;
}

.contact-form textarea{
  min-height: 140px;
}



/* Calendar embed (Cal.com / Calendly style iframe) */
.cal-iframe{
  width:100%;
  height: 760px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(6, 14, 26, 0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
@media (max-width: 760px){
  .cal-iframe{ height: 680px; }
}

/* Prevent form fields from overflowing on mobile */
.contact-form input,
.contact-form textarea,
.contact-form select{
  max-width:100%;
  min-width:0;
}

/* Calendly embed styling */
.calendly-embed-section{
  max-width: 920px;
  margin: 2.25rem auto 0;
  padding: 0 1rem;
}
.calendly-embed-section .section-title{
  margin-bottom:.35rem;
}
.calendly-embed-section .muted{
  margin-bottom: 1rem;
}


/* Pricing grid (no prices) */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 14px;
}
.pricing-card h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: .2px;
}
.pricing-card .muted{
  margin-top: 0;
}
.pricing-card .btn-row{
  margin-top: 14px;
}
@media (min-width: 980px){
  .pricing-grid{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
  .pricing-grid .pricing-card:last-child{
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px){
  .pricing-grid{
    grid-template-columns: 1fr;
  }
}
