/* ==========================================================================
   Tadem — Building Strength. Delivering Trust.
   Main stylesheet
   ========================================================================== */

:root {
  --pink: #E6058F;
  --violet: #8B15A0;
  --blue: #131A8F;
  --accent-green: #1E9E63;
  --gradient: linear-gradient(100deg, var(--pink) 0%, var(--violet) 52%, var(--blue) 100%);
  --gradient-soft: linear-gradient(100deg, rgba(230,5,143,.10) 0%, rgba(139,21,160,.10) 52%, rgba(19,26,143,.10) 100%);

  --navy: #080B22;
  --navy-2: #10143A;
  --navy-3: #171B4D;

  --ink: #13152C;
  --muted: #5B6072;
  --muted-light: #8A8FA3;
  --line: #E7E7F1;
  --bg-soft: #F7F7FB;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(11, 15, 45, .08);
  --shadow-lg: 0 20px 50px rgba(11, 15, 45, .14);
  --container: 1220px;

  --ff-head: "Poppins", "Segoe UI", sans-serif;
  --ff-body: "Inter", "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1em; }
.justify { text-align: justify; text-justify: inter-word; hyphens: auto; }
button { font-family: inherit; cursor: pointer; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.section-pad { padding: 88px 0; }
@media (max-width: 900px) { .section-pad { padding: 60px 0; } }

/* ---------- Utility text ---------- */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.section-head { max-width: 900px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 2.3vw, 2.1rem); white-space: normal; }
@media (min-width: 900px) { .section-head.center h2, .section-head.center p { max-width: 880px; margin-left: auto; margin-right: auto; } }
.section-head p { color: var(--muted); font-size: 1.04rem; margin: 0; }
.text-muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn i, .btn svg { font-size: .85em; transition: transform .2s ease; }
.btn:hover i, .btn:hover svg { transform: translateX(3px); }
.btn-gradient { background: var(--gradient); color: #fff; box-shadow: 0 10px 24px rgba(139, 21, 160, .28); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(139, 21, 160, .38); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border-color: rgba(19,21,44,.2); color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(19,21,44,.06);
  transition: box-shadow .25s ease;
}
/* NOTE: intentionally no backdrop-filter here — it would make this header
   a new "containing block" for the fixed-position mobile nav inside it,
   breaking the full-height mobile menu overlay. */
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(11,15,45,.08); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
}
.main-nav a:hover { color: var(--violet); }
.main-nav a.active { color: var(--violet); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: all .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 82px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 30px;
    gap: 6px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header-actions .btn-gradient span { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-gradient { padding: 12px 16px; }
}
@media (max-width: 560px) {
  .header-actions .btn-gradient { display: none; }
}

/* ==========================================================================
   Hero (dark, graphic skyline — no photography)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-split { display: flex; align-items: stretch; }
.hero-text {
  width: 44%; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
  background: var(--navy);
  padding: 56px 48px 56px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.hero-photo {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 0%, rgba(8,11,34,.6) 8%, rgba(8,11,34,0) 34%);
  pointer-events: none;
}
.hero-home .hero-split { min-height: 560px; }
.hero-inner-page .hero-split { min-height: 320px; }

.hero-home { padding: 0; }
.hero-home .hero-inner { max-width: 640px; }
.hero-home .kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-home .kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); }
.hero-home h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: #fff; margin-bottom: 18px; }
.hero-home h1 .accent {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-home .lead { font-size: 1.12rem; color: rgba(255,255,255,.78); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-inner-page { padding: 0; }
.hero-inner-page .breadcrumb {
  display: flex; gap: 8px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.hero-inner-page .breadcrumb a { color: rgba(255,255,255,.6); }
.hero-inner-page .breadcrumb a:hover { color: #fff; }
.hero-inner-page .breadcrumb .sep { opacity: .5; }
.hero-inner-page .breadcrumb .current { color: var(--pink); font-weight: 600; }
.hero-inner-page h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; margin-bottom: 14px; }
.hero-inner-page .lead { color: rgba(255,255,255,.75); font-size: 1.06rem; max-width: 560px; margin: 0; }
.hero-bar { height: 4px; width: 68px; background: var(--gradient); border-radius: 3px; margin-bottom: 20px; }

@media (max-width: 900px) {
  .hero-split { flex-direction: column; }
  .hero-text {
    width: 100%; padding: 40px 24px 36px;
  }
  .hero-home .hero-split { min-height: 0; }
  .hero-inner-page .hero-split { min-height: 0; }
  .hero-photo { flex: none; width: 100%; height: 220px; }
  .hero-photo::before {
    background: linear-gradient(180deg, var(--navy) 0%, rgba(8,11,34,.6) 10%, rgba(8,11,34,0) 40%);
  }
  .hero-home .hero-inner { max-width: 100%; }
}

/* ==========================================================================
   Stat strip
   ========================================================================== */
.stat-strip { padding: 64px 0 0; }
.about-flex {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-flex .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.stat-card .stat-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 2px solid var(--violet); color: var(--violet); font-size: 1.4rem; margin-bottom: 16px;
}
.stat-card:nth-child(1) .stat-icon { border-color: var(--pink); color: var(--pink); }
.stat-card:nth-child(2) .stat-icon { border-color: var(--violet); color: var(--violet); }
.stat-card:nth-child(3) .stat-icon { border-color: var(--blue); color: var(--blue); }
.stat-card:nth-child(4) .stat-icon { border-color: var(--pink); color: var(--pink); }
.stat-card .num { font-family: var(--ff-head); font-size: 1.65rem; font-weight: 700; color: var(--ink); }
.stat-card .label { color: var(--muted); font-size: .92rem; margin-top: 2px; }
@media (max-width: 900px) {
  .about-flex { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 480px) {
  .about-flex .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
}

/* ==========================================================================
   Industry cards
   ========================================================================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card .art {
  height: 150px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.industry-card .badge {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  position: absolute; left: 16px; bottom: -28px;
  border: 4px solid #fff;
}
.industry-card .body { padding: 40px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.industry-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.industry-card ul { margin-bottom: 18px; flex: 1; }
.industry-card li {
  font-size: .9rem; color: var(--muted); padding-left: 18px; position: relative; margin-bottom: 6px;
}
.industry-card li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
}
.industry-card .go { font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; color: var(--violet); }
.industry-card .go i { transition: transform .2s ease; }
.industry-card:hover .go i { transform: translateX(4px); }

.art-a, .art-b, .art-c, .art-d { background: #170D30; }
.art img, .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.badge-a { background: linear-gradient(135deg,#F0157F,#B4157F); }
.badge-b { background: linear-gradient(135deg,#8B15A0,#5A1C9C); }
.badge-c { background: linear-gradient(135deg,#1B2FAE,#131A8F); }
.badge-d { background: linear-gradient(135deg,#B4157F,#5A1C9C); }

@media (max-width: 1080px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services (home preview grid + full service blocks)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-tile {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: #fff; }
.service-tile .ic {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; margin-bottom: 18px; background: #fff; border: 2px solid var(--violet);
}
.service-tile .ic.ic-pink { border-color: var(--pink); color: var(--pink); }
.service-tile .ic.ic-purple { border-color: var(--violet); color: var(--violet); }
.service-tile .ic.ic-blue { border-color: var(--blue); color: var(--blue); }
.service-tile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-tile p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-block {
  display: grid;
  grid-template-columns: 180px 1fr 280px;
  gap: 30px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:first-of-type { padding-top: 0; }
.service-block:last-of-type { border-bottom: none; }
.service-block .thumb {
  position: relative;
  height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #170D30;
}
.service-block .thumb .num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 16px rgba(20,10,40,.35);
}
.service-block .thumb .svc-badge {
  position: absolute; bottom: -18px; right: -18px; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%; color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid #fff; box-shadow: 0 8px 18px rgba(20,10,40,.25);
}
.service-block:nth-of-type(1) .svc-badge { background: linear-gradient(135deg,#F0157F,#B4157F); }
.service-block:nth-of-type(2) .svc-badge { background: linear-gradient(135deg,#8B15A0,#5A1C9C); }
.service-block:nth-of-type(3) .svc-badge { background: linear-gradient(135deg,#1B2FAE,#131A8F); }
.service-block:nth-of-type(4) .svc-badge { background: linear-gradient(135deg,#22b573,#128a53); }
.service-block:nth-of-type(5) .svc-badge { background: linear-gradient(135deg,#F0157F,#B4157F); }
.service-block:nth-of-type(6) .svc-badge { background: linear-gradient(135deg,#8B15A0,#5A1C9C); }
.service-block h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-block > .content > p { color: var(--muted); margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span {
  font-size: .84rem; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.service-highlight {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.service-highlight .h-ic { color: var(--violet); font-size: 2.1rem; margin-bottom: 12px; }
.service-block:nth-of-type(1) .h-ic { color: var(--pink); }
.service-block:nth-of-type(2) .h-ic { color: var(--violet); }
.service-block:nth-of-type(3) .h-ic { color: var(--blue); }
.service-block:nth-of-type(4) .h-ic { color: var(--accent-green); }
.service-block:nth-of-type(5) .h-ic { color: var(--pink); }
.service-block:nth-of-type(6) .h-ic { color: var(--violet); }
.service-highlight h4 { font-size: 1rem; margin-bottom: 6px; }
.service-highlight p { font-size: .89rem; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block .thumb { height: 200px; }
  .service-highlight { margin-left: 0; }
}

/* ==========================================================================
   Why choose Tadem (dark band)
   ========================================================================== */
.why-band { background: var(--navy); color: #fff; padding: 64px 0; }
.why-band h2 { color: #fff; text-align: center; margin-bottom: 44px; font-size: clamp(1.5rem, 2.4vw, 2.05rem); }
.why-band h2 .accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.why-item { text-align: center; position: relative; }
@media (min-width: 1081px) {
  .why-item:not(:first-child)::before {
    content: ""; position: absolute; left: -11px; top: 6px; bottom: 6px; width: 1px;
    background: rgba(255,255,255,.16);
  }
}
.why-item .ic {
  width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  color: #fff;
}
.why-item h4 { color: #fff; font-size: .98rem; margin-bottom: 6px; }
.why-item p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }
@media (max-width: 1080px) { .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 34px; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Client logo marquee
   ========================================================================== */
.clients-section { padding: 70px 0; background: var(--bg-soft); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 46px; width: auto; object-fit: contain; opacity: .78; transition: opacity .2s ease, filter .2s ease; filter: grayscale(15%); }
.marquee-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) { .marquee-track img { height: 34px; } .marquee-track { gap: 30px; } }

.marquee-wrap { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.marquee-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  z-index: 3; cursor: pointer; transition: color .2s ease, transform .2s ease;
}
.marquee-arrow:hover { color: var(--violet); transform: translateY(-50%) scale(1.06); }
.marquee-arrow.prev { left: 6px; }
.marquee-arrow.next { right: 6px; }
.marquee.paused .marquee-track { animation-play-state: paused; }
.marquee-more { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 22px; font-style: italic; }
@media (max-width: 700px) { .marquee-arrow { display: none; } }

.clients-grid-section { padding: 20px 0 90px; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.client-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  height: 96px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.client-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.client-tile img { max-height: 54px; max-width: 100%; }
@media (max-width: 980px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Leadership
   ========================================================================== */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.leader-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}
.leader-card { align-items: stretch; }
.leader-card .photo { width: 42%; flex-shrink: 0; position: relative; min-height: 340px; }
.leader-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.leader-card .info { padding: 28px 26px; display: flex; flex-direction: column; }
.leader-card .name { font-size: 1.22rem; margin-bottom: 2px; }
.leader-card .role {
  font-weight: 700; font-size: .88rem;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px; display: inline-block;
}
.leader-card .creds { font-size: .85rem; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.leader-card .bio { font-size: .92rem; color: var(--muted); margin-bottom: 8px; }
.leader-card .bio:last-of-type { margin-bottom: 16px; }
.leader-card .li-link {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-soft); color: var(--violet); border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.leader-card .li-link:hover { background: var(--gradient); color: #fff; transform: translateY(-2px); }

/* Compact leadership preview (home page) */
.leader-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.leader-mini {
  display: flex; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px; box-shadow: var(--shadow);
}
.leader-mini img { width: 112px; height: 144px; border-radius: var(--radius); object-fit: cover; object-position: 50% 22%; flex-shrink: 0; }
.leader-mini .name { font-size: 1.05rem; margin-bottom: 2px; }
.leader-mini .role { font-weight: 700; font-size: .82rem; color: var(--violet); display: block; margin-bottom: 6px; }
.leader-mini .creds { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.leader-mini .li-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft); color: var(--violet); border: 1px solid var(--line); font-size: .82rem;
}

@media (max-width: 900px) {
  .leader-grid { grid-template-columns: 1fr; }
  .leader-preview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .leader-card { flex-direction: column; }
  .leader-card .photo { width: 100%; height: 320px; }
}
@media (max-width: 480px) {
  .leader-mini { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Timeline (About — Our Journey)
   ========================================================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.timeline-item { position: relative; text-align: left; }
.timeline-item .dot {
  width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 2px solid var(--violet);
  display: flex; align-items: center; justify-content: center; color: var(--violet); font-size: 1.55rem;
  margin-bottom: 20px; position: relative; z-index: 2;
}
.timeline-item:nth-of-type(1) .dot { border-color: var(--pink); color: var(--pink); }
.timeline-item:nth-of-type(2) .dot { border-color: var(--violet); color: var(--violet); }
.timeline-item:nth-of-type(3) .dot { border-color: var(--blue); color: var(--blue); }
.timeline-item:nth-of-type(4) .dot { border-color: var(--accent-green); color: var(--accent-green); }
.timeline-item.is-current::after {
  content: ""; position: absolute; top: 66px; left: 22px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink); z-index: 3;
}
.timeline-item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.timeline-item p { font-size: .89rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .timeline::before { display: none; }
}
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* ==========================================================================
   Values
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value-card { text-align: center; padding: 8px; }
.value-card .ic {
  width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: #fff; border: 2px solid var(--pink); color: var(--pink);
}
.value-card:nth-child(1) .ic { border-color: var(--pink); color: var(--pink); }
.value-card:nth-child(2) .ic { border-color: var(--violet); color: var(--violet); }
.value-card:nth-child(3) .ic { border-color: var(--blue); color: var(--blue); }
.value-card:nth-child(4) .ic { border-color: var(--accent-green); color: var(--accent-green); }
.value-card:nth-child(5) .ic { border-color: var(--pink); color: var(--pink); }
.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: .87rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; } }
@media (max-width: 560px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Industries detail page
   ========================================================================== */
.industry-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.industry-block:first-of-type { padding-top: 0; }
.industry-block:last-of-type { border-bottom: none; }
.industry-block .thumb {
  height: 220px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.industry-block .thumb .tag {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-weight: 700; font-family: var(--ff-head);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.industry-block .thumb i { color: #fff; font-size: 2.3rem; opacity: .9; }
.industry-block .vert-badge {
  width: 64px; height: 64px; border-radius: 50%; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(20,10,40,.16);
}
.industry-block.block-a .vert-badge { background: linear-gradient(135deg,#F0157F,#B4157F); }
.industry-block.block-b .vert-badge { background: linear-gradient(135deg,#8B15A0,#5A1C9C); }
.industry-block.block-c .vert-badge { background: linear-gradient(135deg,#1B2FAE,#131A8F); }
.industry-block.block-d .vert-badge { background: linear-gradient(135deg,#22b573,#128a53); }
.industry-block.block-a h3 { color: var(--pink); }
.industry-block.block-b h3 { color: var(--violet); }
.industry-block.block-c h3 { color: var(--blue); }
.industry-block.block-d h3 { color: var(--accent-green); }
.industry-block h3 { font-size: 1.4rem; margin-bottom: 8px; }
.industry-block > div > p.desc { color: var(--muted); margin-bottom: 22px; max-width: 640px; }
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.sub-item { display: flex; gap: 14px; }
.sub-item .ic {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 1.5px solid var(--violet); color: var(--violet);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.industry-block.block-a .sub-item .ic { border-color: var(--pink); color: var(--pink); }
.industry-block.block-b .sub-item .ic { border-color: var(--violet); color: var(--violet); }
.industry-block.block-c .sub-item .ic { border-color: var(--blue); color: var(--blue); }
.industry-block.block-d .sub-item .ic { border-color: var(--accent-green); color: var(--accent-green); }
.sub-item h5 { font-size: .96rem; margin-bottom: 4px; }
.sub-item p { font-size: .87rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) {
  .industry-block { grid-template-columns: 1fr; }
  .industry-block .thumb { height: 160px; }
  .sub-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: #fff;
}
.cta-banner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,.88); margin: 0; }
.cta-banner .btn-outline-light { border-color: rgba(255,255,255,.6); background: #fff; color: var(--violet); }
.cta-banner .btn-outline-light:hover { background: rgba(255,255,255,.9); }
.cta-wrap { padding: 0 0 90px; }
@media (max-width: 700px) { .cta-banner { flex-direction: column; text-align: center; padding: 34px 26px; } }

/* Full-bleed CTA band (edge-to-edge, matching blueprint) */
.cta-full { padding: 54px 0; }
.cta-full.grad { background: var(--gradient); }
.cta-full.navy { background: var(--navy); }
.cta-full .cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-full h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.cta-full p { color: rgba(255,255,255,.85); margin: 0; }
.cta-full.grad .btn-outline-light { border-color: rgba(255,255,255,.7); background: #fff; color: var(--violet); }
.cta-full.grad .btn-outline-light:hover { background: rgba(255,255,255,.92); }
@media (max-width: 700px) { .cta-full .cta-inner { flex-direction: column; text-align: center; } }

/* Commitment banner (about page) */
.commit-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}
.commit-banner .inner {
  position: relative; z-index: 2; width: 44%; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 44px;
}
.commit-banner .commit-bg {
  flex: 1;
  background-size: cover; background-position: center 40%;
  position: relative;
}
.commit-banner .commit-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 0%, rgba(8,11,34,.6) 8%, rgba(8,11,34,0) 34%);
  pointer-events: none;
}
.commit-banner .eyebrow { color: var(--pink); background: none; -webkit-text-fill-color: initial; }
.commit-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.commit-banner p { color: rgba(255,255,255,.75); font-size: 1.02rem; margin: 0; }
@media (max-width: 700px) {
  .commit-banner { flex-direction: column; min-height: 0; }
  .commit-banner .inner { width: 100%; padding: 36px 26px; }
  .commit-banner .commit-bg { flex: none; height: 200px; }
  .commit-banner .commit-bg::before {
    background: linear-gradient(180deg, var(--navy) 0%, rgba(8,11,34,.6) 10%, rgba(8,11,34,0) 40%);
  }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: flex-start; }
.contact-info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; }
.contact-info-item {
  display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.contact-info-item .ic {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  background: #fff; border: 2px solid var(--pink); color: var(--pink);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-item h4 { font-size: .98rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: .93rem; color: var(--muted); margin: 0; display: block; }
.contact-info-item a:hover { color: var(--violet); }
.contact-side-cta {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: 28px 26px; position: relative; overflow: hidden;
}
.contact-side-cta::before { content:""; position:absolute; inset:0; background: radial-gradient(70% 130% at 90% 10%, rgba(230,5,143,.35), transparent 60%); }
.contact-side-cta .inner { position: relative; }
.contact-side-cta h4 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.contact-side-cta p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 14px; font-family: inherit; font-size: .94rem; color: var(--ink);
  background: var(--bg-soft); transition: border-color .2s ease, background .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted-light); margin-top: 14px; text-align: center; }
.form-status { display: none; padding: 13px 16px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; margin-bottom: 16px; }
.form-status.success { display: block; background: #E9F9EF; color: #1B7A3E; }
.form-status.error { display: block; background: #FDECEC; color: #B3261E; }

.map-cta-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.talk-cta {
  background: var(--navy); color: #fff; padding: 40px 36px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: space-between;
}
.talk-cta .left { display: flex; gap: 16px; align-items: center; max-width: 340px; }
.talk-cta .left .ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--pink); flex-shrink: 0; }
.talk-cta h4 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.talk-cta p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.talk-cta .phone-btn {
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 14px 24px;
  color: var(--pink); font-weight: 700; text-align: center;
}
.map-embed { min-height: 320px; position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-embed .map-open-link {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #fff; color: var(--ink); font-weight: 700; font-size: .84rem;
  padding: 9px 14px; border-radius: 999px; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 7px;
}
.map-embed .map-open-link i { color: var(--pink); }
.map-embed .map-open-link:hover { color: var(--violet); }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-cta-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 901px) {
  .footer-grid > div { position: relative; }
  .footer-grid > div:not(:first-child)::before {
    content: ""; position: absolute; left: -18px; top: 2px; bottom: 2px; width: 1px;
    background: rgba(255,255,255,.14);
  }
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); margin: 0; }
.footer-social { margin-top: 22px; }
.footer-social .label {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.footer-social .icons { display: flex; gap: 10px; }
.footer-social .icons a {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social .icons a:hover { background: var(--gradient); border-color: transparent; transform: translateY(-2px); }
.footer-col h5 { color: #fff; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: .92rem; color: rgba(255,255,255,.62); }
.footer-col ul li a:hover { color: var(--pink); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: .9rem; margin-bottom: 12px; color: rgba(255,255,255,.62); }
.footer-col .contact-line i { color: var(--pink); margin-top: 3px; flex-shrink: 0; }
.footer-col .contact-line a { color: rgba(255,255,255,.62); }
.footer-col .contact-line a:hover { color: #fff; }
.footer-bottom {
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .policy-links { display: flex; align-items: center; gap: 18px; }
.footer-bottom .policy-links a:not(:last-child) { position: relative; padding-right: 18px; }
.footer-bottom .policy-links a:not(:last-child)::after {
  content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(255,255,255,.25);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Misc
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(139,21,160,.32);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   Legal pages (Privacy Policy / Terms & Conditions)
   ========================================================================== */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.2em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); font-size: 1.02rem; }
.legal-note {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--pink);
  border-radius: var(--radius-sm); padding: 16px 20px; color: var(--muted); font-size: .93rem; margin-bottom: 2.4em;
}
