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

:root {
  /* Eduzia brand — matches logo (#0f766e → #14b8a6) and Eduzia-app teal UI */
  --primary: #0f766e;
  --primary-dark: #0d9488;
  --primary-light: #14b8a6;
  --primary-muted: #ccfbf1;
  --secondary: #134e4a;
  --secondary-dark: #115e59;
  --dark: #1f2937;
  --darker: #111827;
  --slate-800: #1e293b;
  --light-bg: #f8fafc;
  --accent: #f59e0b;
  --text: #111827;
  --text-muted: #6b7280;
  --gradient-hero: linear-gradient(145deg, #1e293b 0%, #0f766e 42%, #0d9488 100%);
  --gradient-brand: linear-gradient(135deg, #1f2937 0%, #0f766e 55%, #14b8a6 100%);
  --gradient-cta: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  --gradient-highlight: linear-gradient(145deg, #1e293b 0%, #0f766e 100%);
  --shadow-sm: 0 2px 8px rgba(15, 118, 110, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 118, 110, 0.12);
  --shadow-lg: 0 10px 40px rgba(15, 118, 110, 0.15);
  --shadow-cta: 0 4px 15px rgba(15, 118, 110, 0.35);
  --radius: 12px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  min-height: 100%;
}

h1,
h2,
h3,
h4,
p,
li {
  overflow-wrap: break-word;
}

body.nav-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-brand);
  z-index: 10001;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  z-index: 1002;
  transition: box-shadow 0.25s ease;
}

.site-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-nav.menu-open {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  position: relative;
  z-index: 1003;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: inherit;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand img {
  height: 40px;
  width: auto;
  max-width: min(168px, 42vw);
  display: block;
  flex-shrink: 0;
}

.brand span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-btn-outline {
  border: 1px solid #d1d5db;
  color: var(--text);
}

.nav-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.nav-btn-primary {
  background: var(--primary);
  color: #fff;
}

.nav-btn-primary:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem 0;
  color: var(--text);
  position: relative;
  flex-shrink: 0;
}

.menu-toggle__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__icon--close {
  display: block;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 23, 42, 0.45);
  cursor: pointer;
}

.mobile-nav-backdrop.is-visible {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--nav-h, 72px);
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  max-width: 100vw;
  background: #fff;
  padding: 0.5rem 1.25rem 2rem;
  z-index: 1001;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    visibility 0.28s ease;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: var(--text);
}

.mobile-nav .nav-btn {
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav .nav-btn-outline {
  margin-top: 1.25rem;
}

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  padding: max(calc(var(--nav-h, 72px) + 2rem), 6.5rem) 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.08' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,112C960,117,1056,139,1152,144C1248,149,1344,139,1392,133.3L1440,128L1440,320L0,320Z'/%3E%3C/svg%3E")
    no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero .lead {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(15, 118, 110, 0.45);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cta-button.blue {
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(19, 78, 74, 0.35);
}

.cta-button.blue:hover {
  background: var(--secondary-dark);
}

.cta-button--block {
  width: 100%;
  display: block;
  text-align: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: max(calc(var(--nav-h, 72px) + 2.5rem), 6.5rem) 1.5rem 3rem;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
}

.page-hero--centered {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.page-hero__inner {
  text-align: center;
  width: 100%;
}

.page-hero__lead {
  margin: 1rem 0 2rem;
}

.page-hero__links {
  margin-top: 1.5rem;
}

.highlight-grid .highlight-content .section-title,
.highlight-grid .highlight-content .competitor-note {
  text-align: left;
}

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

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

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* Value cards (homepage pillars) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.75rem;
}

.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.value-card .proof {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: #fff;
  padding: 2rem;
  padding-top: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card.ai-feature {
  border-top-color: var(--primary-light);
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.feature-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-badge.available {
  background: var(--gradient-cta);
}

.feature-badge.beta {
  background: linear-gradient(135deg, #0d9488, #0f766e);
}

.feature-badge.coming-soon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin-top: 1rem;
}

.feature-list li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.75rem;
}

.pricing-card {
  background: var(--light-bg);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.pricing-card h3 {
  font-size: 1.2rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.75rem 0;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  margin-top: 2rem;
  font-size: 0.95rem;
}

.pricing-note a {
  color: var(--primary);
}

/* Stats */
.stats-section {
  padding: 3.5rem 1.5rem;
  background: var(--gradient-cta);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* FAQ */
.section-faq {
  background: var(--light-bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header .section-subtitle {
  margin-bottom: 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.is-open {
  background: linear-gradient(90deg, var(--primary-muted) 0%, #fff 12%);
}

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(15, 118, 110, 0.04);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.faq-trigger__text {
  flex: 1;
  min-width: 0;
}

.faq-trigger__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.25s ease;
}

.faq-trigger__icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-trigger__icon {
  background: var(--primary);
}

.faq-item.is-open .faq-trigger__icon::after {
  border-color: #fff;
  transform: rotate(-135deg) translate(-1px, -1px);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel__inner {
  overflow: hidden;
}

.faq-panel__content {
  padding: 0 1.35rem 1.25rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-panel__content p {
  margin: 0 0 0.75rem;
}

.faq-panel__content p:last-child {
  margin-bottom: 0;
}

.faq-panel__content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.faq-panel__content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.faq-panel__content ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.faq-panel__content li {
  margin-bottom: 0.35rem;
}

.faq-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.faq-footer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.faq-footer a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel,
  .faq-trigger__icon,
  .faq-trigger__icon::after {
    transition: none;
  }
}

/* Legacy aliases (if any page still uses old markup) */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

/* CTA band */
.cta-section {
  padding: 4.5rem 1.5rem;
  background: var(--gradient-brand);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Highlight */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2.5rem;
  align-items: start;
}

.highlight-card {
  background: var(--gradient-highlight);
  padding: 2rem;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.highlight-card p {
  margin-bottom: 0.5rem;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  color: var(--primary);
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Prose (about, legal) */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.prose ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.site-footer p {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary-dark);
}

.competitor-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.compare-table th {
  background: var(--light-bg);
  font-weight: 700;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table .yes {
  color: var(--primary-dark);
  font-weight: 700;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.role-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.25rem;
}

.role-card h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.role-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.home-teaser {
  text-align: center;
  margin-top: 2rem;
}

.nav-links a.active {
  color: var(--primary);
}

/* —— Responsive —— */

@media (max-width: 1024px) {
  .nav-desktop-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand img {
    height: 36px;
    width: auto;
    max-width: min(168px, 62vw);
  }

  .hero::after {
    display: none;
  }
}

@media (min-width: 1025px) {
  .mobile-nav,
  .mobile-nav.open,
  .mobile-nav-backdrop,
  .mobile-nav-backdrop.is-visible {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

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

  .highlight-grid .highlight-content .section-title,
  .highlight-grid .highlight-content .competitor-note {
    text-align: center;
  }

  .highlight-grid .highlight-content .competitor-note {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .page-hero {
    padding: max(calc(var(--nav-h, 72px) + 1.75rem), 5.75rem) 1rem 2.5rem;
  }

  .hero {
    min-height: auto;
    padding: max(calc(var(--nav-h, 72px) + 1.25rem), 5.5rem) 1rem 3rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-cta-row .cta-button,
  .cta-buttons .cta-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-cta-row,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .value-grid,
  .features-grid,
  .pricing-grid,
  .steps-grid,
  .role-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .value-card,
  .feature-card,
  .pricing-card,
  .contact-form {
    padding: 1.5rem;
  }

  .pricing-card .cta-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.25rem !important;
  }

  .pricing-price {
    font-size: 1.75rem;
  }

  .stat-item h2 {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .faq-trigger {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    align-items: flex-start;
  }

  .faq-trigger__text {
    overflow-wrap: anywhere;
  }

  .faq-panel__content {
    padding: 0 1.1rem 1.1rem;
    font-size: 0.9rem;
  }

  .compare-table {
    min-width: 36rem;
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.65rem 0.5rem;
  }

  .compare-table-wrap {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-bottom: 0.25rem;
  }

  .compare-table-hint {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: -1rem 0 1.25rem;
  }

  .footer-links {
    gap: 0.75rem 1.25rem;
  }

  .site-footer {
    padding: 2.5rem 1rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .stats-section {
    padding: 2.5rem 1rem;
  }

  .feature-badge {
    font-size: 0.65rem;
    left: 12px;
  }

  .highlight-card {
    padding: 1.5rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .nav-actions.mobile-only {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-nav .nav-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    max-width: min(140px, 52vw);
    height: 32px;
  }

  .nav-inner {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}

@media (min-width: 769px) {
  .compare-table-hint {
    display: none;
  }
}

@supports (padding: max(0px)) {
  .nav-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .site-footer {
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
  }
}
