:root {
  --bg: #001E2B;
  --bg-light: #00111C;
  --surface: #ffffff;
  --surface-elevated: #fafbfc;
  --text-primary: #001E2B;
  --text-secondary: #5C6C75;
  --text-tertiary: #889397;
  --accent: #00ED64;
  --accent-dark: #00C853;
  --accent-light: #E3FCF0;
  --border: #E8EDEE;
  --border-dark: #C1C7C9;
  --shadow-sm: 0 2px 8px rgba(0,30,43,0.04);
  --shadow-md: 0 8px 24px rgba(0,30,43,0.08);
  --shadow-lg: 0 16px 48px rgba(0,30,43,0.12);
}

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

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--surface);
  font-family: "Euclid Circular A", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

a { 
  color: inherit; 
  text-decoration: none;
  transition: all 0.2s ease;
}

.shell { 
  width: min(1280px, 100% - 48px); 
  margin: 0 auto; 
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(0,237,100,0.3), rgba(0,200,83,0.2));
  top: -200px;
  right: -200px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(225deg, rgba(0,30,43,0.15), rgba(0,200,83,0.1));
  bottom: -150px;
  left: -150px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.nav-bar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 4px 12px rgba(0,237,100,0.2);
}

.logo-text {
  background: linear-gradient(135deg, var(--bg), var(--text-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-secondary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  display: flex;
  gap: 4px;
  background: var(--surface-elevated);
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
}

.lang-switch button.active {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,237,100,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.btn-secondary:hover {
  background: var(--surface-elevated);
  border-color: var(--text-secondary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: var(--surface-elevated);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

main {
  position: relative;
  z-index: 1;
}

.hero-section {
  padding: 80px 0 120px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--bg), var(--text-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-trust {
  font-size: 14px;
  color: var(--text-tertiary);
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-visual {
  margin-top: 80px;
  animation: fadeInUp 0.8s ease 0.5s backwards;
}

.dashboard-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.preview-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-elevated);
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-dark);
}

.preview-content {
  padding: 32px;
  display: grid;
  gap: 24px;
}

.preview-stat {
  padding: 20px;
  background: var(--surface-elevated);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-change {
  font-size: 14px;
  color: var(--accent-dark);
  font-weight: 600;
}

.preview-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: 8px;
}

.chart-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: left;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}

.chart-bar {
  flex: 1;
  height: calc(var(--height, 50%) * 1);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: growUp 0.8s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.1s);
  transform-origin: bottom;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.chart-bar:hover {
  opacity: 0.8;
  transform: translateY(-4px);
}

.bar-label {
  position: absolute;
  bottom: -20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.stats-section {
  padding: 60px 0;
  background: var(--surface-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.features-section,
.integrations-section,
.pricing-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

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

.feature-highlighted {
  background: linear-gradient(135deg, var(--accent-light), white);
  border-color: var(--accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-icon::before {
  content: '';
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 4px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.integration-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-sm);
}

.integration-coming {
  border-style: dashed;
}

.integration-logo {
  flex-shrink: 0;
}

.integration-plus {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-tertiary);
}

.integration-info {
  flex: 1;
}

.integration-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.integration-desc {
  font-size: 13px;
  color: var(--text-tertiary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 32px;
  text-align: center;
}

.pricing-tier {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 24px;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
}

.price-period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-secondary);
  position: relative;
  padding-left: 28px;
}

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

.pricing-card .btn {
  width: 100%;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg), var(--bg-light));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="rgba(0,237,100,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.footer {
  padding: 60px 0 32px;
  background: var(--surface-elevated);
  border-top: 1px solid var(--border);
}

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

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

.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

.auth-container {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s ease;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-oauth {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  font-weight: 600;
}

.btn-oauth:hover {
  background: var(--surface-elevated);
  border-color: var(--text-secondary);
  transform: none;
  box-shadow: var(--shadow-sm);
}

.btn-oauth svg {
  flex-shrink: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.form-group input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  background: white;
  font-size: 15px;
  transition: all 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.auth-links {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-links a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

.auth-links span {
  margin: 0 8px;
}

.pricing-page-section {
  padding: 120px 0 60px;
  position: relative;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 40px auto;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
}

.toggle-option {
  padding: 12px 32px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-option:hover {
  color: var(--text-primary);
}

.toggle-option.active {
  background: white;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.toggle-badge {
  background: var(--accent);
  color: white;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0 20px;
  font-weight: 500;
}

.pricing-mxn {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
  font-weight: 500;
}

.pricing-note {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
  margin-top: 32px;
  font-style: italic;
}

.comparison-section {
  padding: 80px 0;
  background: var(--surface);
}

.comparison-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table thead {
  background: var(--surface-elevated);
  border-bottom: 2px solid var(--border);
}

.comparison-table th {
  padding: 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.comparison-table th:first-child {
  width: 35%;
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 16px;
  font-size: 14px;
  color: var(--text-primary);
}

.category-row td {
  background: var(--surface-elevated);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  padding: 12px 16px;
}

.featured-col {
  background: rgba(0, 230, 118, 0.03);
}

.check {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.dash {
  color: var(--text-tertiary);
  font-size: 18px;
}

.cta-row td {
  padding: 24px 16px;
  text-align: center;
  background: var(--surface-elevated);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.comparison-mobile {
  display: none;
}

.comparison-accordion {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.comparison-accordion summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparison-accordion summary::-webkit-details-marker {
  display: none;
}

.comparison-accordion summary:after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

.comparison-accordion[open] summary:after {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}

.comparison-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.comparison-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.comparison-values {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.faq-section {
  padding: 80px 0;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary:after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .comparison-table-wrapper {
    display: none;
  }
  
  .comparison-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .pricing-toggle {
    width: 100%;
  }
  
  .toggle-option {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-section {
    padding: 60px 0;
  }
  
  .faq-section {
    padding: 60px 0;
  }
}

.onboarding-container {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.onboarding-card {
  width: 100%;
  max-width: 800px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s ease;
}

.onboarding-header {
  margin-bottom: 40px;
}

.onboarding-progress {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.progress-step.active {
  opacity: 1;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.progress-step.active .step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.progress-step.active .step-label {
  color: var(--text-primary);
}

.onboarding-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.onboarding-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.onboarding-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  background: white;
  font-size: 15px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.onboarding-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .onboarding-card {
    padding: 32px 24px;
  }

  .onboarding-header h1 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .onboarding-progress {
    flex-direction: column;
    gap: 12px;
  }
}

.form-wrap { 
  width: min(500px, 100%); 
  margin: 26px auto; 
}

.form { 
  background: white; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 32px; 
  box-shadow: var(--shadow-md);
}

label { 
  display: block; 
  margin: 16px 0 8px; 
  color: var(--text-primary); 
  font-size: 14px;
  font-weight: 600;
}

input, select { 
  width: 100%; 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 12px 16px; 
  background: white; 
  font-size: 15px;
  transition: all 0.2s;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

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

.row > * { 
  flex: 1; 
  min-width: 200px;
}

.sep { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  color: var(--text-tertiary); 
  font-size: 13px; 
  margin: 24px 0; 
}

.sep::before, .sep::after { 
  content: ''; 
  height: 1px; 
  flex: 1; 
  background: var(--border); 
}

pre.status { 
  white-space: pre-wrap; 
  background: var(--surface-elevated); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 16px; 
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 16px;
  }
  
  .nav-link {
    display: none;
  }
  
  .hero-section {
    padding: 48px 0 80px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-visual {
    margin-top: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .features-grid,
  .integrations-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .cta-title {
    font-size: 32px;
  }
}
