/* ============================================================
   wealth-corp.css — Shared styles for Wealth Management & Corporate Banking pages
   ============================================================ */

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.wc-hero {
  background: #0d2b2b;
  padding: 5.5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.wc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 5% 50%, rgba(0,158,96,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(139,26,74,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.wc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wc-hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00c070;
  margin-bottom: 1rem;
}

.wc-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.3rem;
}

.wc-hero-title span { color: #00c070; }

.wc-hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.wc-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.wc-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #009e60;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  padding: 0.82rem 2rem;
  border: 2px solid #009e60;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.wc-btn-primary:hover {
  background: #00c070;
  border-color: #00c070;
  color: #0d2b2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,192,112,0.38);
}

.wc-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  padding: 0.82rem 2rem;
  border: 2px solid rgba(255,255,255,0.28);
  transition: all 0.22s ease;
}

.wc-btn-outline:hover {
  border-color: #00c070;
  color: #00c070;
  transform: translateY(-2px);
}

/* Hero stats */
.wc-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.wc-hero-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,192,112,0.18);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.wc-hero-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #00c070;
  display: block;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.wc-hero-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* ----------------------------------------------------------
   SECTION COMMON
   ---------------------------------------------------------- */
.wc-section {
  padding: 5.5rem 1.5rem;
}

.wc-section-alt {
  background: #f2ede0;
}

.wc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wc-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.wc-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #009e60;
  margin-bottom: 0.7rem;
}

.wc-rule {
  width: 44px;
  height: 3px;
  background: #009e60;
  border-radius: 2px;
  margin: 0 auto 1.6rem;
}

.wc-title {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #0d2b2b;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.wc-body {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.72;
  margin: 0;
}

/* ----------------------------------------------------------
   FEATURES GRID
   ---------------------------------------------------------- */
.wc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wc-feature-card {
  background: #ffffff;
  border: 1px solid #e0dbd0;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.wc-feature-card:hover {
  border-color: #009e60;
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.wc-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,158,96,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.wc-feature-icon svg {
  width: 24px;
  height: 24px;
  color: #009e60;
}

.wc-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b2b;
  margin-bottom: 0.6rem;
}

.wc-feature-text {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   TWO-COLUMN CONTENT
   ---------------------------------------------------------- */
.wc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.wc-two-col-text p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.wc-two-col-text p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   HIGHLIGHT LIST
   ---------------------------------------------------------- */
.wc-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wc-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.65;
}

.wc-highlight-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,158,96,0.12);
  border: 1.5px solid #009e60;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009e60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* ----------------------------------------------------------
   PROCESS STEPS
   ---------------------------------------------------------- */
.wc-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wc-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid #e0dbd0;
  position: relative;
}

.wc-step:last-child { border-bottom: none; }

.wc-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0d2b2b;
  border: 2px solid #009e60;
  color: #00c070;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wc-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d2b2b;
  margin-bottom: 0.4rem;
}

.wc-step-text {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .wc-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .wc-hero-stats {
    max-width: 400px;
  }

  .wc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wc-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .wc-features-grid {
    grid-template-columns: 1fr;
  }

  .wc-section {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 580px) {
  .wc-hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .wc-hero-actions {
    flex-direction: column;
  }

  .wc-btn-primary,
  .wc-btn-outline {
    text-align: center;
    justify-content: center;
  }

  .wc-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}
