:root {
  --color-primary: #1456b8;
  --color-primary-dark: #0d3f85;
  --color-accent: #1fb4a2;
  --color-bg: #ffffff;
  --color-bg-light: #f5f7fb;
  --color-text: #222631;
  --color-text-muted: #6c7280;
  --radius-card: 18px;
  --shadow-soft: 0 14px 40px rgba(9, 30, 66, 0.08);
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Utility */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

.section-light {
  background-color: var(--color-bg-light);
}

.section-title {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.section-intro {
  margin: 0 0 32px;
  max-width: 640px;
  color: var(--color-text-muted);
}

.accent {
  color: var(--color-primary);
}

/* Buttons */

/* Fix the Book a Discovery Call button inside the HEADER */
.site-header .btn-primary {
  padding: 6px 16px !important;
  font-size: 0.85rem !important;
  line-height: 1 !important;
  border-radius: 999px;
  color: #fff !important;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.1
}

.btn-primary,
.btn-primary:visited {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 86, 184, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(20, 86, 184, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: rgba(20, 86, 184, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: rgba(20, 86, 184, 0.06);
}

.btn-light {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn-light:hover {
  background-color: #f0f4ff;
}

/* Header & Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  max-height: 48px;
  width: auto;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 12px;
}

/* Dropdown */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-icon {
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 40;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.92rem;
  color: var(--color-text);
}

.nav-dropdown-menu li a:hover {
  background-color: var(--color-bg-light);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #111827;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-toggle-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
  padding: 72px 0 56px;
  background: radial-gradient(circle at top left, #e2edff 0, transparent 50%),
              radial-gradient(circle at bottom right, #e4fbf7 0, transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 20px;
  max-width: 560px;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-trust {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: -22px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.8rem;
  box-shadow: 0 10px 26px rgba(15, 76, 129, 0.5);
}

.hero-badge span {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Who we work with */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-card {
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  font-size: 0.9rem;
}

/* Cards grid */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.card-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 0;
  color: var(--color-accent);
}

.card-link {
  margin-top: auto;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}

/* Two-column section */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Icon list */

.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.icon-list li {
  margin-bottom: 18px;
}

.icon-list h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.icon-list p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* Stats panel */

.stats-panel {
  background: linear-gradient(145deg, #0f3c86, #1fb4a2);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  color: #fff;
  display: grid;
  gap: 18px;
}

.stat span {
  display: block;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.stat p {
  font-size: 0.9rem;
  margin: 4px 0 0;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-card);
  background-color: #fff;
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: rgba(20, 86, 184, 0.08);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Testimonials */

.testimonial-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}

.testimonial-text {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.testimonial-author {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.logo-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Blogs */

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.link-inline {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}

.blog-card .badge {
  display: inline-block;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(20, 86, 184, 0.08);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 4px 0 0;
}

/* Final CTA */

.section-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), #1f2937);
  color: #fff;
}

.section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-cta h2 {
  margin: 0 0 6px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.5rem;
}

.section-cta p {
  margin: 0;
  color: #e5e7eb;
}

/* Footer */

.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding-top: 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 32px;
  padding-bottom: 18px;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-col a:hover {
  color: #e5e7eb;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #4b5563;
  color: #e5e7eb;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #111827;
  text-align: center;
  padding: 10px 16px 16px;
  font-size: 0.8rem;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 64px;
  }

  .stats-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 12px 16px 16px;
    gap: 10px;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 4px 0 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 6px;
  }

  .nav-dropdown-menu.dropdown-open {
    display: block;
  }

  .cards-grid,
  .cards-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

}

/* ===== About Page Specific Styles ===== */

.page-hero {
  padding: 72px 0 40px;
  background: radial-gradient(circle at top left, #e2edff 0, transparent 55%),
              radial-gradient(circle at bottom right, #e4fbf7 0, transparent 60%);
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 4px;
}

.page-hero h1 {
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2.1rem;
  margin: 0 0 8px;
}

.page-hero-subtitle {
  margin: 0;
  max-width: 720px;
  color: var(--color-text-muted);
}

/* Story / highlight */

.about-story p:last-child {
  margin-bottom: 0;
}

.highlight-box {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.highlight-box h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.highlight-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Grid-3 cards */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.info-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.info-card ul {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* List grid for delivery teams */

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.list-block {
  background-color: #fff;
  border-radius: var(--radius-card);
  padding: 18px 20px 20px;
  box-shadow: var(--shadow-soft);
}

.list-block h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.list-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Leadership quote */

.quote-block {
  max-width: 840px;
  margin: 0 auto;
}

.quote-block p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.quote-block blockquote {
  margin: 20px 0 0;
  padding: 16px 18px 14px;
  border-left: 3px solid var(--color-primary);
  background-color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
}

.quote-block blockquote span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Responsive tweaks for About page */

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .list-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 64px 0 30px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== Services & RPO Page Specific Styles ===== */

/* Slightly stronger gradient hero for services/RPO */
.services-hero {
  background: radial-gradient(circle at top left, #e2edff 0, transparent 55%),
              radial-gradient(circle at top right, #dbeafe 0, transparent 55%),
              radial-gradient(circle at bottom right, #e4fbf7 0, transparent 60%);
}

/* Service cards & icons */

.service-cards-grid {
  align-items: stretch;
}

.service-card {
  position: relative;
  padding-top: 26px;
}

.service-icon-circle {
  position: absolute;
  top: -18px;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #dbeafe 40%, #1456b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.4);
}

/* Gradient border effect on some cards */

.gradient-border-card {
  position: relative;
  background-clip: padding-box;
}

.gradient-border-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(20, 86, 184, 0.5), rgba(31, 180, 162, 0.4));
  z-index: -1;
}

/* Comparison table */

.comparison-table {
  border-radius: 18px;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font-size: 0.9rem;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
}

.comparison-header {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}

.comparison-cell {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.comparison-header .comparison-cell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison-label {
  background-color: #f9fafb;
  font-weight: 600;
}

/* Mini list (used in RPO page) */

.mini-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mini-list li {
  margin-bottom: 4px;
}

/* RPO capabilities grid tweak */

.rpo-capabilities-grid .list-block {
  min-height: 0;
}

/* Responsive tweaks for services & RPO */

@media (max-width: 960px) {
  .comparison-header,
  .comparison-row {
    grid-template-columns: 0.9fr repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-icon-circle {
    left: 18px;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-header .comparison-cell:first-child {
    display: none;
  }

  .comparison-row .comparison-label {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
  }
}


/* ===== Hard override for Contact form layout ===== */

.contact-form-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 24px 26px 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Make every field inside the contact card full-width and nicely styled */
.contact-form-card .form-row {
  width: 100%;
  margin-bottom: 12px;
}

.contact-form-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text, #111827);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  box-sizing: border-box;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 10px;
  border: 1px solid #d4d7dd;
  padding: 9px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #f9fafb;
  outline: none;
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 120px;
}

/* Focus */
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--color-primary, #1456b8);
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(20, 86, 184, 0.18);
}


.contact-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info-block {
  flex: 1 1 260px;
}

.contact-form-card {
  flex: 1.2 1 320px;
}

/* ===== Honeypot field (anti-spam) ===== */

.hp-wrapper {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Just in case, hide the label/input visually even if layout changes */
.hp-wrapper label,
.hp-wrapper input {
  font-size: 0;
  height: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

/* Button alignment */
.contact-form-card .contact-submit {
  margin-top: 6px;
  padding-inline: 26px;
  align-self: flex-start;
}

.blog-article {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.blog-article h1,
.blog-article h2,
.blog-article h3 {
  color: var(--color-text);
  margin-top: 24px;
  margin-bottom: 8px;
}

.blog-article p {
  margin: 0 0 14px;
}

.blog-article ul {
  margin: 0 0 16px 20px;
  padding-left: 18px;
}

.blog-article li {
  margin-bottom: 6px;
}
