* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #194cff;
  --primary-dark: #0d3acc;
  --secondary-color: #14675d;
  --accent-color: #00c896;
  --text-dark: #0a0a0a;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f6fdfc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --spacing-unit: 8px;
}

p, span, ul li, ol li {
    text-align: left !important;
}
ol, ul {
    padding-left: unset!important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-secondary-light {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 76, 255, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary-light {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary-light:hover {
  background-color: transparent;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 2px 0 30px;
  background: linear-gradient(135deg, #f6fdfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(25, 76, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  /* text-align: center; */
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: left;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* New Two-Column Hero Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* align-items: center;
  gap: 40px;
  padding-top: 160px;
  padding-bottom: 80px; */
}

/* Image Styles */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  /* max-width: 500px; */
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  /* box-shadow: 0 8px 30px rgba(0,0,0,0.15); */
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrapper {
    margin-top: 40px;
  }

  .hero-title {
    font-size: 32px;
  }
}

/* Trusted By Section */
.trusted-by {
  padding: 48px 0;
  background-color: var(--bg-light);
}

.trusted-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.lenders-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.lender-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: var(--bg-white);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-color);
}

.lender-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lender-logo img {
  max-width: 100%;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.2s ease;
}

.lender-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 968px) {
  .lenders-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .lenders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trusted-title {
    font-size: 24px;
  }
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Solutions Section */
.solutions {
  padding: 48px 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
  text-align: center!important;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.solution-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.solution-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.1) 0%, rgba(25, 76, 255, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.solution-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.solution-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  padding: 0;
}

.solution-features li {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

/* Advantage Section */
.advantage {
  padding: 48px 0;
  background: linear-gradient(135deg, #f6fdfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.advantage::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(25, 76, 255, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.advantage-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center!important;
}

.advantage-highlight {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.1) 0%, rgba(0, 200, 150, 0.1) 100%);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(25, 76, 255, 0.2);
}

/* AI Features Section */
.ai-features {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0fdf9 100%);
}

.ai-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 48px;
  margin-bottom: 80px;
}

.ai-feature-card {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(25, 76, 255, 0.1);
}

.ai-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ai-feature-card:hover::before {
  transform: scaleX(1);
}

.ai-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(25, 76, 255, 0.15);
}

.ai-feature-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-feature-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.4px;
  line-height: 1.3;
}

.ai-feature-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 28px;
  text-align: justify!important;
}

.ai-feature-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ai-benefit-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.08) 0%, rgba(0, 200, 150, 0.08) 100%);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(25, 76, 255, 0.15);
  transition: all 0.3s ease;
}

.ai-benefit-tag:hover {
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.15) 0%, rgba(0, 200, 150, 0.15) 100%);
  border-color: rgba(25, 76, 255, 0.3);
}

.ai-impact-section {
  background: white;
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(25, 76, 255, 0.1);
}

.ai-impact-header {
  text-align: center;
  margin-bottom: 56px;
}

.ai-impact-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.ai-impact-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center!important;
}

.ai-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.ai-impact-stat {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.03) 0%, rgba(0, 200, 150, 0.03) 100%);
  transition: all 0.3s ease;
}

.ai-impact-stat:hover {
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.08) 0%, rgba(0, 200, 150, 0.08) 100%);
  transform: translateY(-4px);
}

.ai-impact-number {
  font-size: 52px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.ai-impact-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ai-impact-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  text-align: center!important;
}

/* Responsive adjustments for AI features */
@media (max-width: 1024px) {
  .ai-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ai-feature-card {
    padding: 32px 24px;
  }

  .ai-feature-title {
    font-size: 22px;
  }

  .ai-impact-section {
    padding: 40px 24px;
  }

  .ai-impact-title {
    font-size: 28px;
  }

  .ai-impact-number {
    font-size: 40px;
  }
}

/* Features Section */
.features {
  padding: 48px 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-align: center!important;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.footer_new {
  background-color: var(--text-dark);
  color: white;
  padding: 64px 0 24px;
}

.footer_new .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer_new .footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer_new .footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer_new .social-links {
  display: flex;
  gap: 16px;
}

.footer_new .social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

.footer_new .social-links a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer_new .social-links svg {
  width: 20px;
  height: 20px;
}

.footer_new .footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer_new .footer-links {
  list-style: none;
}

.footer_new .footer-links li {
  margin-bottom: 12px;
}

.footer_new .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer_new .footer-links a:hover {
  color: white;
}

.footer_new .footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Embedded Finance Section */
.embedded-finance {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 96px 0;
}

.ef-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 64px 0 96px;
}

.ef-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.ef-hero-description {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.ef-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ef-stat {
  text-align: left;
}

.ef-stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.ef-stat-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

.ef-card-demo {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
}

.ef-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ef-card-logo {
  font-size: 32px;
}

.ef-card-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.ef-card-divider {
  height: 1px;
  background: var(--border-color);
  margin: 20px 0;
}

.ef-payment-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--bg-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ef-payment-option:hover {
  background: rgba(25, 76, 255, 0.05);
  transform: translateX(4px);
}

.ef-payment-option.highlighted {
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.1), rgba(0, 200, 150, 0.1));
  border: 2px solid var(--primary-color);
}

.ef-option-label {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
}

.ef-option-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.ef-card-button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.ef-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 76, 255, 0.3);
}

.ef-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 56px;
}

.ef-features {
  margin-bottom: 96px;
}

.ef-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ef-feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.ef-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ef-feature-icon {
  margin-bottom: 24px;
}

.ef-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ef-feature-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.ef-benefits {
  margin-bottom: 96px;
}

.ef-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.ef-benefit-item {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  position: relative;
}

.ef-benefit-number {
  font-size: 64px;
  font-weight: 700;
  color: rgba(25, 76, 255, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
}

.ef-benefit-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ef-benefit-description {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.ef-use-cases {
  margin-bottom: 96px;
}

.ef-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ef-use-case {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.ef-use-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ef-use-case-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.ef-use-case-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ef-use-case-description {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.ef-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 64px;
  border-radius: 20px;
  text-align: center;
}

.ef-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.ef-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.ef-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.ef-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 968px) {
  .ef-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ef-features-grid {
    grid-template-columns: 1fr;
  }

  .ef-benefits-grid {
    grid-template-columns: 1fr;
  }

  .ef-use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ef-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .ef-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .ef-hero-title {
    font-size: 28px;
  }

  .ef-section-title {
    font-size: 24px;
  }

  .ef-use-cases-grid {
    grid-template-columns: 1fr;
  }

  .ef-stats {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }
}

/* Pricing Page Styles */
.pricing-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(25, 76, 255, 0.05) 0%, rgba(0, 200, 150, 0.05) 100%);
  text-align: center;
}

.pricing-payment-note {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  padding: 12px 24px;
  background: rgba(0, 200, 150, 0.1);
  border-radius: 8px;
  display: inline-block;
}

.pricing-model {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-model-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 24px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pricing-model-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(25, 76, 255, 0.1);
}

.pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-rate {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
}

.pricing-tiers {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(25, 76, 255, 0.15);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: var(--primary-color);
  position: relative;
  box-shadow: 0 8px 24px rgba(25, 76, 255, 0.1);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-tier-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  font-size: 16px;
  color: var(--text-light);
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.feature-category {
  margin-bottom: 32px;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
}

.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(25, 76, 255, 0.2);
}

.pricing-faq {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 48px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.nav-menu a.active {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .pricing-card {
    padding: 40px;
  }

  .featured-badge {
    top: 24px;
    right: 24px;
    left: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 120px 0 60px;
  }

  .pricing-payment-note {
    font-size: 16px;
    padding: 10px 20px;
  }

  .pricing-model {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-rate {
    font-size: 32px;
  }

  .pricing-note {
    font-size: 13px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-tier-name {
    font-size: 28px;
  }

  .price-amount {
    font-size: 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-hero {
    padding: 100px 0 40px;
  }

  .pricing-payment-note {
    font-size: 14px;
    padding: 8px 16px;
  }

  .pricing-model-item {
    padding: 24px 20px;
  }

  .pricing-rate {
    font-size: 28px;
  }

  .pricing-tier-name {
    font-size: 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .category-title {
    font-size: 16px;
  }

  .feature-list li {
    font-size: 14px;
  }
}