:root {
  --accent: #3B82F6;
  --accent-dark: #1D4ED8;
  --accent-light: #EFF6FF;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --border: #E2E8F0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  background: #FFFFFF;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.site-nav .navbar-brand {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -0.3px;
}

.site-nav .navbar-brand span {
  color: #3B82F6;
}

.site-nav .nav-link {
  color: #475569;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  transition: color 0.2s;
}

.site-nav .nav-link:hover {
  color: #3B82F6;
}

.site-nav .nav-link.active {
  color: #3B82F6;
}

.btn-nav-cta {
  background: #3B82F6;
  color: #fff;
  border-radius: 6px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background 0.2s;
}

.btn-nav-cta:hover {
  background: #1D4ED8;
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 60%, #BFDBFE 100%);
  padding: 90px 0 80px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: #DBEAFE;
  color: #1D4ED8;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #3B82F6;
}

.hero .hero-sub {
  font-size: 19px;
  color: #475569;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary-hero {
  background: #3B82F6;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary-hero:hover {
  background: #1D4ED8;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-hero {
  background: transparent;
  color: #1D4ED8;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #3B82F6;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-hero:hover {
  background: #3B82F6;
  color: #fff;
}

.hero-ui-mockup {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(59,130,246,0.2);
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #BFDBFE;
}

.hero-ui-bar {
  background: #1E293B;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-ui-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-ui-dot.red { background: #EF4444; }
.hero-ui-dot.yellow { background: #F59E0B; }
.hero-ui-dot.green { background: #22C55E; }

.hero-ui-body {
  background: #F8FAFC;
  padding: 28px;
  display: flex;
  gap: 20px;
}

.hero-ui-sidebar {
  width: 180px;
  flex-shrink: 0;
}

.hero-ui-nav-item {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  border: 1px solid #E2E8F0;
}

.hero-ui-nav-item.active-nav {
  background: #EFF6FF;
  color: #3B82F6;
  border-color: #BFDBFE;
}

.hero-ui-main {
  flex: 1;
}

.hero-ui-progress-label {
  font-size: 12px;
  color: #475569;
  margin-bottom: 6px;
  font-weight: 500;
}

.hero-ui-progress-bar {
  background: #E2E8F0;
  border-radius: 6px;
  height: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.hero-ui-progress-fill {
  height: 100%;
  border-radius: 6px;
  background: #3B82F6;
}

.hero-ui-card-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.hero-ui-mini-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 14px;
  flex: 1;
  border: 1px solid #E2E8F0;
  text-align: center;
}

.hero-ui-mini-card .num {
  font-size: 22px;
  font-weight: 800;
  color: #3B82F6;
}

.hero-ui-mini-card .lbl {
  font-size: 11px;
  color: #94A3B8;
  margin-top: 2px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: #475569;
  max-width: 580px;
  line-height: 1.6;
}

.features-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(59,130,246,0.12);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: #EFF6FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #3B82F6;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 10px;
}

.feature-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.stats-bar {
  background: #1E293B;
  padding: 48px 0;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
}

.stat-item .stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #3B82F6;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #334155;
  margin: auto;
}

.roi-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.roi-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.roi-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #F1F5F9;
}

.roi-metric:last-child {
  border-bottom: none;
}

.roi-metric-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 18px;
  flex-shrink: 0;
}

.roi-metric-label {
  font-size: 14px;
  color: #475569;
  margin-bottom: 4px;
}

.roi-metric-value {
  font-size: 20px;
  font-weight: 700;
  color: #1E293B;
}

.roi-chart-bar-wrap {
  margin-top: 8px;
}

.roi-chart-bar {
  height: 6px;
  border-radius: 4px;
  background: #3B82F6;
  margin-top: 4px;
}

.integrations-section {
  padding: 70px 0;
  background: #FFFFFF;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.integration-logo-pill {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  transition: border-color 0.2s, color 0.2s;
}

.integration-logo-pill:hover {
  border-color: #3B82F6;
  color: #3B82F6;
}

.cta-banner {
  background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 18px;
  color: #BFDBFE;
  margin-bottom: 32px;
}

.btn-cta-white {
  background: #FFFFFF;
  color: #1D4ED8;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: all 0.2s;
  display: inline-block;
  margin: 6px;
}

.btn-cta-white:hover {
  background: #F0F9FF;
  color: #1D4ED8;
  transform: translateY(-1px);
}

.btn-cta-outline-white {
  background: transparent;
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
  display: inline-block;
  margin: 6px;
}

.btn-cta-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.site-footer {
  background: #0F172A;
  padding: 64px 0 32px;
  color: #94A3B8;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 12px;
}

.footer-brand span {
  color: #3B82F6;
}

.footer-tagline {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #F1F5F9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #64748B;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #3B82F6;
}

.footer-links li.footer-text-item {
  color: #64748B;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  font-size: 13px;
  color: #475569;
}

.footer-bottom-right a {
  color: #475569;
  font-size: 13px;
  margin-left: 16px;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: #3B82F6;
}

.page-header {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  padding: 64px 0 52px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 18px;
  color: #475569;
  max-width: 540px;
  margin: 0 auto;
}

.pricing-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(59,130,246,0.12);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #3B82F6;
  background: #EFF6FF;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #3B82F6;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  color: #3B82F6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 46px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: 14px;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #3B82F6;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-top: auto;
  transition: all 0.2s;
  border: 2px solid #3B82F6;
  color: #3B82F6;
  background: transparent;
}

.btn-pricing:hover {
  background: #3B82F6;
  color: #fff;
}

.pricing-card.featured .btn-pricing {
  background: #3B82F6;
  color: #fff;
  border-color: #3B82F6;
}

.pricing-card.featured .btn-pricing:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
}

.about-section {
  padding: 80px 0;
}

.about-img-placeholder {
  background: #DBEAFE;
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 500;
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 18px;
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.team-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.2s;
  text-align: center;
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.team-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.team-card-body {
  padding: 20px;
}

.team-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 13px;
  color: #3B82F6;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card-bio {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
}

.product-section {
  padding: 80px 0;
}

.product-feature-row {
  padding: 48px 0;
  border-bottom: 1px solid #F1F5F9;
}

.product-feature-row:last-child {
  border-bottom: none;
}

.product-img-placeholder {
  background: #EFF6FF;
  border-radius: 16px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #BFDBFE;
}

.product-img-placeholder i {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
}

.contact-section {
  padding: 80px 0;
}

.contact-card {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #E2E8F0;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: #3B82F6;
}

.form-section {
  background: #FFFFFF;
}

.contact-form .form-control {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1E293B;
  transition: border-color 0.2s;
}

.contact-form .form-control:focus {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  outline: none;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 6px;
}

.btn-submit {
  background: #3B82F6;
  color: #fff;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  width: 100%;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #1D4ED8;
}

.resources-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.resource-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.resource-card-img {
  background: #DBEAFE;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B82F6;
  font-size: 48px;
}

.resource-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-tag {
  display: inline-block;
  background: #EFF6FF;
  color: #1D4ED8;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.resource-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 10px;
  line-height: 1.4;
}

.resource-card-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.resource-meta {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 14px;
}

.btn-resource {
  color: #3B82F6;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.btn-resource:hover {
  gap: 10px;
  color: #1D4ED8;
}

.legal-section {
  padding: 64px 0 80px;
}

.legal-section h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 8px;
}

.legal-section .last-updated {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1E293B;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-section p, .legal-section li {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
}

.legal-section ul {
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  color: #CBD5E1;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #3B82F6;
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: #3B82F6;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: #1D4ED8;
}

.btn-cookie-decline {
  background: transparent;
  color: #94A3B8;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid #334155;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover {
  border-color: #94A3B8;
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero .hero-sub { font-size: 16px; }
  .section-title { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  .hero-ui-body { flex-direction: column; }
  .hero-ui-sidebar { width: 100%; }
  .stat-item .stat-num { font-size: 32px; }
}

/* === Card Uniformity Fix (auto-generated) === */

.feature-card {
  display: flex;
  flex-direction: column;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.contact-card > p {
  flex: 1;
}
.contact-card > a:last-child,
.contact-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.feature-card > p {
  flex: 1;
}
.feature-card > a:last-child,
.feature-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.hero-ui-mini-card > p {
  flex: 1;
}
.hero-ui-mini-card > a:last-child,
.hero-ui-mini-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.pricing-card > p {
  flex: 1;
}
.pricing-card > a:last-child,
.pricing-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.resource-card > p {
  flex: 1;
}
.resource-card > a:last-child,
.resource-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.roi-card > p {
  flex: 1;
}
.roi-card > a:last-child,
.roi-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.team-card > p {
  flex: 1;
}
.team-card > a:last-child,
.team-card > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.contact-card > :last-child {
  margin-top: auto;
}

.team-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility */
input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6b7280;
  opacity: 1;
}
input, textarea, select {
  color: #111827;
  border: 1px solid #d1d5db;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
