/* saas-landing/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;500;600&family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --bg-darker: #030712;
  --bg-dark: #080d1a;
  --bg-card: rgba(13, 20, 38, 0.45);
  --bg-card-hover: rgba(17, 26, 48, 0.65);
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(99, 102, 241, 0.35);
  --border-focus: rgba(99, 102, 241, 0.55);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary: #6366f1;     /* Indigo */
  --secondary: #d946ef;   /* Fuchsia */
  --accent: #14b8a6;      /* Teal */
  --rose: #f43f5e;        /* Rose */
  
  --gradient-rainbow: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  --gradient-card: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.08) 0%, rgba(13, 20, 38, 0.5) 70%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-darker);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(30, 27, 75, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(15, 23, 42, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 100% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
}

p {
  color: var(--text-secondary);
}

/* Header Section */
header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.brand-dot {
  width: 9px;
  height: 9px;
  background: var(--gradient-rainbow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-glow 2s infinite;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

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

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

.nav-links .btn-nav {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: #fff;
  transition: all 0.25s;
}

.nav-links .btn-nav:hover {
  background: #fff;
  color: #000 !important;
  border-color: #fff;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  max-width: 1000px;
  margin: 160px auto 100px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Geist Mono', monospace;
  color: #818cf8;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
}

.hero h1 {
  font-size: 68px;
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  background: linear-gradient(135deg, #6366f1 20%, #a855f7 60%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17.5px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gradient-rainbow);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Sections Base styles */
section {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: #fff;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 60px;
  font-size: 16.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Feature Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(99, 102, 241, 0.05);
}

.feature-icon {
  font-size: 26px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(217, 70, 239, 0.12));
  width: 58px;
  height: 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

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

/* Pricing Section */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.pricing-toggle-label {
  padding: 6px 18px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'Geist Mono', monospace;
  color: #a5b4fc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 34px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card.featured {
  border-color: rgba(99, 102, 241, 0.45);
  background: var(--gradient-card);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card.featured:hover {
  border-color: rgba(99, 102, 241, 0.65);
}

.card.featured::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--gradient-rainbow);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.plan-type {
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  font-family: 'Geist Mono', monospace;
}

.plan-price {
  font-size: 46px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price span {
  font-size: 15.5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.plan-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  min-height: 48px;
  line-height: 1.5;
}

.features-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.features-list li {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  font-size: 15px;
}

.features-list li.disabled {
  color: var(--text-muted);
}

.features-list li.disabled::before {
  content: "✕";
  color: var(--text-muted);
}

.pricing-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.testimonial-user h4 {
  font-size: 15px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 2px;
}

.testimonial-user p {
  font-size: 13px;
  color: var(--text-secondary);
}

.metrics-badge {
  display: inline-block;
  margin-top: 50px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-family: 'Geist Mono', monospace;
}

.metrics-badge span {
  font-weight: 800;
  color: var(--accent);
}

/* Changelog Section */
.timeline {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
  text-align: left;
  padding-left: 36px;
  border-left: 2px dashed rgba(255, 255, 255, 0.1);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--bg-darker);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.timeline-date {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-family: 'Geist Mono', monospace;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.timeline-content h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.timeline-content p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.blog-img {
  height: 190px;
  width: 100%;
}

.blog-body {
  padding: 28px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.1);
  color: #a5b4fc;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Geist Mono', monospace;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.6;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  color: var(--secondary);
}

/* FAQ Section */
.faq {
  max-width: 850px;
  margin: 0 auto 120px;
}

.faq-container {
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 20px 28px;
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.faq-question span {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.25s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out, padding 0.25s ease-out;
  padding: 0 28px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.01);
}

.faq-footer-note {
  margin-top: 45px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

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

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

/* Contact Form */
.contact-card {
  max-width: 580px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.contact-card:hover {
  border-color: var(--border-hover);
}

/* Bottom CTA */
.bottom-cta {
  max-width: 960px;
  margin: 0 auto 120px;
  padding: 70px 48px;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.18) 0%, rgba(13, 20, 38, 0.6) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

footer p {
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
}

/* Signup Wizard Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.modal-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay:not(.hidden) .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  font-size: 26px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.modal-card {
  background: #070b14;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0;
  width: 95%;
  max-width: 960px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(99, 102, 241, 0.05);
  max-height: 95vh;
  overflow: hidden;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 600px;
}

.modal-info-col {
  padding: 48px;
  background: radial-gradient(circle at 0% 0%, #1a153f 0%, #070b14 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.modal-info-col h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.modal-info-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}

.info-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icon {
  font-size: 17px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bullet-text h4 {
  font-size: 14.5px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.bullet-text p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.modal-form-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: #070b14;
  overflow-y: auto;
}

/* Wizard Steps Indicator */
.wizard-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
  margin: 0 auto 10px;
  width: 100%;
}

.step-indicator {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Geist Mono', monospace;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.step-indicator.active {
  background: var(--gradient-rainbow);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.45);
}

.step-indicator.completed {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: var(--border);
  margin: 0 10px;
}

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

.wizard-steps-labels {
  display: flex;
  justify-content: space-between;
  max-width: 350px;
  margin: 0 auto 34px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  width: 100%;
}

.wizard-steps-labels span {
  width: 60px;
  text-align: center;
  font-family: 'Geist Mono', monospace;
}

.wizard-step h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: -0.015em;
}

.input-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.45;
}

.wizard-buttons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.wizard-buttons .btn {
  flex: 1;
}

/* Form group and inputs */
.form-group {
  margin-bottom: 22px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
}

.input-field:focus {
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Subdomain wrapper */
.subdomain-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.subdomain-wrapper:focus-within {
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.subdomain-wrapper .input-field {
  border: none;
  background: transparent !important;
  flex-grow: 1;
  box-shadow: none !important;
  padding-right: 8px;
}

.subdomain-suffix {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  user-select: none;
}

/* Subdomain feedback classes */
.subdomain-feedback {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 500;
}

.feedback-success { color: var(--accent); }
.feedback-error { color: var(--rose); }

.hidden {
  display: none !important;
}

/* Alerts inside modal */
.alert {
  padding: 14px;
  border-radius: 10px;
  font-size: 13.5px;
  margin-bottom: 22px;
  text-align: left;
}

.alert-danger {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
  color: #fecdd3;
}

.alert-success {
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: #99f6e4;
}

/* Waiting spinner */
.waiting-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(99, 102, 241, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Animations */
@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.85; box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
  50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
  100% { transform: scale(0.95); opacity: 0.85; box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

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

/* Media Queries */
@media (max-width: 1024px) {
  header {
    width: 95%;
  }
}

@media (max-width: 768px) {
  header {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(10, 15, 30, 0.9);
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
  }
  
  .hero {
    margin: 60px auto 70px;
  }
  
  .hero h1 {
    font-size: 44px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline {
    padding-left: 24px;
  }
  
  .timeline-item::before {
    left: -31px;
  }
  
  .bottom-cta {
    padding: 50px 24px;
  }
  
  /* Modal responsive stacking */
  .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-info-col {
    display: none; /* Hide marketing info column on tablets and mobile for better UX */
  }
  
  .modal-form-col {
    padding: 34px 24px;
  }
  
  .modal-close {
    top: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .contact-card {
    padding: 28px 20px;
  }
}
