/* Agent Concept — 02 Workforce Stylesheet */
/* Geometry & Typography based on AgentOS reference measurements */

:root {
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Geist Mono", monospace;
  
  --color-bg-dark: #1d1d1f;
  --color-bg-darker: #0c0c0e;
  --color-bg-light: #f5f5f5;
  --color-surface-white: #ffffff;
  --color-surface-card: #ffffff;
  
  --color-text-dark: #121214;
  --color-text-muted: #64748b;
  --color-text-light: #f8fafc;
  --color-text-light-muted: #94a3b8;
  
  --color-brand-primary: #5147e6;
  --color-brand-primary-hover: #4338ca;
  --color-brand-secondary: #0ea5e9;
  
  --color-border-light: #e2e8f0;
  --color-border-dark: #27272a;
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  --container-max: 1200px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* Demo Advisory Banner */
.demo-banner {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.8rem;
  border-bottom: 1px solid #1e293b;
  padding: 0.4rem 1rem;
}

.banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-tag {
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.host-info {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #38bdf8;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(29, 29, 31, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text-light);
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--color-brand-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  letter-spacing: -0.02em;
}

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: block;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--color-brand-secondary);
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: white;
  transition: 0.2s ease;
}

.mobile-drawer {
  display: none;
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.8rem;
}

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

.mobile-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-size: 0.95rem;
  padding: 10px 24px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(81, 71, 230, 0.12);
  color: #ffffff;
  border: 1px solid rgba(81, 71, 230, 0.4);
}

.btn-secondary:hover {
  background: rgba(81, 71, 230, 0.24);
  border-color: rgba(81, 71, 230, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-light);
}

.btn-outline:hover {
  background: #e2e8f0;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(171% 75% at 50% 0%, rgb(29, 29, 31) 0%, rgb(12, 12, 14) 100%);
  color: var(--color-text-light);
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #e2e8f0;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.04em;
  max-width: 1000px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: #94a3b8;
  max-width: 760px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Interactive Hero Cockpit Frame (AgentOS Geometry) */
.hero-cockpit {
  width: 100%;
  max-width: 1160px;
  background: #0e1015;
  border: 1px solid #27272a;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  text-align: left;
}

.cockpit-bar {
  background: #14171e;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #27272a;
}

.cockpit-dots {
  display: flex;
  gap: 6px;
}

.dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ef4444; }
.dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; }
.dot-green { width: 10px; height: 10px; border-radius: 50%; background: #10b981; }

.cockpit-title {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: #94a3b8;
}

.cockpit-status {
  font-size: 0.75rem;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cockpit-tabs {
  background: #101319;
  display: flex;
  border-bottom: 1px solid #27272a;
  overflow-x: auto;
}

.cockpit-tab {
  background: none;
  border: none;
  color: #94a3b8;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.cockpit-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.cockpit-tab.active {
  color: #ffffff;
  border-bottom-color: var(--color-brand-primary);
  background: rgba(81, 71, 230, 0.08);
}

.cockpit-pane {
  padding: 24px;
}

.pane-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  background: var(--color-brand-primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.agent-name {
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.agent-focus {
  font-size: 0.8rem;
  color: #94a3b8;
}

.hitl-badge {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.task-card {
  background: #14171f;
  border: 1px solid #232733;
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.task-pending {
  border-color: rgba(245, 158, 11, 0.4);
  background: #18191f;
}

.task-status {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.status-done { color: #10b981; }
.status-review { color: #fbbf24; }
.status-active { color: #38bdf8; }

.task-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.task-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.task-meta {
  font-size: 0.7rem;
  color: #64748b;
  font-family: var(--font-mono);
}

.task-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.btn-hitl-approve {
  background: #10b981;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-hitl-approve:hover {
  background: #059669;
}

.btn-hitl-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  cursor: pointer;
}

.cockpit-footer {
  border-top: 1px solid #232733;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
}

.receipt-tag {
  font-family: var(--font-mono);
  color: #38bdf8;
}

/* Sections Common */
.section {
  padding: 90px 0;
}

.section-tag {
  color: var(--color-brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Integrations Section */
.section-integrations {
  background: #ffffff;
  padding: 40px 0 60px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: center;
}

.integrations-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 24px;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Roles Section */
.section-roles {
  background: var(--color-bg-light);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.role-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.role-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #cbd5e1;
  font-family: var(--font-mono);
}

.role-icon-box {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.role-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.role-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.role-features {
  list-style: none;
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.role-features li::before {
  content: "• ";
  color: var(--color-brand-primary);
  font-weight: bold;
}

/* Comparison Section */
.section-why {
  background: #ffffff;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-col {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.comp-before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.comp-after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.comp-header {
  margin-bottom: 24px;
}

.comp-badge {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 8px;
}

.comp-badge.bad {
  background: #fee2e2;
  color: #dc2626;
}

.comp-badge.good {
  background: #dcfce7;
  color: #16a34a;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.92rem;
  color: #334155;
}

/* Definition Section */
.section-definition {
  background: #0f172a;
  color: #ffffff;
}

.section-definition .section-title {
  color: #ffffff;
}

.section-definition .section-desc {
  color: #94a3b8;
}

.definition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.def-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.def-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.def-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #f8fafc;
}

.def-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Process Section */
.section-process {
  background: var(--color-bg-light);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand-primary);
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Pricing Section */
.section-pricing {
  background: #ffffff;
  border-top: 1px solid var(--color-border-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--color-brand-primary);
  box-shadow: 0 16px 36px rgba(81, 71, 230, 0.12);
  position: relative;
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.tier-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  min-height: 42px;
}

.tier-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.tier-price span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.tier-features {
  list-style: none;
  font-size: 0.88rem;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tier-features li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: bold;
}

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

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
}

.faq-chevron {
  font-size: 1.3rem;
  color: var(--color-brand-primary);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

/* CTA Section */
.section-cta {
  background: #ffffff;
  padding: 100px 0;
}

.cta-box {
  background: #0f172a;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-box p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 36px;
}

.demo-form {
  max-width: 600px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-input, .form-select {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid #334155;
  background: #1e293b;
  color: white;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: #38bdf8;
}

.form-feedback {
  font-size: 0.9rem;
  color: #10b981;
  min-height: 24px;
}

.form-note {
  font-size: 0.78rem;
  color: #64748b;
}

/* Footer */
.site-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 70px 0 24px;
  border-top: 1px solid #1e293b;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.system-status {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
}

.footer-links-group {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .task-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .definition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .comparison-container {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header .btn-sm {
    display: none;
  }
  .cockpit-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: hidden;
  }
  .cockpit-tab {
    padding: 10px 8px;
    font-size: 0.78rem;
    justify-content: center;
    border-bottom: 1px solid #27272a;
    white-space: normal;
    text-align: center;
    gap: 6px;
  }
  .cockpit-tab.active {
    border-bottom: 2px solid var(--color-brand-primary);
  }
  .cockpit-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 16px;
  }
  .cockpit-dots {
    order: 1;
  }
  .cockpit-status {
    order: 1;
    margin-left: auto;
    font-size: 0.7rem;
    white-space: nowrap;
  }
  .cockpit-title {
    order: 2;
    width: 100%;
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .cockpit-pane {
    padding: 16px;
  }
  .pane-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cockpit-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .role-card {
    padding: 24px 20px;
  }
  .comparison-col {
    padding: 24px 20px;
  }
  .def-card {
    padding: 24px 20px;
  }
  .step-card {
    padding: 24px 20px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .faq-answer {
    padding: 0 18px 16px;
    font-size: 0.88rem;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .footer-links-group {
    gap: 32px;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
