.features-section {
  padding: 10px 0;
  background: hsla(60, 100%, 96%, 1.00);
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ===============================
   UNIVERSAL HEADING FONT WEIGHT
   =============================== */

h1,
h2,
h3,
h4,
h5,
h6,
.hero-content h1,
.tagline,
.feature-card h3,
.insights-heading h2,
.process-heading,
.strategy-heading,
.strategy-block h3,
.contact-card-text h2 {
  font-weight: 900;
}
.tagline,
.insights-heading h2,
.process-heading,
.strategy-heading,
.strategy-block h3,
.contact-card-text h2{
  font-size:38px;
}

.feature-card {
  flex: 1;
  font-size:22px;
  min-width: 300px;
  max-width: 380px;
  text-align: left;
  transition: transform 0.4s ease;
  will-change: transform;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
}

.icon-wrapper svg,
.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-family: 'Roboto', sans-serif;
  color: #000;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    gap: 30px;
    padding: 0 20px;
  }
  .feature-card {
    min-width: 280px;
    font-size: 20px;
  }
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 5px 0;
  }
  
  .features-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 15px;
  }
  .feature-card {
    text-align: left;
    padding: 12px 0;
    min-width: auto;
    max-width: 100%;
    font-size: 18px;
  }
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .feature-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  .feature-card p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* Hero Section - FULLY RESPONSIVE + CONTENT AT BOTTOM ON DESKTOP */
.hero-section {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: hsla(0, 0%, 0%, 0.507);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: 200px;
  text-align: left;
  width: 100%;
  padding: 0 40px;
}

.hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  line-height: 0.88;
  margin-bottom: 20px;
  color: #fff;
}

.tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  color: #FFD700;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 16px 36px;
  font-size: 18px;
  border-radius: 20px 0px 20px 0px;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
  will-change: transform;
}

.btn-primary {
  background: #FFD700;
  color: #000;
}

.btn-primary:hover {
  background: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}

/* Insights Section */
.insights-section {
  padding: 20px 0;
  background: hsla(60, 100%, 96%, 1.00);
}

.insights-grid {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.insights-heading h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  color: #000;
  line-height: 1.3;
  max-width: 650px;
}

.insights-text {
  flex: 1;
}

.insights-text p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 24px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content h1 { 
    font-size: 42px; 
    line-height: 1;
  }
  .tagline { 
    font-size: 24px; 
    margin-bottom: 15px;
  }
  .description { 
    font-size: 18px; 
    line-height: 1.4;
    margin-bottom: 30px;
  }
  .insights-grid {
    flex-direction: column;
    gap: 25px;
  }
  .insights-heading h2 {
    max-width: none;
    font-size: 32px;
  }
  .hero-content {
    margin-left: 100px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 40vh;
    min-height: 300px;
    align-items: center;
    padding-bottom: 0;
    text-align: center;
  }
  .hero-content {
    margin-left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .hero-content h1 { 
    font-size: 32px; 
    margin-bottom: 12px;
    line-height: 1;
  }
  .tagline { 
    font-size: 24px; 
    margin-bottom: 12px;
  }
  .description { 
    font-size: 15px; 
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .cta-buttons { 
    justify-content: center; 
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 16px;
  }

  .insights-section {
    padding: 15px 0;
  }
  
  .insights-grid { 
    padding: 0 15px; 
    gap: 20px;
  }
  
  .insights-heading h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .insights-text p {
    margin-bottom: 15px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { 
    font-size: 28px; 
  }
  .tagline { 
    font-size: 20px; 
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .insights-heading h2 {
    font-size: 24px;
  }
}

.process-section {
  position: relative;
  padding: 80px 0;
  background: #f8f9ff;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  color: #000;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
}

.process-heading .underline {
  display: block;
  width: 120px;
  height: 6px;
  background: #FFD700;
  margin: 20px auto 0;
  border-radius: 3px;
}

.process-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.process-text {
  flex: 1;
}

.process-text p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.process-image {
  flex: 1;
}

.process-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.6s ease;
  will-change: transform;
}

.process-image img:hover {
  transform: scale(1.03);
}

/* Floating Dots */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite linear;
}

.dot-1 { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 25s; }
.dot-2 { top: 40%; left: 80%; animation-delay: 5s; animation-duration: 30s; }
.dot-3 { top: 70%; left: 20%; animation-delay: 10s; animation-duration: 22s; }
.dot-4 { top: 10%; left: 60%; animation-delay: 2s; animation-duration: 28s; }
.dot-5 { top: 80%; left: 90%; animation-delay: 8s; animation-duration: 35s; }
.dot-6 { top: 50%; left: 5%; animation-delay: 15s; animation-duration: 20s; }
.dot-7 { top: 30%; left: 70%; animation-delay: 12s; animation-duration: 32s; }
.dot-8 { top: 60%; left: 40%; animation-delay: 18s; animation-duration: 26s; }

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-100px) translateX(50px); }
  100% { transform: translateY(0) translateX(0); }
}

.process-cta-btn {
  display: inline-block;
  background: #FFD700;
  color: #000;
  font-size: 18px;
  padding: 16px 40px;
  font-weight: 500px;
  margin-top: 30px;
  border-radius: 20px 0px 20px 0px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255,215,0,0.3);
  will-change: transform;
}

.process-cta-btn:hover {
  background: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255,215,0,0.4);
}

/* Responsive - Mobile fixes for Process */
@media (max-width: 992px) {
  .process-grid {
    flex-direction: column;
    gap: 30px;
  }
  .process-text p {
    font-size: 16px;
    line-height: 1.4;
  }
  .process-cta-btn {
    padding: 14px 32px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 40px 0;
  }
  
  .process-heading {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .process-heading .underline {
    width: 80px;
    height: 4px;
    margin: 15px auto 0;
  }
  
  .process-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .process-grid {
    gap: 20px;
  }
  
  .process-text {
    order: 1;
  }
  
  .process-image {
    order: 2;
  }
  
  .process-cta-btn {
    padding: 12px 28px;
    font-size: 16px;
    margin-top: 20px;
  }
}

.strategy-section {
  background: #fff;
  padding: 40px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.strategy-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.strategy-heading::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: #FFD700;
  margin: 15px auto 0;
  border-radius: 3px;
}

.strategy-grid {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.strategy-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-block {
  height: 500px;
  width: 700px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.image-block img {
  width: 100%;
  transition: transform 0.6s ease;
  object-fit: cover;
  will-change: transform;
}

.image-block img:hover {
  transform: scale(1.05);
}

.strategy-text {
  flex: 1;
}

.strategy-block {
  margin-bottom: 40px;
}

.strategy-block:last-child {
  margin-bottom: 0;
}

.strategy-block h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 35px;
  color: #000;
  margin-bottom: 12px;
}

.strategy-block p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.strategy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strategy-list li {
  font-size: 16px;
  color: #333;
  padding: 8px 0 8px 28px;
  position: relative;
  transition: color 0.4s ease;
}

.strategy-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-size: 20px;
}

.strategy-list li:hover {
  color: #111;
}

/* Responsive - Mobile fixes for Strategy */
@media (max-width: 992px) {
  .strategy-grid {
    flex-direction: column;
    gap: 25px;
  }
  .strategy-text {
    text-align: center;
    order: 1;
  }
  .strategy-images {
    gap: 20px;
    order: 2;
  }
  .image-block {
    height: 300px !important;
    width: 100%;
  }
  
  .strategy-block {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .strategy-section {
    padding: 30px 0;
  }
  
  .strategy-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .strategy-heading::after {
    width: 70px;
    height: 4px;
    margin: 12px auto 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .strategy-block h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .strategy-block p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .strategy-block {
    margin-bottom: 20px;
  }
  
  .strategy-list li {
    font-size: 15px;
    padding: 6px 0 6px 20px;
    text-align: left;
  }
  
  .strategy-images {
    gap: 15px;
  }
  
  .strategy-grid {
    gap: 20px;
  }
}

/* Contact Card Section */
.contact-card-section {
  background: #ffffff; 
  position: relative;
  z-index: 10;
}

.contact-card-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #ffffff 0%, hsla(50, 100%, 74%, 1.00) 100%);
  border-radius: 30px 0 30px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.contact-card-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-left: 30px;
}

.contact-card-text {
  flex: 1;
}

.contact-card-text h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-card-text p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 32px;
}

.contact-card-btn {
  display: inline-block;
  background: #FFD700;
  color: #000;
  font-size: 18px;
  padding: 14px 36px;
  border-radius: 20px 0px 20px 0px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  will-change: transform;
}

.contact-card-btn:hover {
  background: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.contact-card-image {
  flex: 1;
}

.contact-card-image img {
  width: 80%;
  height: auto;
  border-radius: 20px;
  margin-left: 100px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.contact-card-image img:hover {
  transform: scale(1.03);
}

/* Responsive - Mobile fixes for Contact Card */
@media (max-width: 992px) {
  .contact-card-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 30px 30px;
  }
  
  .contact-card-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .contact-card-text p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  
  .contact-card-section {
    margin-bottom: -60px;
  }
  
  .contact-card-text {
    order: 1;
  }
  
  .contact-card-image {
    order: 2;
  }
  
  .contact-card-image img {
    margin-left: 0;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .contact-card-section {
    padding: 30px 0 20px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .contact-card-wrapper {
    border-radius: 20px 0 20px 0;
  }
  
  .contact-card-grid {
    padding: 25px 20px;
    gap: 20px;
  }
  
  .contact-card-text h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  
  .contact-card-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .contact-card-btn {
    padding: 10px 24px;
    font-size: 16px;
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .process-image img,
  .image-block img,
  .contact-card-image img,
  .btn-primary,
  .btn-secondary,
  .process-cta-btn,
  .contact-card-btn,
  .dot {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .feature-card:hover,
  .process-image img:hover,
  .image-block img:hover,
  .contact-card-image img:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .process-cta-btn:hover,
  .contact-card-btn:hover {
    transform: none !important;
  }
}

/* Optimize image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Remove tap highlight on mobile */
a, button {
  -webkit-tap-highlight-color: transparent;
}