/* SABP ERP - Premium Dark Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --background: #121212;
  --foreground: #fafafa;
  --card: #171717;
  --card-foreground: #fafafa;
  --border: #292929;
  --primary: #3b82f6;
  --primary-foreground: #fafafa;
  --secondary: #262626;
  --secondary-foreground: #fafafa;
  --muted: #262626;
  --muted-foreground: #a6a6a6;
  --accent: #1f1f1f;
  --accent-foreground: #fafafa;
  --destructive: #b91c1c;
  --radius: 0.5rem;
  --green-500: #22c55e;
  --yellow-500: #eab308;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

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

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

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

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Navigation - Glassmorphism Style */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: transparent;
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0.5rem 2rem;
  }
}

.nav-logo {
  height: 3rem;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

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

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

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--muted-foreground);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--foreground);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(255,255,255,0.2);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.badge-primary {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary);
  border-color: rgba(59, 130, 246, 0.3);
}

.badge-green {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-500);
  border-color: rgba(34, 197, 94, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.5rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  filter: blur(40px);
  opacity: 0.5;
}

.hero-image img {
  position: relative;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

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

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.feature-card {
  padding: 2rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* ERP Journey CTA Section */
.erp-journey-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
}

.erp-journey-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .erp-journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

.erp-journey-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .erp-journey-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .erp-journey-content h2 {
    font-size: 2.75rem;
  }
}

.erp-journey-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .erp-journey-content p {
    font-size: 1.125rem;
  }
}

.erp-journey-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.erp-journey-dashboards {
  position: relative;
  z-index: 1;
  min-height: 400px;
}

.dashboard-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.dashboard-card img {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-card-1 {
  width: 55%;
  top: 0;
  left: 0;
  z-index: 3;
}

.dashboard-card-2 {
  width: 50%;
  top: 10%;
  right: 0;
  z-index: 2;
}

.dashboard-card-3 {
  width: 90%;
  bottom: 0;
  left: 5%;
  z-index: 1;
}

@media (max-width: 767px) {
  .erp-journey-dashboards {
    min-height: 300px;
  }
  
  .dashboard-card-1 {
    width: 60%;
  }
  
  .dashboard-card-2 {
    width: 55%;
  }
  
  .dashboard-card-3 {
    width: 95%;
    left: 2.5%;
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section .hero-bg {
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent, transparent);
}

.pricing-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--foreground);
}

.toggle-switch {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  background: var(--secondary);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-thumb {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  pointer-events: none;
}

.toggle-switch.active .toggle-thumb {
  transform: translateX(1.25rem);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

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

@media (min-width: 1024px) {
  .pricing-grid {
    gap: 2rem;
  }
}

.pricing-card-wrapper {
  position: relative;
}

.pricing-card-wrapper.popular-wrapper {
  z-index: 10;
}

@media (min-width: 768px) {
  .pricing-card-wrapper.popular-wrapper {
    transform: scale(1.05);
  }
}

.popular-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(32px);
  border-radius: 1rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  pointer-events: none;
}

.pricing-card-wrapper.popular-wrapper:hover .popular-glow {
  opacity: 0.7;
}

.pricing-card {
  padding: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-card.popular {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 768px) {
  .pricing-card .price {
    font-size: 3rem;
  }
}

.pricing-card .price-period {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.pricing-card .yearly-total {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.pricing-cta {
  display: block;
  margin-bottom: 2rem;
}

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

.pricing-features {
  flex: 1;
}

.pricing-features .features-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
}

.pricing-features li span {
  flex: 1;
}

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

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

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

.faq-question svg {
  transition: transform 0.2s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted-foreground);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

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

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

.footer-brand img {
  height: 4rem;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 20rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: var(--muted-foreground);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: var(--foreground);
}

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

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

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

/* Login/Signup Specific */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.auth-page .hero-bg {
  position: absolute;
  inset: 0;
}

.auth-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
}

.auth-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo img {
  height: 4rem;
  margin: 0 auto;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.auth-logo .glow {
  position: absolute;
  inset: 0;
  background: rgba(59, 130, 246, 0.4);
  filter: blur(24px);
  border-radius: 50%;
  transform: scale(1.5);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--muted-foreground);
}

.auth-card {
  padding: 2rem;
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.1);
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-weight: 500;
  transition: all 0.2s;
}

.oauth-btn:hover {
  background: var(--accent);
  border-color: var(--muted-foreground);
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.trust-indicators .dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--green-500);
  border-radius: 50%;
}

/* Signup Wizard */
.signup-wizard {
  max-width: 56rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  transition: all 0.3s;
}

.step-circle.completed {
  background: var(--primary);
  color: var(--primary-foreground);
}

.step-circle.active {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.3);
}

.step-circle.inactive {
  background: var(--muted);
  color: var(--muted-foreground);
}

.step-line {
  width: 4rem;
  height: 0.25rem;
  border-radius: 9999px;
  transition: background 0.3s;
}

.step-line.completed {
  background: var(--primary);
}

.step-line.inactive {
  background: var(--muted);
}

/* Plan Cards - Step 2 */
.plan-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .plan-card.popular {
    margin-top: -1rem;
    margin-bottom: 1rem;
  }
}

.plan-card {
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.plan-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.plan-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.3s;
}

.plan-icon.selected {
  background: var(--primary);
  color: var(--primary-foreground);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.plan-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
}

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

.price-yearly {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  padding: 0.375rem 0;
}

.plan-features .check-icon {
  flex-shrink: 0;
  color: var(--muted-foreground);
}

.plan-features .check-icon.selected {
  color: var(--primary);
}

.plan-select-btn {
  margin-top: 1rem;
  width: 100%;
}

/* Confirmation Step */
.confirmation-card {
  max-width: 32rem;
  margin: 0 auto;
}

.trial-banner {
  text-align: center;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.trial-banner h3 {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
}

.trial-banner p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.plan-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--secondary);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.plan-summary-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  color: var(--primary);
}

.account-details {
  margin-bottom: 1.5rem;
}

.account-details h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.account-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.875rem;
}

.account-details .detail-label {
  color: var(--muted-foreground);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.benefit-item svg {
  flex-shrink: 0;
}

/* CTA Button - Modern Gradient */
.cta-button {
  position: relative;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button .shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s;
}

.cta-button:hover .shimmer {
  transform: translateX(100%);
}

.cta-button .btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-button .arrow {
  animation: bounce-x 1.5s ease-in-out infinite;
}

@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Loading Spinner */
.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Animations */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Password Strength */
.password-strength {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.strength-bar {
  flex: 1;
  height: 0.25rem;
  background: var(--muted);
  border-radius: 9999px;
  transition: background 0.3s;
}

.strength-bar.weak { background: #ef4444; }
.strength-bar.medium { background: #eab308; }
.strength-bar.strong { background: #22c55e; }

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox svg {
  opacity: 0;
  color: white;
  width: 0.875rem;
  height: 0.875rem;
}

.checkbox.checked svg {
  opacity: 1;
}

/* Capabilities Grid */
.capabilities-section {
  background: rgba(23, 23, 23, 0.5);
}

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

@media (min-width: 768px) {
  .capabilities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

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

.capability-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.capability-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.capability-card p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Showcase Section */
.showcase-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.showcase-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .showcase-text h2 {
    font-size: 2.5rem;
  }
}

.showcase-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.showcase-image {
  position: relative;
}

.showcase-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 1rem;
  filter: blur(32px);
  opacity: 0.5;
}

.showcase-image img {
  position: relative;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Hide/Show Elements */
.hidden { display: none !important; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.toast {
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease;
  margin-top: 0.5rem;
}

.toast.success {
  border-color: var(--green-500);
}

.toast.error {
  border-color: var(--destructive);
}

.toast h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Styles */
.contact-hero {
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 10rem 2rem 8rem;
  }
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-hero h1 {
    font-size: 3.75rem;
  }
}

.contact-hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.contact-container {
  max-width: 72rem;
}

.contact-cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-card {
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  transition: background 0.3s;
}

.contact-card:hover .contact-icon-wrapper {
  background: rgba(59, 130, 246, 0.2);
}

.contact-card-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-card-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.contact-card-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.contact-card-link:hover {
  color: rgba(59, 130, 246, 0.8);
}

.contact-card-location {
  color: var(--primary);
  font-weight: 500;
}

.contact-form-card {
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 3rem;
  }
}

.contact-form-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-form-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.glass-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

textarea.glass-input {
  resize: none;
}

/* Thank You Page */
.thank-you-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
}

.thank-you-content {
  text-align: center;
  max-width: 40rem;
  position: relative;
  z-index: 1;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  color: var(--primary);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
  }
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .thank-you-content h1 {
    font-size: 4rem;
  }
}

.thank-you-content h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.thank-you-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .thank-you-details {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.detail-item svg {
  color: var(--primary);
}

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

/* FAQ Section */
.faq-section {
  background: rgba(38, 38, 38, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.faq-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.faq-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* CTA Section */
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

/* Contact Footer */
.contact-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  max-width: 24rem;
}

.glow {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

/* Legal Pages (Terms, Privacy, Cookies) */
.legal-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .legal-hero {
    padding: 10rem 2rem 5rem;
  }
}

.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .legal-hero h1 {
    font-size: 3rem;
  }
}

.legal-hero p {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.legal-container {
  max-width: 48rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.legal-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  transition: color 0.2s;
}

.legal-content a:hover {
  color: rgba(59, 130, 246, 0.8);
}

/* About Page */
.about-hero {
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 10rem 2rem 6rem;
  }
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-hero h1 {
    font-size: 3.75rem;
  }
}

.about-hero p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}

.about-container {
  max-width: 72rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

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

.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.story-section {
  background: rgba(38, 38, 38, 0.2);
}

.story-content {
  max-width: 48rem;
  margin: 0 auto;
}

.story-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.value-card {
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.value-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
