:root {
  --primary: #F97316;
  --secondary: #0EA5E9;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg-soft: #f8fafc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.site-nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img, .footer-logo-img {
  height: 36px; width: auto; max-width: 160px;
  object-fit: contain; display: block;
}
.footer-logo-img { height: 32px; max-width: 140px; margin-bottom: 8px; }
.nav-links { display: flex; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--muted); align-items: center; }
.nav-links > a:hover, .nav-links > a.active { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; font: inherit; color: inherit;
  padding: 8px 12px; border-radius: 10px; display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown-toggle::after {
  content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid #94a3b8; margin-top: 2px;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.active .nav-dropdown-toggle { color: var(--text); background: #f8fafc; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px; max-height: 420px; overflow-y: auto;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 8px;
  box-shadow: 0 16px 40px rgba(15,23,42,.12); opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s; z-index: 120;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 12px; border-radius: 10px; font-size: .84rem; color: #475569; line-height: 1.35;
}
.nav-dropdown-menu a:hover { background: #fff7ed; color: var(--primary); }
.mobile-nav-group { padding-bottom: 8px; border-bottom: 1px solid #f1f5f9; margin-bottom: 8px; }
.mobile-nav-heading { font-size: .95rem; font-weight: 700; color: #0f172a; padding: 8px 0 4px; display: block; }
.mobile-nav-child { display: block; font-size: .9rem; font-weight: 500; color: #64748b; padding: 6px 0 6px 12px; border: none; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .82rem; color: #94a3b8; margin-bottom: 16px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.landing-benefits {
  list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 24px;
}
.landing-benefits li {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 18px 18px 44px;
  position: relative; font-size: .92rem; color: #475569;
}
.landing-benefits li::before {
  content: '✓'; position: absolute; left: 16px; top: 18px; color: var(--primary); font-weight: 700;
}
.link-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 28px;
}
.link-grid-item {
  display: block; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  font-size: .88rem; font-weight: 600; color: #334155; background: #fff; transition: all .15s;
}
.link-grid-item:hover { border-color: rgba(249,115,22,.35); color: var(--primary); box-shadow: 0 8px 24px rgba(15,23,42,.06); }

/* Landing page SEO sections */
.landing-prose-inner { max-width: 780px; }
.landing-prose p {
  font-size: 1.02rem; line-height: 1.75; color: #475569; margin-bottom: 1.1em;
}
.landing-prose p:last-child { margin-bottom: 0; }
.landing-prose a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.landing-prose a:hover { color: #ea580c; }
.landing-features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 28px;
}
.landing-feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  transition: box-shadow .15s, border-color .15s;
}
.landing-feature-card:hover { border-color: rgba(249,115,22,.25); box-shadow: 0 10px 28px rgba(15,23,42,.06); }
.landing-feature-icon { font-size: 1.75rem; margin-bottom: 12px; }
.landing-feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.landing-feature-card p { font-size: .9rem; color: #64748b; line-height: 1.6; margin: 0; }
.landing-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 28px;
}
.landing-why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px;
  border-left: 4px solid var(--primary);
}
.landing-why-card h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.landing-why-card p { font-size: .9rem; color: #64748b; line-height: 1.6; margin: 0; }
.landing-faq-list { max-width: 820px; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.landing-faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 0 20px;
}
.landing-faq-item summary {
  cursor: pointer; font-weight: 600; color: #0f172a; padding: 18px 0; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--primary); font-weight: 400; flex-shrink: 0; }
.landing-faq-item[open] summary::after { content: '−'; }
.landing-faq-item p {
  font-size: .92rem; color: #64748b; line-height: 1.65; padding-bottom: 18px; margin: 0;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.related-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 28px;
}
.related-link-card {
  display: flex; flex-direction: column; gap: 6px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: 14px; background: #fff;
  transition: all .15s;
}
.related-link-card:hover {
  border-color: rgba(249,115,22,.35); box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.related-link-label { font-size: .92rem; font-weight: 700; color: #0f172a; }
.related-link-desc { font-size: .82rem; color: #64748b; line-height: 1.5; }
.feature-card-link { text-decoration: none; color: inherit; display: block; transition: all .15s; }
.feature-card-link:hover {
  border-color: rgba(249,115,22,.35); box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transform: translateY(-2px);
}
.feature-card-link h3 { color: #0f172a; }

/* Home page */
.home-hero { padding-bottom: 72px; }
.hero-lead { font-size: 1.12rem; line-height: 1.7; max-width: 680px; }
.home-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 40px; margin-bottom: 8px; position: relative;
}
.home-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 22px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; min-width: 120px;
  box-shadow: 0 4px 16px rgba(15,23,42,.04);
}
.home-stat-value {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 800;
  color: var(--primary); line-height: 1.2;
}
.home-stat-label { font-size: .72rem; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: .4px; }
.home-banner-wrap { position: relative; }
.home-banner-float {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 99px;
  padding: 10px 16px; font-size: .82rem; font-weight: 700; color: #334155;
  box-shadow: 0 12px 32px rgba(15,23,42,.12); white-space: nowrap;
}
.home-banner-float--left { bottom: 24px; left: 24px; }
.home-banner-float--right { top: 24px; right: 24px; }
.home-float-icon { font-size: 1.1rem; }
.home-section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.home-section-sub { margin: 0 auto; text-align: center; }
.home-section-cta { text-align: center; margin-top: 40px; }
.home-solutions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.home-solution-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; text-decoration: none; color: inherit;
  transition: all .2s; position: relative; overflow: hidden;
}
.home-solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0; transition: opacity .2s;
}
.home-solution-card:hover {
  transform: translateY(-4px); border-color: rgba(249,115,22,.3);
  box-shadow: 0 16px 40px rgba(15,23,42,.08);
}
.home-solution-card:hover::before { opacity: 1; }
.home-solution-icon { font-size: 2rem; margin-bottom: 14px; }
.home-solution-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.home-solution-card p { font-size: .9rem; color: #64748b; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.home-solution-cta { font-size: .85rem; font-weight: 700; color: var(--primary); }
.home-showcase-p { font-size: .95rem; color: #64748b; line-height: 1.7; margin-bottom: 14px; max-width: none; }
.home-checklist {
  list-style: none; margin: 20px 0 24px; display: grid; gap: 10px;
}
.home-checklist li {
  font-size: .9rem; color: #475569; padding-left: 28px; position: relative; line-height: 1.5;
}
.home-checklist li::before {
  content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 800;
}
.home-showcase-visual { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(15,23,42,.1); }
.home-steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.home-step-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  position: relative;
}
.home-step-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800;
  line-height: 1; color: rgba(249,115,22,.15); display: block; margin-bottom: 12px;
}
.home-step-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.home-step-card p { font-size: .88rem; color: #64748b; line-height: 1.65; margin-bottom: 14px; }
.home-step-link { font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.home-step-link:hover { text-decoration: underline; }
.home-why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.home-why-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
  text-align: center; transition: box-shadow .2s;
}
.home-why-card:hover { box-shadow: 0 12px 32px rgba(15,23,42,.06); }
.home-why-icon { font-size: 2rem; margin-bottom: 12px; }
.home-why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.home-why-card p { font-size: .88rem; color: #64748b; line-height: 1.6; margin: 0; }
.home-testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.home-testimonial-card {
  background: linear-gradient(145deg, #fff 0%, #fff8f0 100%);
  border: 1px solid rgba(249,115,22,.15); border-radius: 18px; padding: 28px; margin: 0;
}
.home-testimonial-quote {
  font-size: .95rem; color: #334155; line-height: 1.7; font-style: italic; margin-bottom: 20px;
}
.home-testimonial-card footer { display: flex; flex-direction: column; gap: 6px; }
.home-testimonial-card cite { font-style: normal; font-size: .82rem; font-weight: 700; color: #64748b; }
.home-testimonial-link { font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.home-testimonial-link:hover { text-decoration: underline; }
.home-specialties { padding-bottom: 64px; }
.home-faq-list { margin: 0 auto; }
.home-cta-band .btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.home-cta-secondary { border-color: rgba(255,255,255,.5) !important; color: #fff !important; }

/* Contact page */
.contact-hero p { max-width: 640px; }
.contact-reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.contact-reason-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
  transition: box-shadow .2s, transform .2s;
}
.contact-reason-card:hover { box-shadow: 0 12px 32px rgba(15,23,42,.06); transform: translateY(-2px); }
.contact-reason-icon { font-size: 1.75rem; margin-bottom: 12px; }
.contact-reason-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.contact-reason-card p { font-size: .88rem; color: #64748b; line-height: 1.6; margin: 0; }
.contact-main { padding-top: 64px; padding-bottom: 64px; }
.contact-main-grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start;
}
.contact-main-info .contact-info h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; margin-bottom: 24px; }
.contact-login-cards { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-login-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #64748b; margin-bottom: 12px; }
.contact-login-row { display: flex; flex-direction: column; gap: 10px; }
.contact-login-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 12px; background: #fff;
  text-decoration: none; color: inherit; transition: all .15s;
}
.contact-login-card:hover { border-color: rgba(249,115,22,.35); box-shadow: 0 6px 20px rgba(15,23,42,.05); }
.contact-login-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-login-card strong { display: block; font-size: .9rem; color: #0f172a; margin-bottom: 2px; }
.contact-login-card small { font-size: .78rem; color: #64748b; }
.contact-process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.contact-process-step {
  text-align: center; padding: 24px 20px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
}
.contact-process-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(14,165,233,.12));
  color: var(--primary); font-weight: 800; font-size: 1rem; margin-bottom: 14px;
}
.contact-process-step h3 { font-size: .95rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.contact-process-step p { font-size: .85rem; color: #64748b; line-height: 1.6; margin: 0; }
.contact-related { padding-bottom: 64px; }

@media (max-width: 900px) {
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-banner-float { display: none; }
  .home-stats { gap: 8px; }
  .home-stat { min-width: calc(50% - 8px); padding: 12px 14px; }
}

.nav-ctas { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 20px; border-radius: 99px; border: 1.5px solid var(--border);
  font-size: .875rem; font-weight: 600; color: #374151; background: #fff; transition: all .2s;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.btn-login:hover { border-color: var(--primary); color: var(--primary); }
.login-dropdown { position: relative; }
.login-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15,23,42,.12); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s; z-index: 120;
}
.login-dropdown.open .login-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.login-dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
  font-size: .875rem; font-weight: 600; color: #374151; transition: background .15s, color .15s;
}
.login-dropdown-item:hover { background: #fff7ed; color: var(--primary); }
.login-dropdown-item svg { width: 18px; height: 18px; flex-shrink: 0; color: #94a3b8; }
.login-dropdown-item:hover svg { color: var(--primary); }
.login-dropdown-chevron { width: 14px; height: 14px; transition: transform .15s; }
.login-dropdown.open .login-dropdown-chevron { transform: rotate(180deg); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #374151; margin: 5px 0; transition: .2s;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; top: 65px; background: #fff;
  padding: 24px; z-index: 99; border-top: 1px solid var(--border);
  flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.05rem; font-weight: 600; color: #374151; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }

/* Hero */
.hero { padding: 80px 0 64px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(249,115,22,.08), transparent);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff8f0;
  border: 1px solid rgba(249,115,22,.2); border-radius: 99px; padding: 6px 16px;
  font-size: .8rem; font-weight: 600; color: var(--primary); margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -1px; position: relative;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 620px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  padding: 14px 32px; border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 1rem; font-weight: 700; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(249,115,22,.35); transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(249,115,22,.45); }
.btn-outline {
  padding: 14px 32px; border-radius: 99px; background: transparent; color: #374151;
  font-size: 1rem; font-weight: 600; border: 2px solid var(--border); transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.banner-section { margin-top: 56px; position: relative; }
.banner-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(249,115,22,.15), 0 8px 32px rgba(14,165,233,.1);
  border: 1.5px solid rgba(249,115,22,.12);
}
.banner-placeholder {
  min-height: 320px; background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(14,165,233,.12));
  display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .95rem;
  padding: 40px; text-align: center;
}

/* Sections */
.section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-tag {
  display: inline-block; background: linear-gradient(135deg, rgba(249,115,22,.1), rgba(14,165,233,.1));
  color: var(--primary); border-radius: 99px; padding: 5px 16px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 560px; }

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px;
}
.feature-card {
  background: #fff; border-radius: 16px; padding: 28px; border: 1px solid var(--border);
  transition: all .2s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(14,165,233,.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px;
}
.feature-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .875rem; color: var(--muted); }

/* Speciality slider */
.speciality-slider { overflow: hidden; padding: 48px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.speciality-track {
  display: flex; gap: 16px; width: max-content;
  animation: slide-specialities 40s linear infinite;
}
.speciality-track:hover { animation-play-state: paused; }
.speciality-pill {
  flex-shrink: 0; padding: 12px 24px; border-radius: 99px; border: 1.5px solid var(--border);
  font-weight: 600; font-size: .9rem; white-space: nowrap; background: #fff;
}
@keyframes slide-specialities {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact form */
.contact-section { padding: 80px 0; background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-form {
  background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: #374151; }
.form-control {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: .9rem; font-family: inherit; transition: border-color .2s;
}
.form-control:focus { outline: none; border-color: var(--primary); }
textarea.form-control { min-height: 110px; resize: vertical; }
.alert-success {
  background: #dcfce7; color: #166534; border: 1px solid #86efac;
  padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: .9rem;
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.pricing-card {
  background: #fff; border-radius: 20px; padding: 32px 28px; border: 1.5px solid var(--border);
  position: relative; transition: all .2s;
}
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 12px 40px rgba(249,115,22,.12); }
.pricing-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 2rem; font-weight: 800; margin: 16px 0; }
.pricing-card ul { list-style: none; margin: 20px 0; }
.pricing-card li { font-size: .875rem; color: var(--muted); padding: 6px 0; padding-left: 22px; position: relative; }
.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Pricing page enhancements */
.pricing-hero p { max-width: 640px; }
.pricing-billing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.pricing-billing-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
}
.pricing-billing-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-billing-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.pricing-billing-card > p { font-size: .9rem; color: #64748b; line-height: 1.65; margin-bottom: 16px; }
.pricing-billing-points { list-style: none; margin: 0; padding: 0; }
.pricing-billing-points li {
  font-size: .88rem; color: #475569; padding: 8px 0 8px 24px; position: relative; border-top: 1px solid #f1f5f9;
}
.pricing-billing-points li::before {
  content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.pricing-grid--enhanced { margin-top: 32px; align-items: stretch; }
.pricing-card {
  display: flex; flex-direction: column; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .6px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 99px; white-space: nowrap;
}
.pricing-audience {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--primary); margin-bottom: 6px;
}
.pricing-card-desc { font-size: .875rem; color: var(--muted); line-height: 1.55; min-height: 2.8em; }
.pricing-price-note { font-size: .78rem; color: #94a3b8; margin: -8px 0 8px; }
.pricing-card ul { flex: 1; }
.pricing-card-cta { width: 100%; justify-content: center; font-size: .9rem; margin-top: auto; }
.pricing-footnote {
  text-align: center; margin-top: 40px; color: var(--muted); font-size: .9rem; max-width: 560px; margin-left: auto; margin-right: auto;
}
.pricing-footnote a { color: var(--primary); font-weight: 600; }
.pricing-empty {
  text-align: center; padding: 48px 24px; background: var(--bg-soft); border-radius: 16px; color: var(--muted);
}
.pricing-empty a { color: var(--primary); font-weight: 600; }
.pricing-table-wrap { overflow-x: auto; margin-top: 32px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: .88rem; }
.pricing-table thead th { background: var(--bg-soft); font-weight: 800; color: #0f172a; }
.pricing-table tbody th { text-align: left; font-weight: 600; color: #334155; background: #fff; }
.pricing-table tbody tr:last-child th, .pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-check { color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.pricing-dash { color: #cbd5e1; }
.pricing-includes { padding-bottom: 64px; }
.pricing-related { padding-bottom: 64px; }

/* Software split */
.software-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.software-visual {
  border-radius: 20px; min-height: 360px;
  background: linear-gradient(135deg, rgba(249,115,22,.08), rgba(14,165,233,.08));
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  padding: 16px; text-align: center; color: var(--muted); overflow: hidden;
}
.software-visual > img {
  width: 100%; height: auto; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .1);
}
.software-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.software-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .1);
}
.software-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.software-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.software-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.software-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.software-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.software-slider-dot.is-active {
  width: 24px;
  background: var(--primary);
}

/* Legal prose */
.legal-page { padding: 64px 0 96px; }
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h1 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.15rem; margin: 28px 0 12px; color: #1e293b; }
.legal-content p, .legal-content li { font-size: .95rem; color: #475569; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all .2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.06); transform: translateY(-2px); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card p { font-size: .875rem; color: var(--muted); margin-bottom: 16px; }
.blog-date { font-size: .75rem; color: #94a3b8; }
.blog-byline { font-size: .85rem; color: #94a3b8; margin-top: 12px; }
.blog-article { max-width: 760px; }
.blog-article p { font-size: 1rem; color: #475569; margin-bottom: 18px; line-height: 1.75; }

/* Blog — article layout (service-page style) */
.blog-hero-banner {
  position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; color: #fff; text-align: center;
}
.blog-hero-banner--index { min-height: 280px; }
.blog-hero-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.78), rgba(30,41,59,.72));
}
.blog-hero-banner-inner { position: relative; z-index: 1; padding: 56px 0 48px; max-width: 900px; }
.blog-breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
  font-size: .88rem; margin-bottom: 16px; opacity: .92;
}
.blog-breadcrumbs a { color: #fff; text-decoration: none; }
.blog-breadcrumbs a:hover { text-decoration: underline; }
.blog-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin: 0;
}
.blog-hero-subtitle { margin-top: 14px; font-size: 1.05rem; opacity: .9; max-width: 640px; margin-left: auto; margin-right: auto; }
.blog-page-wrap { padding: 0 0 64px; background: #fff; }
.blog-page-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px;
  align-items: start; margin-top: -48px; position: relative; z-index: 2;
}
.blog-featured-figure { margin: 0 0 28px; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,23,42,.1); }
.blog-featured-image { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.blog-meta-bar { font-size: .85rem; color: #94a3b8; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.blog-meta-sep { margin: 0 8px; }
.blog-section { margin-bottom: 36px; }
.blog-section-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.45rem; font-weight: 800;
  color: #0f172a; margin-bottom: 16px; line-height: 1.25;
}
.blog-section-p { font-size: 1rem; color: #475569; line-height: 1.8; margin-bottom: 16px; }
.blog-section-p a,
.blog-icon-list a,
.blog-option-card a,
.blog-section-footnote a,
.blog-faq-item p a {
  color: var(--primary, #f97316);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-section-p a:hover,
.blog-icon-list a:hover,
.blog-option-card a:hover,
.blog-section-footnote a:hover,
.blog-faq-item p a:hover { color: #ea580c; }
.blog-section-footnote { font-size: .92rem; color: #64748b; font-style: italic; margin-top: 16px; }
.blog-icon-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.blog-icon-list li {
  position: relative; padding-left: 36px; font-size: .95rem; color: #475569; line-height: 1.55;
}
.blog-icon-list li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; background: rgba(249,115,22,.12); border-radius: 50%; color: var(--primary);
}
.blog-option-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 8px; }
.blog-option-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px;
}
.blog-option-card h3 { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.blog-option-card p { font-size: .9rem; color: #64748b; line-height: 1.65; margin: 0; }
.blog-faq-block { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.blog-faq-list { display: flex; flex-direction: column; gap: 10px; }
.blog-faq-item { border: 1px solid var(--border); border-radius: 12px; padding: 0 18px; background: #fff; }
.blog-faq-item summary { cursor: pointer; font-weight: 700; color: #0f172a; padding: 16px 0; list-style: none; }
.blog-faq-item summary::-webkit-details-marker { display: none; }
.blog-faq-item p { font-size: .92rem; color: #64748b; line-height: 1.65; padding-bottom: 16px; margin: 0; border-top: 1px solid var(--border); padding-top: 12px; }
.blog-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.blog-sidebar-card {
  background: #fff; border-radius: 16px; padding: 24px 22px;
  box-shadow: 0 20px 50px rgba(15,23,42,.12); border: 1px solid var(--border);
}
.blog-sidebar-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800;
  text-align: center; margin-bottom: 20px; color: #0f172a;
}
.blog-sidebar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; }
.blog-sidebar-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.blog-sidebar-icon { font-size: 1.5rem; line-height: 1; }
.blog-sidebar-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: #334155; line-height: 1.35; }
.blog-sidebar-cta {
  background: linear-gradient(135deg, var(--primary), #ea580c); color: #fff;
  border-radius: 16px; padding: 28px 24px; text-align: center;
  box-shadow: 0 16px 40px rgba(249,115,22,.28);
}
.blog-sidebar-cta h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.blog-sidebar-cta p { font-size: .88rem; opacity: .92; margin-bottom: 18px; line-height: 1.55; }
.blog-sidebar-cta-btn {
  display: inline-block; background: #fff; color: #0f172a; font-weight: 700;
  padding: 12px 24px; border-radius: 99px; text-decoration: none; font-size: .9rem;
}
.blog-sidebar-cta-btn:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.blog-footer-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; padding: 64px 0; text-align: center;
}
.blog-footer-cta-inner { max-width: 640px; margin: 0 auto; }
.blog-footer-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.blog-footer-cta p { opacity: .88; margin-bottom: 24px; line-height: 1.65; }
.blog-archive { padding-top: 48px; }
.blog-archive-note { text-align: center; margin-top: 48px; color: var(--muted); font-size: .9rem; }
.blog-archive-note a { color: var(--primary); font-weight: 600; }
.blog-grid--archive { margin-top: 0; }
.blog-card--archive { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-card-banner {
  display: flex; align-items: flex-end; min-height: 180px; padding: 20px;
  background: linear-gradient(135deg, #1e293b, #334155); background-size: cover; background-position: center;
  text-decoration: none; position: relative; overflow: hidden;
}
.blog-card-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.blog-card-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85), rgba(15,23,42,.25));
}
.blog-card-banner-title {
  position: relative; z-index: 1; color: #fff; font-weight: 800; font-size: 1rem; line-height: 1.35;
}
.blog-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: inherit; text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--primary); text-decoration: none; margin-top: auto; padding-top: 12px; }
.blog-related { padding-top: 64px; }

.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(14,165,233,.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

/* Footer */
.site-footer { padding: 48px 0 32px; border-top: 1px solid var(--border); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand p { font-size: .875rem; color: var(--muted); margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; color: #374151; }
.footer-col a { display: block; font-size: .875rem; color: var(--muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s;
}
.social-links a:hover { border-color: var(--primary); color: var(--primary); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: #94a3b8;
}

.cta-band {
  padding: 72px 0; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff;
}
.cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; margin-bottom: 12px; }
.cta-band p { opacity: .92; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white {
  padding: 14px 32px; border-radius: 99px; background: #fff; color: var(--primary);
  font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
}

.page-hero { padding: 64px 0 48px; text-align: center; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Featured hero visuals */
.page-hero--featured { text-align: left; padding: 56px 0 64px; }
.page-hero-split, .home-hero-split {
  display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr); gap: 48px; align-items: center;
}
.page-hero-copy { max-width: none; }
.page-hero-copy h1 { text-align: left; margin-left: 0; }
.page-hero-copy p { text-align: left; margin-left: 0; max-width: 36rem; }
.page-hero-ctas { justify-content: flex-start !important; margin-top: 24px; }
.featured-visual { margin: 0; width: 100%; }
.featured-visual-img {
  width: 100%; height: auto; display: block; aspect-ratio: 1200 / 630; object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,.15);
  box-shadow: 0 24px 64px rgba(15,23,42,.12), 0 8px 24px rgba(249,115,22,.08);
}
.featured-visual--home .featured-visual-img { border-radius: 24px; }
.home-hero--featured { text-align: left; padding-bottom: 56px; }
.home-hero-copy { max-width: 640px; }
.home-hero-copy h1 { text-align: left; }
.home-hero-copy .hero-lead { text-align: left; margin-left: 0; }
.home-hero-copy .hero-ctas { justify-content: flex-start; }
.home-hero-copy .home-stats { justify-content: flex-start; margin-top: 28px; }

@media (min-width: 1024px) {
  .page-hero-split, .home-hero-split {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 56px;
  }
  .page-hero--featured { padding: 64px 0 72px; }
  .featured-visual-img { min-height: 360px; }
}
.blog-card-image-link { display: block; margin: -28px -28px 20px; overflow: hidden; border-radius: 16px 16px 0 0; }
.blog-card-image { width: 100%; height: auto; display: block; aspect-ratio: 1200 / 630; object-fit: cover; }
.blog-card { overflow: hidden; }

@media (max-width: 900px) {
  .contact-grid, .software-split, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-split, .home-hero-split { grid-template-columns: 1fr; gap: 28px; }
  .page-hero--featured, .home-hero--featured { text-align: center; }
  .page-hero-copy h1, .page-hero-copy p, .home-hero-copy h1, .home-hero-copy .hero-lead { text-align: center; }
  .page-hero-ctas, .home-hero-copy .hero-ctas, .home-hero-copy .home-stats { justify-content: center !important; }
  .blog-page-layout { grid-template-columns: 1fr; margin-top: 0; }
  .blog-sidebar { position: static; order: -1; }
  .blog-sidebar-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
}
