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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eef2f6;
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: #0f172a;
}

.logo-icon {
  color: #3b82f6;
  font-size: 1.7rem;
}

.logo-highlight {
  color: #3b82f6;
}

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

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #2563eb;
}

.btn-outline-sm {
  padding: 8px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.btn-primary-sm {
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary-sm:hover {
  background: #1d4ed8;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px;
  gap: 16px;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #1e293b;
}

/* Hero */
.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
}

.badge {
  background: #e0f2fe;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: #475569;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  transition: 0.2s;
}

.btn-secondary:hover {
  background: #f8fafc;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stats div {
  font-weight: 500;
  color: #475569;
}

.hero-stats span {
  font-weight: 800;
  font-size: 1.4rem;
  color: #0f172a;
  display: block;
}

.hero-image {
  flex: 1;
  background: linear-gradient(145deg, #f1f5f9, #ffffff);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
}

.dashboard-mock {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mock-bar {
  background: #3b82f6;
  height: 12px;
  width: 85%;
  border-radius: 20px;
  margin: 12px 0;
}

.mock-bar.short {
  width: 58%;
  background: #94a3b8;
}

.mock-card {
  background: #eef2ff;
  padding: 12px;
  border-radius: 16px;
  margin-top: 20px;
  font-weight: 500;
}

/* Features */
.features {
  padding: 80px 0;
  background: #fafcff;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  transition: all 0.2s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #cbdffc;
}

.feature-icon {
  font-size: 2.4rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* How It Works */
.howitworks {
  padding: 80px 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: white;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 16px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.excel-highlight {
  background: #fef9e3;
  border-left: 4px solid #f59e0b;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.excel-highlight i {
  font-size: 2rem;
  color: #f59e0b;
}

/* Pricing Preview */
.pricing-preview {
  padding: 80px 0;
  background: #f8fafc;
}

.preview-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.preview-card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  position: relative;
}

.preview-card.popular {
  border: 2px solid #2563eb;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
}

.popular-badge {
  background: #2563eb;
  color: white;
  padding: 4px 12px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.preview-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.preview-card hr {
  margin: 20px 0;
  border-color: #e2e8f0;
}

.preview-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.preview-card ul li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-card ul li i {
  color: #10b981;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #475569;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 32px;
  border-radius: 24px;
}

.testimonial-card i {
  color: #2563eb;
  font-size: 1.8rem;
  opacity: 0.5;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
}

/* CTA */
.cta-section {
  padding: 60px 20px;
}

.cta-card {
  background: #0f172a;
  border-radius: 48px;
  padding: 56px 32px;
  text-align: center;
  color: white;
}

.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-card p {
  margin-bottom: 32px;
  opacity: 0.9;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #f8fafc;
  padding: 56px 0 24px;
  border-top: 1px solid #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-brand i {
  font-size: 1.8rem;
  color: #2563eb;
  margin-bottom: 12px;
}

.footer-links h4 {
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #475569;
  margin: 10px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

/* Auth pages */
.auth-page {
  background: linear-gradient(145deg, #f1f5f9, #ffffff);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  width: 100%;
  max-width: 480px;
  margin: 32px;
}

.auth-card {
  background: white;
  border-radius: 32px;
  padding: 40px 32px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

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

.auth-logo {
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  color: #0f172a;
  display: inline-block;
  margin-bottom: 24px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.input-icon {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 48px;
  padding: 0 16px;
  background: white;
}

.input-icon i {
  color: #94a3b8;
}

.input-icon input,
.input-icon select {
  width: 100%;
  padding: 14px 12px;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
}

.input-icon select {
  cursor: pointer;
}

.textarea-icon {
  display: flex;
  align-items: flex-start;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 16px;
  background: white;
  gap: 12px;
}

.textarea-icon i {
  color: #94a3b8;
  margin-top: 4px;
}

.textarea-icon textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-options {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-auth {
  background: #2563eb;
  width: 100%;
  border: none;
  padding: 14px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.btn-auth:hover {
  background: #1d4ed8;
}

.auth-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
}

.demo-note {
  margin-top: 24px;
  font-size: 0.8rem;
  text-align: center;
  background: #f1f5f9;
  padding: 8px;
  border-radius: 60px;
  color: #334155;
}

.terms {
  margin: 20px 0;
}

/* Pricing Page Specific */
.pricing-header {
  padding: 60px 0 40px;
  text-align: center;
  background: #f8fafc;
}

.pricing-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-table-section {
  padding: 40px 0 80px;
}

.pricing-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.pricing-plan {
  background: white;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  position: relative;
}

.pricing-plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
}

.popular-plan {
  border: 2px solid #2563eb;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.15);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 4px 16px;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
}

.plan-emails {
  color: #475569;
  margin: 8px 0 24px;
  font-weight: 500;
}

.plan-features ul {
  list-style: none;
  margin: 24px 0;
}

.plan-features ul li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features ul li i {
  color: #10b981;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: #f1f5f9;
  padding: 12px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  transition: 0.2s;
}

.btn-pricing-primary {
  display: block;
  text-align: center;
  background: #2563eb;
  padding: 12px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: white;
}

.pricing-extra {
  background: #f1f5f9;
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 60px;
}

.pricing-extra h3 {
  margin-bottom: 24px;
}

.volume-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.volume-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #cbd5e1;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h3 {
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 16px;
}

.faq-item strong {
  display: block;
  margin-bottom: 8px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ============================================ */
/* CONTACT PAGE STYLES */
/* ============================================ */

/* Contact Hero */
.contact-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
  padding: 40px 0 60px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: #2563eb;
  box-shadow: 0 20px 30px -12px rgba(37, 99, 235, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 2rem;
  color: #2563eb;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.contact-card p {
  color: #475569;
  margin-bottom: 12px;
}

.contact-card a {
  display: inline-block;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  margin: 8px 0;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.contact-card .sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 12px;
  margin-bottom: 4px;
}

.contact-card address {
  font-style: normal;
  color: #334155;
  line-height: 1.6;
  margin-top: 8px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 40px 0 60px;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-container {
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.contact-form-container>p {
  color: #475569;
  margin-bottom: 28px;
}

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

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  margin-top: 20px;
}

.form-note i {
  margin-right: 6px;
}

.contact-checkbox {
  margin: 20px 0;
}

/* Contact FAQ Mini Sidebar */
.contact-faq-mini {
  background: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-faq-mini h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: #0f172a;
}

.contact-faq-mini h3 span {
  color: #2563eb;
}

.faq-mini-item {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f6;
}

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

.faq-mini-item strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.faq-mini-item strong i {
  color: #2563eb;
}

.faq-mini-item p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-left: 26px;
}

.support-badge {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 20px;
  padding: 20px;
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.support-badge i {
  font-size: 2rem;
  color: #2563eb;
}

.support-badge strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
}

.support-badge p {
  font-size: 0.85rem;
  color: #334155;
}

.hours {
  background: rgba(37, 99, 235, 0.2);
  display: inline-block;
  padding: 10px 24px;
  border-radius: 60px;
  font-size: 0.9rem;
}

/* Social Connect */
.social-connect {
  padding: 40px 0 60px;
  text-align: center;
  background: #ffffff;
}

.social-connect h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: #0f172a;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  background: #f1f5f9;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.4rem;
  transition: all 0.2s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

.social-connect p {
  color: #475569;
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-grid {
    flex-direction: column;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .preview-plans,
  .pricing-grid-full {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .volume-row {
    flex-direction: column;
    gap: 8px;
  }

  .cta-card {
    padding: 30px
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 24px;
  }

  .contact-faq-mini {
    padding: 24px;
  }

  .map-content {
    padding: 28px;
  }

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