/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.8s ease forwards; }
.anim-d1.visible { animation-delay: 0.1s; }
.anim-d2.visible { animation-delay: 0.2s; }
.anim-d3.visible { animation-delay: 0.35s; }
.anim-d4.visible { animation-delay: 0.5s; }
.anim-d5.visible { animation-delay: 0.65s; }
.anim-d6.visible { animation-delay: 0.8s; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: #0a1628; letter-spacing: -0.5px;
}
.logo span { color: #6c5ce7; }
nav { display: flex; align-items: center; gap: 8px; }
nav a {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500; color: #4a4a6a;
  border-radius: 8px; transition: all 0.25s;
  position: relative;
}
nav a:hover { color: #0a1628; background: #f0eef9; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; margin-left: 6px; vertical-align: middle;
  transition: transform 0.2s;
}
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 12px; min-width: 220px; opacity: 0; visibility: hidden;
  transition: all 0.25s; pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: 8px; font-size: 0.88rem;
  color: #4a4a6a; transition: all 0.2s;
}
.dropdown-menu a:hover { background: #f0eef9; color: #0a1628; transform: translateX(4px); }

.btn-header {
  padding: 10px 24px; background: #6c5ce7; color: #fff !important;
  border-radius: 10px; font-weight: 600; font-size: 0.88rem;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-header:hover { background: #5a4bd1; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(108,92,231,0.3); }

/* Mobile menu */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #0a1628; margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #1a1a4e 40%, #2d1b69 70%, #1a1a2e 100%);
  overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(108,92,231,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(129,140,248,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(108,92,231,0.08) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 60px 0;
}
.hero-label {
  display: inline-block; padding: 6px 16px; background: rgba(108,92,231,0.2);
  border: 1px solid rgba(108,92,231,0.3); border-radius: 50px;
  color: #a78bfa; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeUp 0.8s ease forwards;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.15s forwards; opacity: 0;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 530px;
  margin-bottom: 40px; line-height: 1.8;
  animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s forwards; opacity: 0;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #6c5ce7; color: #fff;
  border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #5a4bd1; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.35); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  border-radius: 12px; font-weight: 500; font-size: 0.95rem;
  transition: all 0.3s; cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-shape {
  position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
  width: 60%; max-width: 750px; z-index: 1; pointer-events: none;
}
.hero-shape svg { width: 100%; height: auto; }
.featured-visual-1, .featured-visual-2 {
  background: linear-gradient(135deg, #0a1628 0%, #1a1a4e 60%, #2d1b69 100%) !important;
  display: flex; align-items: center; justify-content: center;
}
.featured-svg { width: 100%; height: 100%; }
.card-svg { width: 100%; height: 100%; }
.business-card-img { background: linear-gradient(135deg, #0a1628, #1a1a4e); }
.about-svg { width: 100%; height: 100%; }

/* ===== BIG NUMBERS ===== */
.numbers {
  padding: 100px 0;
  background: #fafafe;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.number-item { text-align: center; }
.number-item .value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; color: #6c5ce7;
  margin-bottom: 8px;
}
.number-item .label {
  font-size: 0.95rem; color: #6b7280; font-weight: 400;
}

/* ===== FEATURED ARTICLE ===== */
.featured {
  padding: 100px 0;
}
.featured-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.featured-img {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  position: relative;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-img .img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0a1628, #2d1b69);
  color: rgba(255,255,255,0.2); font-size: 4rem;
}
.featured-label {
  display: inline-block; padding: 4px 12px; background: #f0eef9;
  color: #6c5ce7; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; border-radius: 6px;
  margin-bottom: 16px;
}
.featured-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; color: #0a1628;
}
.featured-content p { color: #6b7280; margin-bottom: 24px; font-size: 1rem; line-height: 1.8; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #6c5ce7; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s;
}
.link-arrow:hover { gap: 12px; }
.link-arrow svg { transition: transform 0.3s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== FEATURED REVERSED ===== */
.featured-reversed .featured-grid { direction: rtl; }
.featured-reversed .featured-grid > * { direction: ltr; }
.featured-reversed { background: #fafafe; }

/* ===== BUSINESS / ALOCAÇÃO ===== */
.business {
  padding: 100px 0;
  background: #0a1628;
  color: #fff;
}
.business-header {
  display: grid; grid-template-columns: 7fr 3fr; gap: 40px;
  margin-bottom: 60px; align-items: end;
}
.business-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.business-header p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; }
.business-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.business-card {
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s; cursor: pointer;
  display: flex; flex-direction: column;
}
.business-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108,92,231,0.4);
  box-shadow: 0 20px 60px rgba(108,92,231,0.15);
}
.business-card-img {
  height: 160px; overflow: hidden;
  position: relative;
}
.business-card-img .gradient-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s;
}
.business-card:hover .gradient-bg { transform: scale(1.05); }
.card-cp .gradient-bg { background: linear-gradient(135deg, #1a1a4e, #6c5ce7, #2d1b69); }
.card-ap .gradient-bg { background: linear-gradient(135deg, #0a1628, #4338ca, #1e1b4b); }
.card-sce .gradient-bg { background: linear-gradient(135deg, #1e1b4b, #7c3aed, #0a1628); }
.card-claims .business-card-img { background: linear-gradient(135deg, #0a1628, #2d1b69); }
.business-card-body {
  padding: 20px 24px; flex: 1; display: flex; flex-direction: column;
}
.business-card-body h3 {
  font-size: 1.15rem; margin-bottom: 12px; font-family: 'Playfair Display', serif;
}
.business-card-body p {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6;
  margin-bottom: 16px; flex: 1;
}
.business-card-body .link-arrow { color: #a78bfa; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-box {
  width: 100%; aspect-ratio: 1; border-radius: 24px;
  background: linear-gradient(135deg, #0a1628, #2d1b69, #6c5ce7);
  position: relative; overflow: hidden;
}
.about-visual-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.about-float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: 16px; padding: 24px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-float-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: #6c5ce7;
}
.about-float-card .label { font-size: 0.85rem; color: #6b7280; }
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; color: #0a1628;
}
.about-content p {
  color: #6b7280; margin-bottom: 16px; line-height: 1.8;
}
.about-content .btn-primary { margin-top: 16px; }

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0eef9, #e8e5f7);
}
.newsletter-inner {
  text-align: center; max-width: 540px; margin: 0 auto;
}
.newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; color: #0a1628;
}
.newsletter p { color: #6b7280; margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 12px;
}
.newsletter-form input {
  flex: 1; padding: 14px 20px; border: 1px solid #d1d5db;
  border-radius: 12px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s; background: #fff;
}
.newsletter-form input:focus { border-color: #6c5ce7; }
.newsletter-form button {
  padding: 14px 28px; background: #6c5ce7; color: #fff;
  border: none; border-radius: 12px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #5a4bd1; }

/* ===== FOOTER ===== */
footer {
  background: #0a1628; color: #fff; padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.footer-brand .logo span { color: #a78bfa; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; padding: 6px 0; color: rgba(255,255,255,0.65);
  font-size: 0.9rem; transition: all 0.2s;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .business-cards { grid-template-columns: repeat(2, 1fr); }
  .business-header { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .business-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  nav { display: none; }
  .mobile-toggle { display: block; }
  nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 24px; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 16px 16px;
  }
  nav.open .nav-dropdown .dropdown-menu {
    position: static; transform: none; box-shadow: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    padding-left: 16px;
  }
  .hero-content { padding: 40px 0; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-reversed .featured-grid { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-shape { display: none; }
}

/* ===== SUBPAGE HERO ===== */
.subpage-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a1628 0%, #1a1a4e 40%, #2d1b69 70%, #1a1a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(108,92,231,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(129,140,248,0.1) 0%, transparent 40%);
}
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px;
  animation: fadeUp 0.8s ease forwards;
}
.subpage-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.8;
  animation: fadeUp 0.8s ease 0.15s forwards; opacity: 0;
}
.subpage-hero .breadcrumb {
  margin-bottom: 24px; font-size: 0.85rem; color: rgba(255,255,255,0.4);
  animation: fadeUp 0.8s ease forwards;
}
.subpage-hero .breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.subpage-hero .breadcrumb a:hover { color: #fff; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: #fafafe; }
.content-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; color: #0a1628; }
.content-section h3 { font-size: 1.3rem; margin-bottom: 12px; color: #0a1628; font-family: 'Playfair Display', serif; }
.content-section p { color: #6b7280; line-height: 1.8; margin-bottom: 16px; max-width: 720px; }
.content-section ul { list-style: none; padding: 0; }
.content-section ul li {
  padding: 12px 0 12px 28px; color: #6b7280; line-height: 1.7;
  position: relative; border-bottom: 1px solid #f0f0f0;
}
.content-section ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 8px; height: 8px; border-radius: 50%; background: #6c5ce7;
}

/* ===== STRATEGY DETAILS ===== */
.strategy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.strategy-sidebar {
  background: #f8f7fc; border-radius: 16px; padding: 32px;
  border: 1px solid #e8e5f7; position: sticky; top: 96px;
}
.strategy-sidebar h3 { font-size: 1.1rem; margin-bottom: 20px; }
.strategy-stat { margin-bottom: 20px; }
.strategy-stat .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: #6c5ce7;
}
.strategy-stat .stat-label { font-size: 0.85rem; color: #6b7280; }

/* ===== TEAM GRID ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; margin-top: 40px; }
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.team-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: #6b7280; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: #e8e5f7;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #6c5ce7; border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e8e5f7;
}
.timeline-item h4 {
  font-family: 'Inter', sans-serif; font-weight: 600; color: #6c5ce7;
  font-size: 0.9rem; margin-bottom: 4px;
}
.timeline-item p { color: #6b7280; font-size: 0.95rem; }

/* ===== INSIGHTS GRID ===== */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; margin-top: 40px; }
.insight-card {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid #e5e7eb; transition: all 0.3s;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.insight-card-img { height: 200px; }
.insight-card-body { padding: 24px; }
.insight-card-body .tag {
  display: inline-block; padding: 3px 10px; background: #f0eef9;
  color: #6c5ce7; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; margin-bottom: 12px;
}
.insight-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.insight-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.insight-card-body .link-arrow { font-size: 0.88rem; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; color: #1a1a2e; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #d1d5db;
  border-radius: 10px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s; background: #fff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #6c5ce7; }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-card {
  background: #f8f7fc; border-radius: 16px; padding: 32px;
  border: 1px solid #e8e5f7; margin-bottom: 24px;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.contact-info-card p { font-size: 0.9rem; color: #6b7280; margin-bottom: 8px; }

/* ===== ESG ===== */
.esg-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.esg-pillar {
  padding: 32px; border-radius: 16px; background: #fff;
  border: 1px solid #e5e7eb; text-align: center; transition: all 0.3s;
}
.esg-pillar:hover { border-color: #6c5ce7; box-shadow: 0 8px 24px rgba(108,92,231,0.1); }
.esg-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.esg-pillar h3 { font-size: 1.15rem; margin-bottom: 12px; }
.esg-pillar p { font-size: 0.9rem; }

@media (max-width: 768px) {
  .strategy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .esg-pillars { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}