/* ================= HERO SECTION ================= */
.hero-executive {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") center/cover no-repeat;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2,6,23,.9), rgba(15,23,42,.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #f8fafc;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(37,99,235,.15);
  border-left: 4px solid #2563eb;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
}

.hero-content p {
  color: #cbd5f5;
  line-height: 1.7;
}

.hero-highlight {
  margin-top: 25px;
  padding-left: 18px;
  border-left: 4px solid #2563eb;
  font-weight: 600;
  color: #bfdbfe;
}

/* ================= MARKET RESEARCH ================= */
.market-research {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.market-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  transition: transform .4s ease;
}

.market-image img:hover {
  transform: scale(1.03);
}

.market-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.market-content .intro {
  font-size: 1.05rem;
  color: #475569;
}

.market-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.market-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #1e293b;
}

.market-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.market-highlight {
  margin-top: 25px;
  padding-left: 15px;
  border-left: 4px solid #2563eb;
  font-weight: 600;
  color: #2563eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
.market-research {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  font-family: 'Segoe UI', sans-serif;
}

.market-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
  transition: transform .4s ease;
}

.market-image img:hover {
  transform: scale(1.03);
}

.market-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.market-content .intro {
  font-size: 1.05rem;
  color: #475569;
}

.market-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.market-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #1e293b;
}

.market-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.market-highlight {
  margin-top: 25px;
  padding-left: 15px;
  border-left: 4px solid #2563eb;
  font-weight: 600;
  color: #2563eb;
}
/* ================= SECTION STYLING ================= */
.research-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  max-width: 700px;
  margin: 15px auto 60px;
  color: #475569;
  font-size: 17px;
}

/* ================= CARD DESIGN ================= */
.research-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.research-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  opacity: 0;
  transition: 0.4s;
}

.research-card:hover::before {
  opacity: 1;
}

.research-card * {
  position: relative;
  z-index: 2;
}

.research-card:hover {
  transform: translateY(-12px);
}

/* ================= ICON ================= */
.research-icon {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 25px;
  transition: 0.4s;
}

.research-card:hover .research-icon {
  background: #ffffff;
  color: #2563eb;
}

/* ================= TEXT ================= */
.research-title {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
  transition: 0.4s;
}

.research-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
  transition: 0.4s;
}

.research-card:hover .research-title,
.research-card:hover .research-desc {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

:root {
  --bg-dark: #020617;
  --card-bg: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --primary: #38bdf8;
  --secondary: #6366f1;
  --text-light: #e5e7eb;
  --text-muted: #9ca3af;
}

/* ================= SECTION ================= */
.growth-section {
  background: radial-gradient(circle at top, #020617, #000000);
  padding: 90px 0;
  color: var(--text-light);
}

/* ================= HEADINGS ================= */
.section-title {
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  max-width: 800px;
  margin: 20px auto 70px;
  color: var(--text-muted);
  font-size: 17px;
}

/* ================= CARD ================= */
.growth-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 40px 35px;
  height: 100%;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.growth-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(56,189,248,0.12));
  opacity: 0;
  transition: 0.4s;
}

.growth-card:hover::after {
  opacity: 1;
}

.growth-card:hover {
  transform: translateY(-14px);
  border-color: rgba(56,189,248,0.4);
}

/* ================= ICON ================= */
.growth-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #020617;
  margin-bottom: 28px;
}

/* ================= TEXT ================= */
.growth-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.growth-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}
/* ===== INTELLIGENCE INSIGHT ZONE ===== */
.intelligence-insight-zone {
  padding: 110px 0;
  background: #f8fafc;
}

/* ===== HEADER ===== */
.insight-zone-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.insight-zone-header p {
  max-width: 720px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 16px;
}

/* ===== PANEL ===== */
.insight-solution-panel {
  height: 100%;
  padding: 34px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(15,23,42,0.08);
  transition: all 0.4s ease;
}

.insight-solution-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(37,99,235,0.18);
}

/* ===== HEAD ===== */
.insight-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.insight-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.insight-panel-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}

/* ===== TEXT ===== */
.insight-solution-panel p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ===== CAROUSEL ===== */
.insight-solution-carousel .carousel-indicators [data-bs-target] {
  background-color: #2563eb;
}

@media (max-width: 768px) {
  .insight-zone-header h2 {
    font-size: 28px;
  }
}
  /* ===== DARK SOLUTIONS ZONE ===== */
.solutions-governance-zone {
  padding: 110px 0;
  background: radial-gradient(circle at top, #020617, #000000 80%);
  color: #e5e7eb;
}

/* ===== PANEL ===== */
.solutions-focus-panel {
  height: 100%;
  padding: 38px;
  border-radius: 26px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  transition: all 0.45s ease;
  box-shadow: 0 35px 95px rgba(0,0,0,0.65);
}

.solutions-focus-panel:hover {
  transform: translateY(-14px);
  box-shadow: 0 45px 120px rgba(56,189,248,0.35);
}

/* ===== HEADER ===== */
.solutions-panel-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.solutions-panel-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #020617;
}

.solutions-panel-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* ===== LIST ===== */
.solutions-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solutions-panel-list li {
  font-size: 15.6px;
  color: #c7d2fe;
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
}

.solutions-panel-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* ===== MOBILE SLIDER ===== */
.solutions-mobile-slider .carousel-indicators [data-bs-target] {
  background-color: #38bdf8;
}

@media (max-width: 768px) {
  .solutions-panel-header h3 {
    font-size: 20px;
  }
}
 /* ===== STRATEGIC CTA ZONE ===== */
.strategic-cta-zone {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* ===== CTA WRAPPER ===== */
.strategic-cta-wrapper {
  background: #ffffff;
  border-radius: 30px;
  padding: 70px 60px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
}

/* ===== TEXT ===== */
.strategic-cta-wrapper h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.strategic-cta-wrapper p {
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #475569;
  line-height: 1.7;
}

/* ===== ACTION BUTTONS ===== */
.strategic-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-primary-btn {
  padding: 15px 34px;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
}

.cta-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(37, 99, 235, 0.5);
}

.cta-secondary-btn {
  padding: 15px 34px;
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.cta-secondary-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .strategic-cta-wrapper {
    padding: 55px 30px;
  }

  .strategic-cta-wrapper h2 {
    font-size: 28px;
  }

  .strategic-cta-wrapper p {
    font-size: 16px;
  }
}
