/* HR Buddys website - base stylesheet reused from billbeeanalytics/shippingbuddyweb (same brand tokens as the HR Buddys app: styles/globals.css). HR-Buddys-specific rules are appended at the end. */
:root {
  --primary: #5248f0;
  --primary-dark: #4338ca;
  --primary-light: #7c75f5;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted: #f1f5f9;
  --muted-surface: #f7f9ff;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 24px rgba(82, 72, 240, 0.08);
  --shadow-lg: 0 12px 48px rgba(82, 72, 240, 0.12);
  --font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 4rem;
  --max-width: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-link:hover {
  color: var(--foreground);
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-btn {
  padding: 0.375rem 0.625rem;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  font-family: inherit;
}

.lang-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.lang-btn:hover:not(.active) {
  background: var(--muted);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--foreground);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.625rem 0;
  color: var(--foreground);
  font-weight: 500;
}

@media (min-width: 960px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--background);
  color: var(--foreground);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--muted);
  color: var(--foreground);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-header {
  display: none;
}

@media (min-width: 640px) {
  .btn-header {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, var(--muted-surface) 0%, var(--background) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(82, 72, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(82, 72, 240, 0.1);
  border: 1px solid rgba(82, 72, 240, 0.2);
  border-radius: 999px;
}

.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0 0 1.15rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}

.hero-points {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.975rem;
  line-height: 1.4;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow-lg));
}

/* Stats strip */
.stats-strip {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
}

.stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.stat-label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--muted-surface);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
}

/* Feature cards */
.features-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.section-alt .feature-card {
  background: var(--background);
}

.feature-card:hover {
  border-color: rgba(82, 72, 240, 0.3);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(82, 72, 240, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
}

.feature-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.feature-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

/* Steps */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: 999px;
}

.step-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.step-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

/* Pricing */
.billing-toggle-wrap {
  margin: -1rem 0 2.5rem;
  text-align: center;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.billing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.billing-btn.active {
  background: var(--background);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

.billing-save {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(82, 72, 240, 0.1);
  border-radius: 999px;
}

.billing-btn.active .billing-save {
  color: var(--primary-foreground);
  background: var(--primary);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(82, 72, 240, 0.3);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-flag {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: 999px;
}

.pricing-name {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 800;
}

.pricing-tagline {
  margin: 0 0 1.25rem;
  min-height: 2.6em;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.3;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.375rem;
  line-height: 1;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.pricing-was {
  display: none;
  width: 100%;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.pricing-billing {
  margin: 0.5rem 0 1.25rem;
  min-height: 1.4em;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.billing-yearly {
  display: none;
}

.pricing[data-billing="yearly"] .billing-monthly {
  display: none;
}

.pricing[data-billing="yearly"] .billing-yearly,
.pricing[data-billing="yearly"] .pricing-was {
  display: inline;
}

.pricing[data-billing="yearly"] .pricing-was {
  display: block;
}

.pricing-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-features strong {
  font-weight: 700;
  color: var(--foreground);
}

.pricing-cta {
  width: 100%;
}

.pricing-addons {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-addons {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-addon {
  padding: 1.5rem 1.75rem;
  background: var(--muted-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.pricing-addon-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.pricing-addon-head .feature-title {
  margin: 0;
}

.pricing-addon-price {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.pricing-addon-price strong {
  color: var(--foreground);
}

.pricing-soon {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-note {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-band .section-title {
  color: var(--primary-foreground);
}

.cta-band .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-primary {
  background: var(--background);
  color: var(--primary);
}

.cta-band .btn-primary:hover {
  background: var(--muted);
  color: var(--primary-dark);
}

.cta-contact {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-contact a {
  color: var(--primary-foreground);
  text-decoration: underline;
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  cursor: pointer;
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo-link {
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.9375rem;
  max-width: 20rem;
}

.footer-heading {
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-disclaimer {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Legal pages */
.legal-page {
  padding: 3rem 0 5rem;
  min-height: calc(100vh - var(--header-height));
}

.legal-page .legal-lead {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 40rem;
}

.legal-page .legal-body {
  margin-top: 1rem;
  max-width: 40rem;
  color: var(--foreground);
  line-height: 1.65;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
}

.legal-page p {
  color: var(--muted-foreground);
  max-width: 40rem;
}

.legal-page a {
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 640px) {
  .stats-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-header-left {
  text-align: left;
  margin: 0;
  max-width: 36rem;
}


/* =============================================================================
   HR Buddys additions (everything above is shared with shippingbuddyweb)
   ============================================================================= */

/* Self-hosted Roboto (same family as the app), variable weight */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-variable-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --accent: #ff5a7e;            /* the pink "y" in the HR Buddys logo */
  --accent-soft: #ffe9ee;
}

.logo-word { color: var(--primary); letter-spacing: -0.01em; }
.logo-word .logo-y { color: var(--accent); }
.footer-brand .logo-word { color: #fff; }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { color: var(--primary); }
.nav-mobile .nav-mobile-cta { margin-top: 0.5rem; justify-content: center; }
.hero-title em { font-style: normal; color: var(--primary); }
.kicker { display: inline-block; margin-bottom: 0.75rem; font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); }

/* Split layout: text + illustration */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split-visual img, .split-visual svg { width: 100%; max-width: 28rem; height: auto; margin: 0 auto; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; } .split-reverse .split-visual { order: -1; } }
.split + .features-grid { margin-top: 3rem; }

/* Feature cards with illustration */
.feature-illustration { display: flex; justify-content: center; margin-bottom: 1rem; }
.feature-illustration img { height: 7rem; width: auto; }

/* HR Buddys PLUS */
.plus-intro { text-align: center; max-width: 44rem; margin: 0 auto 2.5rem; }
.plus-intro .section-subtitle { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.plus-decide { margin: 1rem 0 0; font-weight: 700; color: var(--primary); }
.plus-label { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8125rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.plus-pill { padding: 0.15rem 0.6rem; border-radius: 999px; background: var(--accent); color: #fff; }
.plus-grid { display: grid; gap: 1.25rem; }
.plus-card { padding: 1.5rem; background: var(--background); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-xl); display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; align-items: center; }
.plus-card img { width: 5rem; height: 5rem; object-fit: contain; }
.plus-outro { margin-top: 2.5rem; text-align: center; color: var(--muted-foreground); }
.plus-outro p { margin: 0; }
.plus-outro strong { display: block; margin-top: 0.5rem; font-size: 1.125rem; color: var(--foreground); }

/* Steps: 4 columns for HR Buddys */
@media (min-width: 1024px) { .steps-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.steps-outro { margin: 2.5rem 0 0; text-align: center; font-size: 1.0625rem; font-weight: 500; }

/* Audience */
.audience-cards { display: grid; gap: 1rem; margin-top: 1.75rem; }
@media (min-width: 640px) { .audience-cards { grid-template-columns: 1fr 1fr; } }
.audience-card { padding: 1.5rem; border-radius: var(--radius-xl); }
.audience-card-you { background: var(--background); border: 1px solid var(--border); }
.audience-card-we { background: var(--primary); color: var(--primary-foreground); }
.audience-card .label { margin: 0 0 0.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.audience-card .value { margin: 0; font-size: 1.5rem; font-weight: 800; }

/* Promise band */
.promise { padding: 4.5rem 0; text-align: center; color: #fff; background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, var(--primary) 100%); }
.promise .section-title { color: #fff; }
.promise .section-subtitle { color: rgba(255, 255, 255, 0.82); }
.promise-pair { display: grid; gap: 1rem; max-width: 48rem; margin: 2rem auto; }
@media (min-width: 700px) { .promise-pair { grid-template-columns: 1fr 1fr; } }
.promise-card { padding: 1.5rem; font-size: 1.0625rem; font-weight: 600; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-xl); }
.promise-tagline { margin: 0; opacity: 0.85; }
.promise-brand { margin: 0.5rem 0 0; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }

/* Founders */
.founders-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .founders-grid { grid-template-columns: 1fr 1fr; } }
.founder-card { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.25rem; padding: 1.5rem; background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.founder-card img { width: 8.5rem; height: 8.5rem; object-fit: cover; object-position: 50% 14%; border-radius: 50%; border: 4px solid rgba(82, 72, 240, 0.12); }
.founder-name { margin: 0; font-size: 1.25rem; font-weight: 800; }
.founder-role { margin: 0.2rem 0 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.founder-bio { margin: 0; font-size: 0.9375rem; color: var(--muted-foreground); }
.founder-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.875rem; font-size: 0.875rem; font-weight: 600; }
@media (max-width: 520px) { .founder-card { grid-template-columns: 1fr; text-align: center; } .founder-card img { margin: 0 auto; } .founder-links { justify-content: center; } }

/* Pricing: 3 equal plan columns, PLUS service cards */
.pricing.section { padding-top: 1.05rem; }
.pricing .section-header { max-width: 48rem; }
.pricing-manifesto {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--foreground);
}
@media (min-width: 900px) {
  .pricing-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .pricing-grid-3 { grid-template-columns: minmax(0, 1fr); }
}
.pricing-amount.is-text { font-size: 1.5rem; }
.pricing-visual { max-width: 16rem; height: auto; margin: 0 auto 0.6rem; }
.addons { margin-top: 3.5rem; }
.addons-header { text-align: center; max-width: 40rem; margin: 0 auto 1.5rem; }
.addons-header .section-title { font-size: 1.5rem; }
.addons-group { margin-top: 2rem; }
.addons-group-title { margin: 0 0 0.15rem; font-size: 1.0625rem; font-weight: 800; }
.addons-group-sub { margin: 0 0 1rem; font-size: 0.875rem; color: var(--muted-foreground); }
.addons-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addons-grid { grid-template-columns: repeat(4, 1fr); } .addons-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.addon { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem; background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.addon-title { margin: 0; font-size: 1rem; font-weight: 700; }
.addon-price { margin: 0; font-size: 1.125rem; font-weight: 800; color: var(--primary); }
.addon-price small { font-size: 0.8125rem; font-weight: 500; color: var(--muted-foreground); }
.addon-price.is-text { font-size: 1.05rem; }
.addon-or, .addon-plus { display: inline-block; margin: 0 0.35rem; font-size: 0.8125rem; font-weight: 600; color: var(--muted-foreground); }
.addon-meta { margin: 0; font-size: 0.8125rem; font-weight: 600; color: var(--primary); }
.addon-body { margin: 0; flex: 1; font-size: 0.9rem; color: var(--muted-foreground); }
.addon-fineprint { margin: 0; font-size: 0.8125rem; line-height: 1.4; color: var(--muted-foreground); }
.addon-plan-prices { display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 0.75rem; margin-top: 0.25rem; font-size: 0.875rem; }
.addon-plan-prices span { color: var(--muted-foreground); }

/* CTA band extras */
.cta-line { margin: -1rem 0 2rem; font-size: 1.125rem; font-weight: 600; }
.cta-trust { margin-top: 1.25rem; font-size: 0.875rem; opacity: 0.85; }
.cta-visual { max-width: 20rem; margin: 0 auto 2rem; }

/* Footer: 4 columns */
@media (min-width: 900px) { .footer-grid-4 { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 1.5rem; }
.footer-bottom p { margin: 0; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.45); }
.footer-bottom a { color: rgba(255, 255, 255, 0.75); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom-only { margin-top: 0; padding-top: 0; border-top: 0; }

/* Sub pages */
.page { padding: 3rem 0 5rem; min-height: calc(100vh - var(--header-height)); }
.page-header { margin-bottom: 2.5rem; }
.page-header .section-subtitle { max-width: 40rem; }
.page-narrow { max-width: 48rem; }
.page-visual { max-width: 18rem; margin: 0 0 2rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2.5rem; font-weight: 600; }

/* Long-form content (legal pages, release notes) */
.prose { line-height: 1.65; }
.prose h2 { margin: 2.25rem 0 0.75rem; font-size: 1.375rem; font-weight: 800; }
.prose h3 { margin: 1.5rem 0 0.5rem; font-size: 1.125rem; font-weight: 700; }
.prose h4 { margin: 1.25rem 0 0.35rem; font-size: 1rem; font-weight: 700; }
.prose p { margin: 0 0 0.9rem; color: var(--foreground); }
.prose ul, .prose ol { margin: 0 0 1rem 1.25rem; padding: 0; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin: 0.25rem 0; }
.prose blockquote { margin: 1rem 0; padding: 0.75rem 1rem; color: var(--muted-foreground); background: var(--muted-surface); border-left: 4px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; }
.prose hr { margin: 2rem 0; border: 0; border-top: 1px solid var(--border); }
.prose code { padding: 0.1rem 0.35rem; font-size: 0.9em; background: var(--muted); border-radius: 4px; }
.prose table { width: 100%; margin: 1rem 0; border-collapse: collapse; font-size: 0.9375rem; }
.prose th, .prose td { padding: 0.5rem 0.75rem; text-align: left; border: 1px solid var(--border); }
.prose th { background: var(--muted-surface); }
.prose address { font-style: normal; margin-bottom: 0.9rem; }

/* Contact form */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; } }
.form { display: grid; gap: 1rem; padding: 1.75rem; background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.form-row { display: grid; gap: 0.35rem; }
.form-row-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form label { font-size: 0.875rem; font-weight: 600; }
.form input[type="text"], .form input[type="email"], .form textarea, .rn-select select {
  width: 100%; padding: 0.7rem 0.85rem; font: inherit; color: var(--foreground); background: var(--background);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.form input:focus, .form textarea:focus, .rn-select select:focus { outline: 2px solid rgba(82, 72, 240, 0.35); border-color: var(--primary); }
.form textarea { min-height: 9rem; resize: vertical; }
.form-hint { margin: 0; font-size: 0.8125rem; color: var(--muted-foreground); }
.form-status { display: none; padding: 0.85rem 1rem; font-weight: 500; border-radius: var(--radius); }
.form-status.ok { display: block; color: #065f46; background: #ecfdf5; }
.form-status.err { display: block; color: #991b1b; background: #fef2f2; }
.hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.contact-side { display: grid; gap: 1.25rem; align-content: start; }
.info-card { padding: 1.5rem; background: var(--muted-surface); border: 1px solid var(--border); border-radius: var(--radius-xl); }
.info-card h3 { margin: 0 0 0.5rem; font-size: 1.0625rem; font-weight: 700; }
.info-card p { margin: 0; font-size: 0.9375rem; color: var(--muted-foreground); }
.info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 0.3rem 1rem; margin: 0.75rem 0 0; font-size: 0.9375rem; }
.info-card dt { color: var(--muted-foreground); }
.info-card dd { margin: 0; }

/* Release notes */
.rn-toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.rn-select { display: inline-flex; align-items: center; gap: 0.6rem; }
.rn-select label { font-weight: 600; }
.rn-select select { min-width: 13rem; }
.rn-meta { margin: 0; font-size: 0.875rem; color: var(--muted-foreground); }
.rn-content { padding: 2rem; background: var(--background); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.rn-content h1 { margin: 0 0 0.5rem; font-size: 1.75rem; }
.rn-empty { padding: 3rem 1rem; text-align: center; color: var(--muted-foreground); }

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}