/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ===== HERO SECTION ===== */
.hero--home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6a 50%, #0f2d5c 100%);
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-video .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.85) 0%, rgba(10, 31, 68, 0.95) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.hero--home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-label svg {
  width: 18px;
  height: 18px;
  stroke: #122954;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 900px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line.highlight {
  color: #122954;
  background: linear-gradient(90deg, #122954, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

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

.hero-stat .stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #122954;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* ===== CLIENT STRIP ===== */
.client-strip {
  background: #fff;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
}

.client-strip-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logos {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.client-logo-item:hover {
  background: #fff;
  border-color: #122954;
  color: #122954;
}

.client-logo-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.section-services-home {
  padding: 6rem 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: #122954;
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
  transform: translateY(-12px);
}

.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.service-card-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-list li {
  font-size: 0.85rem;
  color: #475569;
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #122954;
  font-weight: 700;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #122954;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card-link:hover {
  gap: 0.75rem;
  color: #14b8a6;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Mobile Carousel Indicators */
.carousel-indicators {
  display: none;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #122954;
  width: 24px;
  border-radius: 4px;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== WHY UNIQUE SECTION ===== */
.section-why-unique {
  padding: 6rem 0;
  background: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.why-header .section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #122954;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.why-header .why-intro {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.why-feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  background: #fff;
  border-color: #122954;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
  transform: translateX(8px);
}

.why-feature-item .feature-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #122954;
  line-height: 1;
  flex-shrink: 0;
}

.why-feature-item .feature-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.why-feature-item .feature-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Visual Panel */
.why-panel {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
}

.why-panel-image {
  position: relative;
  height: 300px;
}

.why-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-panel:hover .why-panel-image img {
  transform: scale(1.05);
}

.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.why-panel-content {
  padding: 2rem;
}

.panel-quote {
  margin-bottom: 2rem;
}

.panel-quote .quote-icon {
  width: 32px;
  height: 32px;
  color: #122954;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.panel-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1e293b;
  margin: 0;
}

.panel-quote strong {
  color: #122954;
}

.panel-locations {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.location-flag {
  font-size: 1.5rem;
}

.location-item strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.location-item span {
  font-size: 0.875rem;
  color: #64748b;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  gap: 0.75rem;
}

/* ===== SECTORS SECTION ===== */
.section-sectors-home {
  padding: 6rem 0;
  background: #f8fafc;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.sector-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  border-color: #122954;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  transform: translateY(-8px);
}

.sector-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.sector-card:hover .sector-card-icon {
  background: linear-gradient(135deg, #122954, #14b8a6);
  transform: scale(1.1) rotate(-5deg);
}

.sector-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #122954;
  transition: stroke 0.4s ease;
}

.sector-card:hover .sector-card-icon svg {
  stroke: #fff;
}

.sector-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sector-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.sector-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #122954;
  transition: gap 0.3s ease;
}

.sector-card:hover .sector-card-link {
  gap: 0.75rem;
}

.sector-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* ===== PROCESS SECTION ===== *//* ===== PROCESS SECTION - HORIZONTAL LAYOUT ===== */
.section-process {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: '';
  position: absolute;
  inset: 0;

  background-color: #0a0f1e; /* fallback */

  background-image: 
    linear-gradient(rgba(10,15,30,0.85), rgba(10,15,30,0.95)),
    url('https://satellitetransghana.com/wp-content/uploads/2020/09/1592408605-GettyImages-1097671872.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  pointer-events: none;
}
.process-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.process-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.process-header h2::before,
.process-header h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  max-width: 200px;
}

.process-steps-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.process-step-h {
  flex: 1;
  max-width: 280px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.step-number-circle {
  width: 60px;
  height: 60px;
  background: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.process-step-h h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.process-step-h p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-top: 2.5rem;
}

.process-arrow svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .process-step-h {
    max-width: 240px;
  }
  
  .process-step-h h3 {
    font-size: 1rem;
  }
  
  .process-step-h p {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .process-steps-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .process-step-h {
    max-width: 400px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .step-number-circle {
    margin: 0;
    flex-shrink: 0;
  }
  
  .process-step-h h3,
  .process-step-h p {
    text-align: left;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }
  
  .process-header h2::before,
  .process-header h2::after {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .section-process {
    padding: 3rem 0;
  }
  
  .process-header {
    margin-bottom: 2.5rem;
  }
  
  .process-header h2 {
    font-size: 1.25rem;
    gap: 1rem;
  }
  
  .process-header h2::before,
  .process-header h2::after {
    max-width: 50px;
  }
  
  .process-step-h {
    max-width: 100%;
    gap: 1rem;
  }
  
  .step-number-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-step-h h3 {
    font-size: 0.95rem;
  }
  
  .process-step-h p {
    font-size: 0.85rem;
  }
  
  .process-arrow svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== NEWS SECTION ===== */
.section-news-home {
  padding: 6rem 0;
  background: #fff;
}

.news-carousel-wrap {
  position: relative;
  margin-top: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: #122954;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
  transform: translateY(-8px);
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.875rem;
  background: rgba(16, 185, 129, 0.95);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-tag.news-tag-urgent {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.news-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.news-meta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #122954;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-read-more:hover {
  gap: 0.75rem;
  color: #14b8a6;
}

.news-read-more svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.news-read-more:hover svg {
  transform: translateX(4px);
}

/* Carousel Controls */
.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #122954;
  border-color: #122954;
}

.carousel-btn:hover svg {
  stroke: #fff;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: #0f172a;
  transition: stroke 0.3s ease;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #122954;
  width: 24px;
  border-radius: 4px;
}

/* ===== FAQ SECTION ===== */
.section-faq-home {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: #122954;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: #f8fafc;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  stroke: #122954;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.7;
  border-top: 1px solid #f1f5f9;
  margin-top: 0;
  padding-top: 1rem;
}

/* ===== CTA BAND ===== */
.cta-band--home {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6a 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band--home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero--home .hero-title {
    font-size: 3rem;
  }
  
  .why-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-visual-col {
    order: -1;
  }
  
  .why-panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .hero--home {
    min-height: 90vh;
    padding: 6rem 0 3rem;
  }
  
  .hero--home .hero-title {
    font-size: 2.5rem;
  }
  
  .hero--home .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .hero-stat .stat-value {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  /* Mobile carousel for services */
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  
  .service-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
  
  .carousel-indicators {
    display: flex;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-marker {
    width: 60px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .news-grid::-webkit-scrollbar {
    display: none;
  }
  
  .news-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
  
  .carousel-controls {
    display: flex;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero--home .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  
  .why-feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .panel-locations {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, #122954, #14b8a6);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.btn-outline:hover {
  background: #0f172a;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header--center .divider {
  margin-left: auto;
  margin-right: auto;
}


.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-header .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #122954, #14b8a6);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.section-header p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto;
}

/* ===== CONTAINER & SECTION BASE ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section--alt {
  background: #f8fafc;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}