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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #FF6B35, rgb(255, 144.3663366337, 104));
  color: #ffffff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.btn-outline {
  background: transparent;
  color: #1f2937;
  border: 1px solid #e5e7eb;
}
.btn-outline:hover {
  background: #f9fafb;
}
.btn-white {
  background: #ffffff;
  color: #FF6B35;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
}
.landing-nav .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.landing-nav .nav-logo img {
  height: 40px;
}
.landing-nav .nav-menu {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .landing-nav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid #e5e7eb;
  }
  .landing-nav .nav-menu.active {
    display: flex;
  }
}
.landing-nav .nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.landing-nav .nav-link:hover, .landing-nav .nav-link.active {
  color: #FF6B35;
}
@media (max-width: 768px) {
  .landing-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
  }
}
.landing-nav .nav-actions {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .landing-nav .nav-actions {
    display: none;
  }
}
.landing-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .landing-nav .nav-toggle {
    display: block;
  }
}

.hero-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}
.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-section .hero-title .text-primary {
  color: #FF6B35;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.hero-section .hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 968px) {
  .hero-section .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-actions {
    flex-direction: column;
  }
}
.hero-section .hero-stats {
  display: flex;
  gap: 3rem;
}
@media (max-width: 968px) {
  .hero-section .hero-stats {
    justify-content: center;
  }
}
.hero-section .stat-item {
  text-align: center;
}
.hero-section .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FF6B35;
}
.hero-section .stat-item .stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}
@media (max-width: 968px) {
  .hero-section .hero-image {
    order: -1;
  }
}
.hero-section .hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header .section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
}

.features-section {
  padding: 5rem 0;
  background: #ffffff;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 968px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section .feature-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.features-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.features-section .feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.features-section .feature-card .feature-icon i {
  font-size: 1.25rem;
  color: #FF6B35;
}
.features-section .feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.features-section .feature-card p {
  color: #6b7280;
  font-size: 0.9375rem;
}

.pricing-preview-section,
.pricing-section {
  padding: 5rem 0;
  background: #f9fafb;
}
.pricing-preview-section .pricing-preview-grid,
.pricing-preview-section .pricing-grid,
.pricing-section .pricing-preview-grid,
.pricing-section .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .pricing-preview-section .pricing-preview-grid,
  .pricing-preview-section .pricing-grid,
  .pricing-section .pricing-preview-grid,
  .pricing-section .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.pricing-preview-section .pricing-card,
.pricing-section .pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.pricing-preview-section .pricing-card.featured,
.pricing-section .pricing-card.featured {
  border-color: #FF6B35;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
  transform: scale(1.05);
}
@media (max-width: 968px) {
  .pricing-preview-section .pricing-card.featured,
  .pricing-section .pricing-card.featured {
    transform: none;
  }
}
.pricing-preview-section .pricing-card .pricing-badge,
.pricing-section .pricing-card .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF6B35;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pricing-preview-section .pricing-header,
.pricing-section .pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-preview-section .pricing-header h3,
.pricing-section .pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-preview-section .pricing-header .price .amount,
.pricing-section .pricing-header .price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}
.pricing-preview-section .pricing-header .price .period,
.pricing-section .pricing-header .price .period {
  color: #6b7280;
}
.pricing-preview-section .pricing-features,
.pricing-section .pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-preview-section .pricing-features li,
.pricing-section .pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-preview-section .pricing-features li i,
.pricing-section .pricing-features li i {
  color: #10b981;
}
.pricing-preview-section .pricing-cta,
.pricing-section .pricing-cta {
  text-align: center;
  margin-top: 3rem;
}
.pricing-preview-section .pricing-cta a,
.pricing-section .pricing-cta a {
  color: #FF6B35;
  text-decoration: none;
  font-weight: 500;
}
.pricing-preview-section .pricing-cta a:hover,
.pricing-section .pricing-cta a:hover {
  text-decoration: underline;
}

.pricing-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, #1E3A5F, rgb(17.76, 34.336, 56.24));
  color: #ffffff;
}
.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.pricing-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.pricing-toggle .toggle-label {
  color: #6b7280;
  cursor: pointer;
}
.pricing-toggle .toggle-label.active {
  color: #1f2937;
  font-weight: 600;
}
.pricing-toggle .toggle-label .badge {
  background: #10b981;
  color: #ffffff;
  padding: 0.125rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.pricing-toggle .toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}
.pricing-toggle .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-toggle .toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5e7eb;
  border-radius: 26px;
  transition: 0.3s;
}
.pricing-toggle .toggle-switch .toggle-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}
.pricing-toggle .toggle-switch input:checked + .toggle-slider {
  background: #FF6B35;
}
.pricing-toggle .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.faq-section {
  padding: 5rem 0;
  background: #ffffff;
}
.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .faq-section .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section .faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.faq-section .faq-item p {
  color: #6b7280;
  font-size: 0.9375rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #FF6B35, rgb(255, 69.6336633663, 2));
  text-align: center;
}
.cta-section .cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta-section .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.cta-section .cta-content .cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.landing-footer {
  background: #1E3A5F;
  color: #ffffff;
  padding: 4rem 0 2rem;
}
.landing-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 968px) {
  .landing-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .landing-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.landing-footer .footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}
.landing-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}
.landing-footer .footer-brand .social-links {
  display: flex;
  gap: 1rem;
}
.landing-footer .footer-brand .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s;
}
.landing-footer .footer-brand .social-links a:hover {
  background: #FF6B35;
}
.landing-footer .footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.landing-footer .footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.landing-footer .footer-links a:hover {
  color: #ffffff;
}
.landing-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.landing-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.auth-section {
  padding: 8rem 0 4rem;
  min-height: 100vh;
  background: #f9fafb;
}
.auth-section .auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .auth-section .auth-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.auth-section .auth-wrapper-centered {
  grid-template-columns: 1fr;
  max-width: 450px;
}
.auth-section .auth-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.auth-section .auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-section .auth-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.auth-section .auth-header p {
  color: #6b7280;
}
.auth-section .auth-form .form-section {
  margin-bottom: 2rem;
}
.auth-section .auth-form .form-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.auth-section .auth-form .form-group {
  margin-bottom: 1.25rem;
}
.auth-section .auth-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.auth-section .auth-form .form-group input[type=text],
.auth-section .auth-form .form-group input[type=email],
.auth-section .auth-form .form-group input[type=password],
.auth-section .auth-form .form-group input[type=tel] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
}
.auth-section .auth-form .form-group input[type=text]:focus,
.auth-section .auth-form .form-group input[type=email]:focus,
.auth-section .auth-form .form-group input[type=password]:focus,
.auth-section .auth-form .form-group input[type=tel]:focus {
  outline: none;
  border-color: #FF6B35;
}
.auth-section .auth-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .auth-section .auth-form .form-row {
    grid-template-columns: 1fr;
  }
}
.auth-section .auth-form .form-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-section .auth-form .input-with-suffix {
  display: flex;
  align-items: stretch;
}
.auth-section .auth-form .input-with-suffix input {
  border-radius: 8px 0 0 8px;
  border-right: none;
}
.auth-section .auth-form .input-with-suffix .input-suffix {
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: none;
  border-radius: 0 8px 8px 0;
  color: #6b7280;
  white-space: nowrap;
}
.auth-section .auth-form .input-with-toggle {
  position: relative;
}
.auth-section .auth-form .input-with-toggle input {
  padding-right: 3rem;
}
.auth-section .auth-form .input-with-toggle .toggle-password {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
}
.auth-section .auth-form .form-hint {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.auth-section .auth-form .form-error {
  display: block;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}
.auth-section .auth-form .form-error-general {
  text-align: center;
  margin-bottom: 1rem;
}
.auth-section .auth-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}
.auth-section .auth-form .checkbox-label input[type=checkbox] {
  margin-top: 0.25rem;
}
.auth-section .auth-form .checkbox-label span {
  font-size: 0.875rem;
  color: #6b7280;
}
.auth-section .auth-form .checkbox-label span a {
  color: #FF6B35;
}
.auth-section .auth-form .forgot-link {
  font-size: 0.875rem;
  color: #FF6B35;
  text-decoration: none;
}
.auth-section .auth-form .forgot-link:hover {
  text-decoration: underline;
}
.auth-section .auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}
.auth-section .auth-divider::before, .auth-section .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.auth-section .auth-divider span {
  padding: 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.auth-section .social-login {
  display: flex;
  gap: 1rem;
}
.auth-section .social-login .btn-social {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #1f2937;
}
.auth-section .social-login .btn-social:hover {
  background: #f9fafb;
}
.auth-section .auth-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.auth-section .auth-footer p {
  color: #6b7280;
}
.auth-section .auth-footer p a {
  color: #FF6B35;
  text-decoration: none;
}
.auth-section .auth-footer p a:hover {
  text-decoration: underline;
}
.auth-section .auth-info .plan-summary {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.auth-section .auth-info .plan-summary h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.auth-section .auth-info .plan-summary ul {
  list-style: none;
}
.auth-section .auth-info .plan-summary ul li {
  padding: 0.375rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.auth-section .auth-info .plan-summary ul li i {
  color: #10b981;
}
.auth-section .auth-info .plan-summary .change-plan {
  display: inline-block;
  margin-top: 1rem;
  color: #FF6B35;
  font-size: 0.875rem;
  text-decoration: none;
}
.auth-section .auth-info .plan-summary .change-plan:hover {
  text-decoration: underline;
}
.auth-section .auth-info .trust-badges h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.auth-section .auth-info .trust-badges ul {
  list-style: none;
}
.auth-section .auth-info .trust-badges ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
}
.auth-section .auth-info .trust-badges ul li i {
  color: #10b981;
}
