/* ============================================================
   RelayPayroll Marketing — Production Stylesheet
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --brand-teal: #0f766e;
  --brand-teal-hover: #0d9488;
  --brand-teal-light: #f0fdfa;
  --brand-dark: #065f46;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --page-bg: #ffffff;
  --section-alt-bg: #f8fafc;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* --- Base / Typography --- */
html {
  scroll-behavior: smooth;
}

body.mkt-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mkt-body h1,
body.mkt-body h2,
body.mkt-body h3,
body.mkt-body h4,
body.mkt-body h5,
body.mkt-body h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

body.mkt-body p {
  color: var(--text-secondary);
}

body.mkt-body a {
  color: var(--brand-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

body.mkt-body a:hover {
  color: var(--brand-teal-hover);
}

/* --- Utility --- */
.mkt-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.mkt-btn-primary {
  background: var(--brand-teal);
  color: #fff;
}

.mkt-btn-primary:hover {
  background: var(--brand-teal-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.mkt-btn-outline {
  background: transparent;
  color: var(--brand-teal);
  border: 2px solid var(--brand-teal);
}

.mkt-btn-outline:hover {
  background: var(--brand-teal);
  color: #fff;
}

.mkt-btn-white {
  background: #fff;
  color: var(--brand-teal);
}

.mkt-btn-white:hover {
  background: var(--brand-teal-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.mkt-btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mkt-nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-color);
}

.mkt-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.mkt-nav .navbar-brand img {
  height: 32px;
  width: auto;
}

.mkt-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.mkt-nav .nav-link:hover,
.mkt-nav .nav-link.active {
  color: var(--brand-teal);
  background: var(--brand-teal-light);
}

.mkt-nav .nav-cta {
  margin-left: 0.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.mkt-hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fdfa 0%, #ffffff 40%, #f8fafc 100%);
}

.mkt-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mkt-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.mkt-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.mkt-hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-hero .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
}

.mkt-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.mkt-hero .hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.mkt-hero .hero-proof span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.mkt-hero .hero-proof i {
  color: var(--brand-teal);
}

.mkt-hero .hero-image {
  position: relative;
}

.mkt-hero .hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Gradient hero variant (used on inner pages) */
.mkt-hero-gradient {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}

.mkt-hero-gradient h1,
.mkt-hero-gradient h2 {
  color: #fff;
}

.mkt-hero-gradient p {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.mkt-section {
  padding: 5rem 0;
}

.mkt-section-alt {
  background: var(--section-alt-bg);
}

.mkt-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mkt-section-title h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.mkt-section-title p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.mkt-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mkt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.2);
}

.mkt-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.mkt-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.mkt-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.mkt-pricing-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mkt-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mkt-pricing-card.popular {
  border-color: var(--brand-teal);
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.15);
}

.mkt-pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background: var(--brand-teal);
  color: #fff;
  white-space: nowrap;
}

.mkt-pricing-card .plan-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.mkt-pricing-card .plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.mkt-pricing-card .plan-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
}

.mkt-pricing-card .plan-interval {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mkt-pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex-grow: 1;
}

.mkt-pricing-card .plan-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.mkt-pricing-card .plan-features li i {
  color: var(--brand-teal);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.mkt-pricing-card .plan-features li.disabled {
  color: var(--text-muted);
}

.mkt-pricing-card .plan-features li.disabled i {
  color: var(--text-muted);
}

/* Billing toggle */
.mkt-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--section-alt-bg);
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  padding: 0.375rem;
  margin-bottom: 3rem;
}

.mkt-billing-toggle .toggle-option {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-secondary);
  border: none;
  background: transparent;
}

.mkt-billing-toggle .toggle-option.active {
  background: #fff;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.mkt-billing-toggle .toggle-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-teal);
  background: var(--brand-teal-light);
  border-radius: 9999px;
  padding: 0.2rem 0.625rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.mkt-cta-banner {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.mkt-cta-banner h2 {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mkt-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.mkt-footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
  font-size: 0.9rem;
}

.mkt-footer h6 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.mkt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-footer ul li {
  margin-bottom: 0.625rem;
}

.mkt-footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.875rem;
}

.mkt-footer ul li a:hover {
  color: #fff;
}

.mkt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.mkt-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

.mkt-footer-social {
  display: flex;
  gap: 1rem;
}

.mkt-footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  transition: color 0.2s ease;
}

.mkt-footer-social a:hover {
  color: #fff;
}

/* ============================================================
   PAIN POINTS GRID
   ============================================================ */
.mkt-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.mkt-pain-grid .pain-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.mkt-pain-grid .pain-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fef2f2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.mkt-pain-grid .pain-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.mkt-pain-grid .pain-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================================
   MODULE SHOWCASE
   ============================================================ */
.mkt-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mkt-modules .module-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mkt-modules .module-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mkt-modules .module-header {
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mkt-modules .module-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.mkt-modules .module-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.mkt-modules .module-header p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.mkt-modules .module-body {
  padding: 1.5rem 1.75rem;
}

.mkt-modules .module-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-modules .module-body ul li {
  padding: 0.375rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mkt-modules .module-body ul li i {
  color: var(--brand-teal);
  font-size: 0.75rem;
}

/* ============================================================
   COMPLIANCE CALLOUT
   ============================================================ */
.mkt-compliance {
  background: linear-gradient(135deg, var(--brand-teal-light) 0%, #ecfdf5 100%);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.mkt-compliance::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.05);
  pointer-events: none;
}

.mkt-compliance h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.mkt-compliance p {
  color: var(--text-secondary);
  max-width: 640px;
}

.mkt-compliance-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mkt-compliance-items .compliance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.mkt-compliance-items .compliance-item i {
  color: var(--brand-teal);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.mkt-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
}

.mkt-trust .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.mkt-trust .trust-item .trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-teal-light);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.mkt-trust .trust-item span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   INTEGRATION LOGOS BAR
   ============================================================ */
.mkt-integrations {
  padding: 2.5rem 0;
  text-align: center;
}

.mkt-integrations p {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mkt-integrations-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mkt-integrations-logos img {
  height: 32px;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.3s ease;
}

.mkt-integrations-logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.mkt-contact-form .form-control,
.mkt-contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mkt-contact-form .form-control:focus,
.mkt-contact-form .form-select:focus {
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.mkt-contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

/* ============================================================
   ANIMATIONS — fade-in on scroll (CSS only via @keyframes)
   ============================================================ */
@keyframes mktFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mktFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mkt-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mkt-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.mkt-animate-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mkt-animate-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.mkt-animate-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.mkt-animate-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.mkt-animate-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.mkt-animate-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.mkt-animate-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.mkt-animate-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   EMPLOYEE CALCULATOR SLIDER
   ============================================================ */
.mkt-calculator {
  background: var(--section-alt-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.mkt-calculator .range-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.mkt-calculator .range-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.mkt-calculator input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  margin-bottom: 1.5rem;
}

.mkt-calculator input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
  transition: transform 0.15s ease;
}

.mkt-calculator input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.mkt-calculator input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-teal);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}

.mkt-calculator-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mkt-calculator-results .calc-tier {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
}

.mkt-calculator-results .calc-tier .tier-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.mkt-calculator-results .calc-tier .tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 991.98px) {
  .mkt-hero h1 {
    font-size: 2.75rem;
  }

  .mkt-hero .hero-subtitle {
    font-size: 1.125rem;
  }

  .mkt-section {
    padding: 3.5rem 0;
  }

  .mkt-section-title h2 {
    font-size: 2rem;
  }

  .mkt-cta-banner h2 {
    font-size: 1.75rem;
  }

  .mkt-compliance {
    padding: 2rem;
  }
}

@media (max-width: 767.98px) {
  .mkt-hero {
    padding: 4rem 0 3rem;
    text-align: center;
  }

  .mkt-hero h1 {
    font-size: 2.25rem;
  }

  .mkt-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .mkt-hero .hero-actions {
    justify-content: center;
  }

  .mkt-hero .hero-proof {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mkt-section {
    padding: 3rem 0;
  }

  .mkt-section-title h2 {
    font-size: 1.75rem;
  }

  .mkt-pricing-card .plan-price {
    font-size: 2.5rem;
  }

  .mkt-cta-banner {
    padding: 3rem 0;
  }

  .mkt-cta-banner h2 {
    font-size: 1.5rem;
  }

  .mkt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mkt-pain-grid {
    grid-template-columns: 1fr;
  }

  .mkt-modules {
    grid-template-columns: 1fr;
  }

  .mkt-compliance {
    padding: 1.5rem;
  }

  .mkt-compliance-items {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-calculator {
    padding: 1.5rem;
  }

  .mkt-calculator .range-value {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .mkt-hero h1 {
    font-size: 1.875rem;
  }

  .mkt-hero .hero-actions .mkt-btn {
    width: 100%;
  }

  .mkt-compliance-items {
    grid-template-columns: 1fr;
  }

  .mkt-trust {
    gap: 1.5rem;
  }
}
