/* ============================================
   Custom Profile Page Styles
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #1bb978;
  --primary-dark: #0e8856;
  --primary-light: #b8f4bb;

  --secondary-color: #60bec6;
  --accent-purple: #667eea;
  --accent-purple-dark: #764ba2;

  --text-primary: #333333;
  --text-secondary: #666666;
  --text-light: #999999;

  --bg-main: #f4f4f4;
  --bg-white: #ffffff;
  --bg-light: #fafafa;

  --border-color: #e0e0e0;
  --border-radius: 10px;
  --border-radius-lg: 16px;
  --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Lato', Arial, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 32px;
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 3rem;
  flex: 1;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

/* Auth Section */
.nav-auth {
  display: flex;
  align-items: center;
}

/* User Menu & Avatar */
.nav-user {
  position: relative;
}

.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.nav-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(27, 185, 120, 0.3);
}

.nav-avatar:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 185, 120, 0.2);
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 1rem;
}

.dropdown-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.dropdown-email {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.125rem;
  word-break: break-all;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  text-decoration: none;
}

.dropdown-item:hover {
  background: var(--bg-light);
}

.dropdown-icon {
  font-size: 1rem;
  opacity: 0.7;
}

.dropdown-logout {
  color: #ef4444;
}

.dropdown-logout:hover {
  background: #fef2f2;
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: var(--bg-light);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem 1.5rem;
}

.nav-mobile-menu.show {
  display: block;
}

.mobile-link {
  display: block;
  width: 100%;
  padding: 0.875rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

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

.mobile-link.active {
  color: var(--primary-color);
}

.mobile-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0;
}

.mobile-user-info {
  padding: 0.75rem 0;
}

.mobile-user-name {
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-user-email {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.mobile-logout {
  color: #ef4444;
}

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

  .nav-auth,
  .nav-user {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 185, 120, 0.4);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 5rem 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(27, 185, 120, 0.1);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

/* ============================================
   Problem/Solution Section
   ============================================ */

.problem-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.problem-card,
.solution-card {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.problem-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.solution-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.problem-icon,
.solution-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.problem-card h3,
.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.problem-card p,
.solution-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works-section {
  padding: 5rem 0;
  background: var(--bg-main);
  text-align: center;
}

.how-it-works-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

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

.step-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
  padding: 5rem 0;
  background: var(--bg-white);
  text-align: center;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.feature-item {
  padding: 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

/* Single pricing card layout */
.pricing-single {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-single-card {
  transform: none;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.toggle-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.save-badge {
  background: #dcfce7;
  color: #16a34a;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.pricing-annual-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-featured {
  border: 3px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(27, 185, 120, 0.2);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-term {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-body {
  padding: 2rem;
  flex: 1;
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-features .check {
  color: var(--primary-color);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 1.5rem 2rem 2rem;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* Guarantee Section */
.guarantee-section {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 2px dashed var(--primary-color);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.guarantee-section h3 {
  margin-bottom: 0.5rem;
}

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

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.faq-item {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-purple-dark) 100%);
  text-align: center;
  color: white;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.final-cta-section .btn-primary {
  background: white;
  color: var(--accent-purple);
}

.final-cta-section .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #1e293b;
  color: white;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.social-link:hover {
  background: #1bb978;
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Toast Notifications
   ============================================ */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--text-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 2000;
}

.toast.active {
  display: block;
}

/* ============================================
   Wizard Modal Styles
   ============================================ */

.wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.wizard-modal {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--box-shadow-lg);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-header h2 {
  font-size: 1.5rem;
}

.wizard-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0;
}

.wizard-close:hover {
  color: var(--text-primary);
}

.wizard-progress {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.wizard-step {
  flex: 1;
  text-align: center;
}

.wizard-step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border-color);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.wizard-step.active .wizard-step-indicator {
  background: var(--primary-color);
}

.wizard-step.completed .wizard-step-indicator {
  background: var(--primary-color);
}

.wizard-step-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.wizard-step.active .wizard-step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.progress-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.wizard-body {
  padding: 2rem;
}

.wizard-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-help {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pricing-featured {
    transform: none;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 3rem 0;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wizard-overlay {
    padding: 1rem;
  }

  .wizard-modal {
    max-height: 95vh;
  }

  .wizard-body {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

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

  .nav-user {
    display: none !important;
  }
}
