/* Home Landing Page Styles */
body {
  background-color: #FAFAFA;
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for children */
.animate-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-children.animated > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.animate-children.animated > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.animate-children.animated > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.animate-children.animated > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.animate-children.animated > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.animate-children.animated > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Global Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
}

/* Hero Section */
.hero-section {
  padding: 50px 0 0px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #F5F9FC;
  border: 1px solid #586D85;
  color: #586D85;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-img {
  width: auto;
  height: 20px;
  object-fit: contain;
}

.hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: #172739;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #0B3D5D 0%, #2E6B8F 40%, #5B8AA8 70%, #A8C5D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: rgba(11, 61, 93, 0.2);
}

.hero-description {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  color: #223245;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #0B3D5D;
  color: white;
  padding: 5px 37px;
  border: none;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 38px;
}

.btn-primary:hover {
  background: #094561;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(11, 61, 93, 0.3);
}

.btn-secondary {
  background: white;
  color: #172739;
  padding: 5px 37px;
  border: 1px solid #172739;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  line-height: 38px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

  .btn-secondary:hover {
    border-color: #0B3D5D;
    color: #0B3D5D;
    transform: translateY(-2px);
  }

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title-about {
  font-size: 34px;
  font-weight: 700;
  color: #22364D;
  margin-bottom: 32px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}

.about-text strong {
  color: #0B3D5D;
  font-weight: 700;
}

/* Icon Placeholder for Features */
.icon-placeholder {
  font-size: 48px;
  line-height: 1;
}

/* Impact Section - Emoji Icons */
.impact-icon-emoji {
  font-size: 64px;
  margin-bottom: 24px;
}

.section-description {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 48px;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Organizations Section */
.organizations-section {
  padding: 60px 0;
}

.section-subtitle {
  text-align: center;
  font-size: 24px;
  color: #666;
  margin-bottom: 48px;
  font-weight: 400;
  max-width: 735px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle .highlight {
  color: #1a1a1a;
  font-weight: 600;
}

.organizations-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 40px;
  width: auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  background: #E8F1F7;
  color: #0B3D5D;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.section-title.center {
  text-align: center;
}

.section-description {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Challenges Section */
.challenges-section {
  padding: 100px 0;
  background: transparent;
}

.challenges-gradient-block {
  background: radial-gradient(50% 50% at 50% 50%, #274568 0%, #172739 100%);
  border-radius: 30px;
  padding: 42px 58px;
  position: relative;
}

.challenges-favicon {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 40px;
  height: auto;
  opacity: 0.3;
  filter: grayscale(100%) brightness(2);
}

.challenges-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 16px 0;
  line-height: 55px;
}

.section-subtitle-white {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 35px;
  margin-bottom: 44px;
}

.challenge-card {
  background: #1a2332;
  padding: 48px 32px;
  border-radius: 16px;
  color: white;
  position: relative;
}

.card-header {
  margin-bottom: 32px;
}

.card-number {
  font-size: 72px;
  font-weight: 700;
  color: #4CAF50;
  display: block;
  margin-bottom: 16px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.card-badge img {
  width: 20px;
  height: 20px;
}

.card-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #0B3D5D;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(2px);
  padding: 29px 44px;
  display: flex;
  gap: 43px;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.20);
}

.feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content {
  flex: 1;
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 22px;
}

.feature-card p {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  line-height: 22px;
  margin: 0;
}

/* Impact Section */
.impact-section {
  padding: 0 0 100px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 47px;
}

.impact-card {
  text-align: center;
  border-radius: 30px;
  border: 1px solid #D7E3ED;
  padding: 40px 70px;
}

.impact-card h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #16212D;
  background: linear-gradient(130deg, #0B3D5D -54.6%, #5B8AA8 50%, #A8C5D8 141.34%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-card p {
  font-size: 20px;
  font-weight: 600;
  color: #172739;
  line-height: 30px;
}

/* Solution Section (Vehicles) */
.solution-section {
  padding: 0 0 100px 0;
  background: #FAFAFA;
}

.solution-content {
  width: 100%;
}

.solution-right {
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  position: relative;
}

.solution-favicon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  padding: 12px;
  background: #172739;
  border-radius: 12px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.solution-right .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #172739;
  margin-bottom: 20px;
  text-align: left;
}

.section-description-center {
  font-size: 18px;
  color: #586D85;
  line-height: 1.6;
  margin-bottom: 50px;
  text-align: left;
}

.vehicles-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #D7E3ED;
  background: transparent;
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #0B3D5D;
  background: rgba(255, 255, 255, 0.5);
}

.vehicle-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0B3D5D;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.vehicle-info {
  width: 100%;
}

.vehicle-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #172739;
  margin-bottom: 12px;
}

.vehicle-amount {
  font-size: 15px;
  color: #0B3D5D;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  background: #E8F1F7;
  padding: 6px 14px;
  border-radius: 8px;
}

.vehicle-target,
.vehicle-objective {
  margin-bottom: 12px;
  text-align: left;
}

.vehicle-target strong,
.vehicle-objective strong {
  display: block;
  font-size: 13px;
  color: #172739;
  font-weight: 700;
  margin-bottom: 6px;
}

.vehicle-target p,
.vehicle-objective p {
  font-size: 13px;
  color: #586D85;
  line-height: 1.6;
}

.solution-cta {
  text-align: center;
  margin-top: 40px;
}

/* Portal Section */
.portal-section {
  background: linear-gradient(135deg, #E8F1F7 0%, #ffffff 100%);
}

.portal-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.portal-description {
  font-size: 18px;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 16px auto 48px;
}

.portal-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.portal-feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.portal-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.portal-feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.portal-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.portal-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Start Section */
.start-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #E8F1F7 0%, #ffffff 100%);
}

.start-header {
  text-align: center;
  margin-bottom: 64px;
}

.start-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  background: #0B3D5D;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #666;
}

.start-cta {
  text-align: center;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 56px;
  font-weight: 700;
  color: #0B3D5D;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 18px;
  color: #666;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 14px;
  color: #666;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.testimonial-logo {
  text-align: right;
}

.testimonial-logo img {
  height: 32px;
  width: auto;
  opacity: 0.6;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: white;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}

.toggle-btn {
  background: #f8f9fa;
  color: #666;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #0B3D5D;
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #0B3D5D;
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #0B3D5D;
  position: relative;
  transform: scale(1.05);
}

.pricing-badge {
  display: inline-block;
  background: #f8f9fa;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.pricing-badge.featured {
  background: #0B3D5D;
  color: white;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 16px;
}

.pricing-price .currency {
  font-size: 24px;
  color: #666;
  vertical-align: top;
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
}

.pricing-price .period {
  font-size: 16px;
  color: #666;
}

.pricing-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}

.pricing-features li img {
  width: 20px;
  height: 20px;
}

.btn-pricing {
  width: 100%;
  background: #f8f9fa;
  color: #1a1a1a;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background: #e0e0e0;
}

.btn-pricing.primary {
  background: #0B3D5D;
  color: white;
}

.btn-pricing.primary:hover {
  background: #094561;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.faq-left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.faq-left p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.faq-right h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.faq-right p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.faq-right ul {
  list-style: none;
  padding: 0;
}

.faq-right ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.faq-right ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0B3D5D;
  font-weight: 700;
}

/* Programs Section */
.programs-section {
  padding: 0 0 100px 0;
  background: #FAFAFA;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.program-card {
  border-radius: 30px;
  background: linear-gradient(0deg, #FFF 0%, #FEF9F7 54.2%, #E8EEF6 100%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #0B3D5D;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.program-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover .program-img {
  transform: scale(1.05);
}

.program-title {
  font-size: 22px;
  font-weight: 700;
  color: #172739;
  margin: 0 0 16px 0;
  line-height: 30px;
}

.program-description {
  font-size: 14px;
  color: #586D85;
  line-height: 24px;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.program-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(88, 109, 133, 0.1);
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-label {
  font-size: 13px;
  color: #8494A7;
  font-weight: 500;
}

.info-value {
  font-size: 14px;
  color: #172739;
  font-weight: 600;
}

.program-footer {
  margin-top: auto;
}

.btn-program {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0B3D5D 0%, #1A5A7F 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-program:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 61, 93, 0.3);
}

.programs-cta {
  text-align: center;
  margin-top: 50px;
}

.programs-cta .btn-secondary {
  padding: 7px 40px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .programs-section {
    padding: 60px 0;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .program-card {
    padding: 30px;
  }

  .program-title {
    font-size: 20px;
  }

  .programs-cta {
    margin-top: 30px;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #1a2332;
  color: white;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-badge {
  display: inline-block;
  background: rgba(232, 241, 247, 0.15);
  color: #A8D5F2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.cta-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.cta-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 16px;
}

.cta-benefits li .check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, #0B3D5D 0%, #1A5A7F 100%);
  border-radius: 50%;
  color: white;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.cta-benefits li img {
  width: 20px;
  height: 20px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.cta-members {
  display: flex;
  gap: -16px;
  justify-content: center;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #1a2332;
  object-fit: cover;
  margin-left: -16px;
}

.member-photo:first-child {
  margin-left: 0;
}

.cta-community-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-img {
  width: 100%;
  height: auto;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.newsletter-left h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.newsletter-left p {
  font-size: 16px;
  color: #666;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #0B3D5D;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 16px auto 0;
}

.contact-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
}

.btn-primary-large,
.btn-secondary-large {
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-large {
  background: #0B3D5D;
  color: white;
}

.btn-primary-large:hover {
  background: #094561;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 61, 93, 0.3);
}

.btn-secondary-large {
  background: white;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}

.btn-secondary-large:hover {
  border-color: #0B3D5D;
  color: #0B3D5D;
  transform: translateY(-4px);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-info-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-info-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: #0B3D5D;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .challenges-grid,
  .faq-content,
  .cta-content,
  .newsletter-content {
    grid-template-columns: 1fr;
  }

  .challenges-gradient-block {
    padding: 60px 40px;
  }

  .challenges-favicon {
    top: 30px;
    right: 40px;
    width: 50px;
  }

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

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

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

  .solution-right {
    padding: 40px 30px;
  }

  .solution-right .section-title {
    font-size: 36px;
  }

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

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

@media (max-width: 768px) {
  .hero-left {
    padding: 40px 32px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .challenges-gradient-block {
    padding: 40px 24px;
  }

  .challenges-favicon {
    top: 20px;
    right: 24px;
    width: 40px;
  }

  .challenges-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .feature-card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .feature-content {
    text-align: center;
  }

  .features-grid,
  .impact-grid,
  .start-steps,
  .stats-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .solution-right {
    padding: 30px 24px;
  }

  .solution-right .section-title {
    font-size: 32px;
  }

  .vehicles-list {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    padding: 24px 20px;
  }

  .portal-features-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
  }

  .section-title-about {
    font-size: 32px;
  }
}

