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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: 40px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(135deg, #1f2937, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: none;
  gap: 24px;
}

.nav-desktop a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: #0284c7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Desktop CTA button - only show on desktop */
.btn-desktop {
  display: none;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  color: #374151;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #0284c7;
}

.mobile-menu {
  display: none;
  padding: 24px 20px;
  border-top: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu a:not(.btn-mobile-menu):hover {
  color: #0284c7;
}

/* Mobile menu CTA button styling */
.btn-mobile-menu {
  margin-top: 16px !important;
  padding: 16px 24px !important;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(135deg, #f97316, #dc2626) !important;
  color: white !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  border-bottom: none !important;
  transition: all 0.3s ease;
}

.btn-mobile-menu:hover {
  background: linear-gradient(135deg, #ea580c, #b91c1c) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #0ea5e9;
  border: 2px solid rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(14, 165, 233, 0.1);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-cta {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #374151;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(79, 70, 229, 0.05), rgba(147, 51, 234, 0.05));
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(147, 51, 234, 0.2));
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 4xl;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title-main {
  background: linear-gradient(135deg, #111827, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-subtitle-small {
  font-size: 1rem;
  color: #9ca3af;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 5xl;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
  padding: 1rem;
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #111827;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #111827, #1e40af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 2xl;
  margin: 0 auto;
}

/* Info Section */
.info-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.5));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.info-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.card-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-check {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.25rem;
  border-radius: 50%;
  margin-right: 1rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-check {
  transform: scale(1.1);
}

.feature-item span:last-child {
  color: #374151;
  line-height: 1.6;
}

.loan-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loan-type {
  border-left: 4px solid;
  border-image: linear-gradient(135deg, #2563eb, #4f46e5) 1;
  padding-left: 1.5rem;
  padding: 1rem 0 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(239, 246, 255, 0.3));
  border-radius: 0 0.75rem 0.75rem 0;
  transition: all 0.3s ease;
}

.loan-type:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.loan-type h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loan-rate,
.loan-time {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

/* Comparison Section */
.comparison-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, rgba(239, 246, 255, 0.3));
}

.comparison-table-wrapper {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.desktop-table {
  display: block;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr 1fr;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
}

.table-header .table-cell {
  padding: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header .table-cell:last-child {
  border-right: none;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr 1fr;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background: rgba(239, 246, 255, 0.5);
}

.table-cell {
  padding: 1.5rem;
  border-right: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-cell:last-child {
  border-right: none;
}

.bank-name {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #111827;
}

.rate {
  font-weight: bold;
  font-size: 1.125rem;
  color: #2563eb;
}

.badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.badge-popular {
  background: #dc2626;
  color: white;
}

.badge-safe {
  background: #2563eb;
  color: white;
}

.badge-low-rate {
  background: #10b981;
  color: white;
}

.badge-speed {
  background: #f97316;
  color: white;
}

.badge-instant {
  background: #8b5cf6;
  color: white;
}

.feature-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.75rem;
}

.mobile-cards {
  display: none;
  padding: 1rem;
  gap: 1rem;
  flex-direction: column;
}

.mobile-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mobile-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mobile-card-header h3 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #111827;
}

.mobile-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-row span:first-child {
  color: #6b7280;
}

.mobile-row .rate {
  font-weight: bold;
  color: #2563eb;
}

/* Guide Section */
.guide-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.guide-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 1rem;
  border-radius: 1rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.guide-card:hover .guide-icon {
  transform: scale(1.1);
}

.priority-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.priority-critical {
  background: #dc2626;
}

.priority-important {
  background: #2563eb;
}

.priority-normal {
  background: #6b7280;
}

.priority-benefit {
  background: #f97316;
}

.guide-card h3 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #111827;
}

.guide-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Usage Section */
.usage-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5), rgba(224, 231, 255, 0.5));
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.usage-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.5));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.usage-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(249, 250, 251, 0.5));
  transition: all 0.3s ease;
}

.method-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.method-icon {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.method-item:hover .method-icon {
  transform: scale(1.1);
}

.method-content h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.method-badge {
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.method-content p {
  color: #6b7280;
}

.document-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.document-group {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.document-group:first-child {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.document-group:last-child {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.document-group h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.document-group:first-child h4 {
  color: #1e40af;
}

.document-group:last-child h4 {
  color: #c2410c;
}

.document-note {
  font-size: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  background: rgba(251, 146, 60, 0.1);
  color: #c2410c;
}

.document-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
}

/* Warning Section */
.warning-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.3), rgba(255, 237, 213, 0.3));
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.warning-card {
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.warning-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.risk-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 242, 242, 0.3));
  border: 1px solid #fecaca;
}

.safety-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 244, 0.3));
  border: 1px solid #bbf7d0;
}

.risk-card .card-header h3 {
  color: #b91c1c;
}

.safety-card .card-header h3 {
  color: #166534;
}

.risk-list,
.safety-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-item,
.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.risk-item {
  border: 1px solid #fecaca;
}

.safety-item {
  border: 1px solid #bbf7d0;
}

.risk-item:hover,
.safety-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.risk-icon,
.safety-icon {
  font-size: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.risk-icon {
  color: #dc2626;
}

.safety-icon {
  color: #16a34a;
}

.risk-content h4,
.safety-content h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.risk-content h4 {
  color: #b91c1c;
}

.safety-content h4 {
  color: #166534;
}

.risk-content p,
.safety-content p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Regulation Section */
.regulation-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.5), rgba(224, 231, 255, 0.5));
}

.regulation-card {
  max-width: 5xl;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.5));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.regulation-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.regulation-overview {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  padding: 2rem;
  border-radius: 1rem;
}

.regulation-overview h4 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e40af;
}

.regulation-overview p {
  color: #374151;
  line-height: 1.6;
  font-size: 1.125rem;
}

.regulation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.regulation-target,
.regulation-exempt {
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid;
}

.regulation-target {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-left-color: #dc2626;
}

.regulation-exempt {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-left-color: #16a34a;
}

.regulation-target h5 {
  color: #dc2626;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.regulation-exempt h5 {
  color: #16a34a;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.regulation-target ul,
.regulation-exempt ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.regulation-target li,
.regulation-exempt li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
}

.regulation-target li::before {
  content: "●";
  color: #dc2626;
  font-size: 0.5rem;
}

.regulation-exempt li::before {
  content: "●";
  color: #16a34a;
  font-size: 0.5rem;
}

/* Support Section */
.support-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 1.5rem;
  border-radius: 1.5rem;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.support-card:hover .support-icon {
  transform: scale(1.1);
}

.support-card h3 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #111827;
}

.support-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  padding: 24px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.close-btn {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #e2e8f0;
}

/* Simulator Styles */
.simulator-form {
  padding: 32px;
  background: #f8fafc;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.simulation-result {
  padding: 32px;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.simulation-result h4 {
  color: #1f2937;
  font-size: 18px;
  margin-bottom: 24px;
  text-align: center;
}

.result-grid {
  display: grid;
  gap: 16px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #f0f9ff;
  border-radius: 8px;
  border: 1px solid #e0f2fe;
}

.result-label {
  font-weight: 500;
  color: #374151;
}

.result-value {
  font-weight: bold;
  font-size: 18px;
  color: #0284c7;
}

/* Glossary Styles */
.glossary-content {
  padding: 32px;
  max-height: 400px;
  overflow-y: auto;
}

.glossary-item {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.glossary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.glossary-item h4 {
  color: #1f2937;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.glossary-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Guide Steps Styles */
.guide-steps {
  padding: 32px;
}

.guide-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.guide-step .step-content h4 {
  color: #1f2937;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.guide-step .step-content ul {
  list-style: none;
  padding: 0;
}

.guide-step .step-content li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b7280;
  line-height: 1.5;
}

.guide-step .step-content li::before {
  content: "•";
  color: #0ea5e9;
  font-weight: bold;
  flex-shrink: 0;
}

.guide-tips {
  background: #f0f9ff;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
  border: 1px solid #e0f2fe;
}

.guide-tips h4 {
  color: #0284c7;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.guide-tips ul {
  list-style: none;
  padding: 0;
}

.guide-tips li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #374151;
}

.guide-tips li::before {
  content: "✓";
  color: #0284c7;
  font-weight: bold;
  flex-shrink: 0;
}

/* FAQ Detailed Styles */
.faq-detailed {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 2px solid #e2e8f0;
}

.faq-categories {
  display: grid;
  gap: 48px;
}

.faq-category h3 {
  color: #1f2937;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #e0f2fe;
  position: relative;
}

.faq-category h3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.faq-items {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #0284c7;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  background: #f8fafc;
  color: #374151;
  line-height: 1.7;
  border-top: 1px solid #e2e8f0;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
  display: block;
}

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

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-about {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

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

.footer-logo h3 {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 768px;
  margin: 0 auto;
}

.footer-sections {
  display: grid;
  gap: 32px;
}

.footer-section h3 {
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-bottom: 24px;
}

.company-name {
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #38bdf8;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
}

.copyright {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 16px;
}

.disclaimer p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .btn-desktop {
    display: inline-flex;
  }

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

  /* Hide mobile menu CTA button on desktop */
  .btn-mobile-menu {
    display: none !important;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

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

  .footer-about {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-sections {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .desktop-table {
    display: none;
  }

  .mobile-cards {
    display: flex;
  }

  .info-grid,
  .usage-grid,
  .warning-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-benefits {
    grid-template-columns: 1fr;
  }

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

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

  .regulation-details {
    grid-template-columns: 1fr;
  }

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

  .footer-about {
    text-align: left;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .footer-sections {
    grid-template-columns: 1fr 1fr;
  }
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-header h3 {
    font-size: 18px;
  }

  .simulator-form,
  .simulation-result,
  .glossary-content,
  .guide-steps {
    padding: 24px;
  }

  .result-grid {
    gap: 12px;
  }

  .result-item {
    padding: 12px;
  }

  .result-value {
    font-size: 16px;
  }

  .guide-step {
    gap: 16px;
  }

  .guide-step .step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

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

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

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

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

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }

  .faq-category h3 {
    font-size: 20px;
  }

  .footer-sections {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer {
    display: none;
  }

  .hero {
    background: white;
    color: black;
  }

  .btn {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    border: 2px solid #000;
  }

  .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #000;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0284c7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}