body {
  padding-top: 75px !important;
}

@media (max-width: 991px) {
  body {
    padding-top: 75px !important;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 65px !important;
  }
}

.section-spacer {
  background: linear-gradient(180deg, #fff 0%, #f3bc86ff 100%);
  min-height: 90px;
  position: relative;
}

.section-spacer-reverse {
  background: linear-gradient(180deg, #f3bc86ff 0%, #fff 100%);
  min-height: 90px;
  position: relative;
}

.about-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width:1200px) {
  .about-section .container {
    max-width: 1400px;
  }
}

@media (min-width:1400px) {
  .about-section .container {
    max-width: 1600px;
  }
}

.about-subtitle {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw + .5rem, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem 0;
  letter-spacing: -.01em;
  text-align: center;
}

.about-text {
  color: #0b3c8c;
  font-size: clamp(1rem, 2vw + .2rem, 1.2rem);
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.about-highlight {
  background: #fff;
  color: #0b3c8c;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(11, 60, 140, 0.10);
  border: 2px solid #f28c2a22;
  margin: 2rem 0;
  transition: box-shadow 0.2s ease, transform 0.05s ease;
}

.about-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 60, 140, 0.18), 0 0 0 2px #f28c2a44;
}

.about-highlight h3 {
  color: #0b3c8c;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw + .2rem, 1.8rem);
  margin-bottom: 1rem;
  letter-spacing: -.005em;
}

.about-highlight p {
  color: #0b3c8c;
  font-size: clamp(1rem, 2vw + .1rem, 1.2rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

@media(max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .section-spacer,
  .section-spacer-reverse {
    min-height: 60px;
  }

  .about-highlight {
    padding: 30px 20px;
  }
}

@media(max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .section-spacer,
  .section-spacer-reverse {
    min-height: 45px;
  }
}

.future-cta {
  background: #fff;
  padding: 80px 0;
  color: var(--brand-primary);
}

.future-cta .future-cta-card {
  background: #fff;
  color: #0b3c8c;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(11, 60, 140, 0.10);
  border: 2px solid #f28c2a22;
  transition: box-shadow 0.2s ease, transform 0.05s ease;
  margin-bottom: 40px;
}

.future-cta .future-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 60, 140, 0.18), 0 0 0 2px #f28c2a44;
}

.future-cta .cta-title {
  text-align: center;
  font-weight: 800;
  letter-spacing: -.005em;
  font-size: clamp(1.4rem, 3vw + .5rem, 2.4rem);
  margin-bottom: 24px;
  color: #0b3c8c;
}

.future-cta .cta-text {
  color: #0b3c8c;
  font-size: clamp(1rem, 2vw + .2rem, 1.2rem);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.future-cta .cta-strong {
  font-weight: 700;
  margin-top: 18px;
  color: var(--brand-primary);
}

.image-text-grid-section {
  padding: 80px 0;
  background: #fff;
}

.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-block {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.05s ease;
  position: relative;
}

.grid-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(11, 60, 140, 0.15);
}

.grid-block-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.grid-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.05s ease;
}

.grid-block:hover .grid-block-image img {
  transform: scale(1.05);
}

.grid-block-text {
  padding: 40px 35px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-block-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.grid-block-description {
  font-size: 1.05rem;
  color: #0b3c8c;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .image-text-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .grid-block:nth-child(1) { order: 1; }
  .grid-block:nth-child(2) { order: 2; }
  .grid-block:nth-child(3) { order: 4; }
  .grid-block:nth-child(4) { order: 3; }

  .grid-block-image {
    height: 240px;
  }

  .grid-block-text {
    padding: 30px 25px;
    min-height: auto;
  }

  .grid-block-title {
    font-size: 1.5rem;
  }

  .future-cta {
    padding: 80px 0;
  }

  .future-cta .cta-text {
    text-align: left;
  }

  .phase-bar {
    height: auto;
    min-height: 60px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
  }

  .phase-item {
    position: static;
    transform: none;
    font-size: .75rem;
    padding: 4px 8px;
    white-space: nowrap;
  }
}

.features-section {
  background: #f3bc86ff;
  padding: 90px 0 80px;
}

.features-title {
  color: var(--brand-primary);
  text-align: center;
  letter-spacing: -.005em;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw + .4rem, 2.4rem);
  margin-bottom: 40px;
}

.feature-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.05s ease;
  cursor: pointer;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/table5.png') center/cover no-repeat;
  opacity: 0.85;
  z-index: 0;
  transition: opacity 0.05s ease;
  border-radius: 16px;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.05s ease;
  border-radius: 16px;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 24px 60px rgba(11, 60, 140, 0.18), 0 0 0 2px #f28c2a44;
  z-index: 2;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 143px;
  border-radius: 12px;
  background: transparent;
  margin-bottom: 20px;
  transition: transform 0.05s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
}

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

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.feature-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1.4;
  font-size: clamp(.92rem, 1vw + .2rem, 1.05rem);
  margin: 0;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, text-shadow 0.05s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-text {
  color: #0b3c8c;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(11, 60, 140, 0.25);
}

@media (max-width: 768px) {
  .features-section {
    padding: 70px 0 60px;
  }

  .feature-card {
    padding: 28px 24px;
    margin-bottom: 28px;
    min-height: 180px;
  }

  .feature-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .feature-text {
    font-size: .9rem;
  }
}

.future-section {
  background: #f3bc86ff;
  padding: 90px 0 80px;
}

.future-title {
  color: var(--brand-primary);
  font-weight: 800;
  letter-spacing: -.005em;
  text-align: center;
  font-size: clamp(1.4rem, 3vw + .4rem, 2.4rem);
  margin-bottom: 18px;
}

.future-desc {
  color: #0b3c8c;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw + .1rem, 1.2rem);
}

.phase-bar {
  position: relative;
  background: linear-gradient(90deg, #f7f7ff 0%, #e7d74cff 18%, #ffd31a 36%, #ffa20f 64%, #ff7a14 82%);
  border-radius: 8px;
  height: 70px;
  margin: 10px 0 30px;
  box-shadow: 0 4px 12px rgba(2, 6, 23, .08);
}

.phase-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #0b3c8c;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .95rem;
}

.phase-1 { left: 6%; }
.phase-2 { left: 27%; }
.phase-3 { left: 48%; }
.phase-4 { left: 68%; }
.phase-5 { right: 6%; }

.future-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(2, 6, 23, .06);
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.05s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.future-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11, 60, 140, .12);
}

.future-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7490d6;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease, transform 0.05s ease;
  flex-shrink: 0;
}

.future-card:hover .future-card-icon {
  transform: scale(1.05);
  background: #f28c2a;
}

.future-card p {
  margin: 0;
  color: #0b3c8c;
  line-height: 1.5;
  font-size: 1rem;
  text-align: center;
}

@media(max-width:768px) {
  .future-section {
    padding: 70px 0 60px;
  }

  .phase-bar {
    height: auto;
    width: 60px;
    min-height: 750px;
    background: linear-gradient(180deg, #f7f7ff 0%, #e7d74cff 18%, #ffd31a 36%, #ffa20f 64%, #ff7a14 82%);
    margin: 10px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    float: left;
    margin-right: 15px;
  }

  .phase-item {
    position: static;
    transform: none;
    font-size: .7rem;
    padding: 8px 4px;
    text-align: center;
    writing-mode: horizontal-tb;
  }

  .phase-1, .phase-2, .phase-3, .phase-4, .phase-5 {
    left: auto;
    right: auto;
  }

  .future-card {
    margin-bottom: 18px;
  }

  .future-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .future-cta {
    padding: 60px 0;
  }

  .future-section .container::after {
    content: "";
    display: table;
    clear: both;
  }
}

.btn-contact-form {
  background: #0b3c8c;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(11, 60, 140, .25);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  cursor: pointer;
  min-width: 150px;
}

.btn-contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 60, 140, .35);
  background: #062c5e;
  color: #fff;
}

.btn-contact-form:active {
  transform: translateY(0);
}

.btn-contact-form:disabled {
  background: #a8d8ea;
  color: #64748b;
  cursor: not-allowed;
  box-shadow: 0 4px 12px rgba(168, 216, 234, .15);
}