/* ============================================================
   DIGITALLY TALENTED — WordPress Theme Stylesheet
   Bootstrap 5 compatible — variables and custom components
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #000047;
  --pink: #E43298;
  --orange: #FE643A;
  --pink-light: #F74DB2;
  --pink-dark: #C42882;
  --gradient: linear-gradient(135deg, #E43298, #FE643A);
  --light: #F5F2FA;
  --gray: #6B6B8D;
  --white: #FFFFFF;
  --heading: 'Plus Jakarta Sans', sans-serif;
  --body: 'DM Sans', sans-serif;
  --max: 1200px;
  --pad: 100px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 71, .98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.25); }

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-text { font-family: var(--heading); font-weight: 800; font-size: 20px; color: #fff; }

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none;
  color: rgba(255,255,255,.85);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
nav a:hover,
nav a[aria-current="page"] { color: var(--pink); }

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .9; }

.nav-outline {
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .2s;
}
.nav-outline:hover { border-color: #fff; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 991px) {
  .hamburger { display: flex; }
  nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(0,0,47,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  nav.open { transform: translateY(0); opacity: 1; }
  nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 16px; }
  .nav-cta, .nav-outline { text-align: center; margin-top: 8px; }
}

/* === SHARED BUTTONS === */
.btn-g {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient);
  color: #fff; padding: 16px 36px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  text-decoration: none; font-family: var(--heading);
  box-shadow: 0 4px 20px rgba(228,50,152,.25);
  transition: transform .2s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-g:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(228,50,152,.35); color: #fff; }
.btn-g svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  padding: 15px 34px; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  text-decoration: none; font-family: var(--heading);
  border: 2px solid rgba(255,255,255,.2);
  transition: all .2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); color: #fff; }

.btn-next {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient); color: #fff;
  padding: 14px 36px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; font-family: var(--heading);
  box-shadow: 0 4px 20px rgba(228,50,152,.25);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(228,50,152,.35); }
.btn-next:disabled { opacity: .35; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-next svg { width: 16px; height: 16px; }

.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gray);
  padding: 14px 24px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--heading);
  transition: color .2s;
}
.btn-back:hover { color: var(--dark); }

/* === SECTION HEADINGS === */
.sec-head, .section-header { text-align: center; margin-bottom: 60px; }
.sec-head h2, .section-header h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; color: var(--dark);
  margin-bottom: 12px; letter-spacing: -.5px;
}
.sec-head p, .section-header p {
  font-size: 17px; color: var(--gray);
  max-width: 560px; margin: 0 auto;
}

/* === SHARED ICON BOXES === */
.ci { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ci svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ci-pk { background: rgba(228,50,152,.1); }
.ci-pk svg { stroke: var(--pink); }
.ci-or { background: rgba(254,100,58,.1); }
.ci-or svg { stroke: var(--orange); }
.ci-dk { background: rgba(0,0,71,.08); }
.ci-dk svg { stroke: var(--dark); }
.ci-gr { background: rgba(0,180,120,.1); }
.ci-gr svg { stroke: #00B478; }
.ci-bl { background: rgba(60,100,255,.1); }
.ci-bl svg { stroke: #3C64FF; }

/* === TRUSTED BY === */
.trusted { padding: 60px 24px; background: var(--white); }
.trusted-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.trusted-inner > p {
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray); margin-bottom: 32px;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; opacity: .45;
}
.logos-row span, .logo-item {
  font-family: var(--heading); font-weight: 700;
  font-size: 20px; color: var(--dark);
}
.logos-row img.logo-item { height: 36px; width: auto; object-fit: contain; }

/* === ANIMATIONS === */
.fu, .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fu.vis, .fade-up.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .2; }
  50% { transform: scale(1.1); opacity: .3; }
}

/* === FOOTER === */
footer { background: #00003A; color: rgba(255,255,255,.7); padding: 60px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }

.f-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .f-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .f-grid { grid-template-columns: 1fr; }
}

.f-brand .f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.f-logo-img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); }
.f-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.f-col h4 {
  font-family: var(--heading); font-size: 13px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.f-col a {
  display: block; color: rgba(255,255,255,.5); text-decoration: none;
  font-size: 14px; margin-bottom: 11px; transition: color .2s;
}
.f-col a:hover { color: var(--pink-light); }

.f-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: center;
  justify-content: space-between; font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.f-links { display: flex; gap: 24px; }
.f-links a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 13px; }
.f-links a:hover { color: var(--pink-light); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.socials a:hover { background: rgba(228,50,152,.25); }
.socials a svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }


/* ============================================================
   HOMEPAGE
   ============================================================ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  background: linear-gradient(160deg, #F8F0FF 0%, #FFF0F5 30%, #FFF5F0 60%, #F5F2FA 100%);
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(228,50,152,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,100,58,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 60px 24px; width: 100%; }
.hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800; line-height: 1.15;
  color: var(--dark); margin-bottom: 20px; letter-spacing: -1px;
}
.hero-content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: 18px; color: var(--gray);
  margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient); color: #fff;
  padding: 16px 36px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(228,50,152,.25);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.hero-cta:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(228,50,152,.35); color: #fff; }
.hero-cta svg { width: 18px; height: 18px; }
.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--dark);
  padding: 16px 36px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  border: 2px solid var(--dark);
  transition: background .2s, color .2s;
}
.hero-cta-secondary:hover { background: var(--dark); color: #fff; }

.hero-image {
  position: relative; border-radius: 24px;
  overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,71,.15);
}
.hero-image img { width: 100%; height: 460px; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: -20px; left: 40px;
  background: var(--white); padding: 16px 24px;
  border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,71,.12);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon {
  width: 44px; height: 44px; background: var(--orange);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.badge-icon svg { width: 22px; height: 22px; fill: #fff; }
.badge-text strong { display: block; font-size: 20px; color: var(--dark); }
.badge-text span { font-size: 13px; color: var(--gray); }

/* Why section */
.why-section { padding: var(--pad) 24px; background: var(--light); }
.why-section .why-inner { max-width: var(--max); margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: 20px;
  padding: 40px 32px;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,71,.04);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,71,.08); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.card-icon svg { width: 28px; height: 28px; }
.card-icon.pink { background: rgba(228,50,152,.1); }
.card-icon.pink svg { fill: var(--pink); stroke: var(--pink); }
.card-icon.orange { background: rgba(254,100,58,.1); }
.card-icon.orange svg { fill: var(--orange); stroke: var(--orange); }
.card-icon.dark { background: rgba(0,0,71,.08); }
.card-icon.dark svg { fill: var(--dark); stroke: var(--dark); }
.card h3 { font-family: var(--heading); font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.card a { color: var(--pink); font-weight: 600; font-size: 15px; text-decoration: none; }

/* Testimonials */
.testimonials {
  padding: var(--pad) 24px;
  background: var(--dark); color: #fff;
  position: relative; overflow: hidden;
}
.testimonials::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(228,50,152,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.testimonials-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p { color: rgba(255,255,255,.6); }
.testimonial-slider { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 767px) { .testimonial-slider { grid-template-columns: 1fr; } }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 36px;
  transition: background .3s;
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }
.quote-mark {
  font-size: 48px;
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.85); margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 15px; color: #fff; }
.author-info span { font-size: 13px; color: rgba(255,255,255,.5); }

/* About section */
.about { padding: var(--pad) 24px; background: var(--white); }
.about-inner { max-width: var(--max); margin: 0 auto; }
.about-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,71,.1); }
.about-image img { width: 100%; height: 460px; object-fit: cover; display: block; }
.about-content { padding-left: 40px; }
@media (max-width: 991px) { .about-content { padding-left: 0; } }
.about-content h2 {
  font-family: var(--heading); font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--dark); margin-bottom: 20px;
}
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.stats-row { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.stat-value {
  font-family: var(--heading); font-size: 32px;
  font-weight: 800; color: var(--dark);
  background: var(--gradient); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* Expertise */
.expertise { padding: var(--pad) 24px; background: var(--light); }
.expertise-inner { max-width: var(--max); margin: 0 auto; }
.expertise-content { padding-right: 40px; }
@media (max-width: 991px) { .expertise-content { padding-right: 0; } }
.expertise-content h2 {
  font-family: var(--heading); font-size: clamp(26px, 3vw, 38px);
  font-weight: 800; color: var(--dark); margin-bottom: 20px;
}
.expertise-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.expertise-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
}
.expertise-list li, .expertise-list li a {
  font-size: 14px; font-weight: 600;
  background: var(--white); border-radius: 8px;
  padding: 8px 16px; color: var(--dark);
  text-decoration: none; transition: background .2s, color .2s;
}
.expertise-list li a:hover { background: var(--dark); color: #fff; }
.expertise-image { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,71,.08); }
.expertise-image img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* Blog section */
.blog { padding: var(--pad) 24px; background: var(--white); }
.blog-inner { max-width: var(--max); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(0,0,71,.06); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,71,.08); }
.blog-thumb {
  height: 180px; display: flex; align-items: center;
  justify-content: center; font-size: 48px;
}
.grad-1 { background: linear-gradient(135deg, #F8E8FF, #FFD6F0); }
.grad-2 { background: linear-gradient(135deg, #FFF0E8, #FFE0D0); }
.grad-3 { background: linear-gradient(135deg, #E8F0FF, #D0E8FF); }
.blog-body { padding: 24px; }
.blog-tag {
  font-size: 12px; font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.blog-body h4 { font-family: var(--heading); font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.blog-body h4 a { text-decoration: none; color: inherit; }
.blog-body h4 a:hover { color: var(--pink); }

/* CTA Section */
.cta-section {
  padding: var(--pad) 24px;
  background: linear-gradient(135deg, #000047 0%, #1a0066 50%, #000047 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(228,50,152,.12) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--heading); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta-inner p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 40px; }
.cta-btn-gradient {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient); color: #fff;
  padding: 18px 44px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  box-shadow: 0 8px 30px rgba(228,50,152,.35);
  transition: transform .2s, box-shadow .2s;
}
.cta-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(228,50,152,.45); color: #fff; }
.cta-btn-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: #fff;
  padding: 17px 42px; border-radius: 12px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  border: 2px solid rgba(255,255,255,.25);
  transition: border-color .2s, background .2s;
}
.cta-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); color: #fff; }
.cta-contact { margin-top: 28px; }
.cta-contact a { color: rgba(255,255,255,.5); font-size: 15px; text-decoration: none; transition: color .2s; }
.cta-contact a:hover { color: var(--pink-light); }


/* ============================================================
   ROLE PAGES (single-dt_role)
   ============================================================ */
.hero-role {
  position: relative; overflow: hidden;
  background: var(--dark); padding-top: 72px;
}
.hero-role::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(228,50,152,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(254,100,58,.08) 0%, transparent 50%);
}
.hero-role-inner { max-width: var(--max); margin: 0 auto; padding: 80px 24px; position: relative; z-index: 1; }
.hero-role-text h1 {
  font-family: var(--heading); font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.15; color: #fff;
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero-role-text h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-role-text p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }

/* Hero graphic */
.hero-graphic {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(228,50,152,.2), rgba(254,100,58,.1));
  border: 2px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin: 0 auto;
}
.hero-graphic-icon { font-size: 80px; }
.hero-float {
  position: absolute; background: #fff;
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15); font-size: 13px;
  white-space: nowrap;
}
.hero-float strong { display: block; font-size: 13px; color: var(--dark); }
.hf-icon { font-size: 20px; }
.hf-1 { top: 20px; right: -20px; }
.hf-2 { bottom: 40px; right: -10px; }
.hf-3 { bottom: -10px; left: 20px; }
.hf-4 { top: 40px; left: -10px; }

/* Intro section */
.intro { padding: var(--pad) 24px; background: var(--white); }
.intro-inner { max-width: var(--max); margin: 0 auto; }
.intro-content h2 {
  font-family: var(--heading); font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800; color: var(--dark); margin-bottom: 24px;
}
.intro-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.intro-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.intro-services span {
  font-size: 13px; font-weight: 600; color: var(--pink);
  background: rgba(228,50,152,.08); border-radius: 8px;
  padding: 6px 14px;
}
.intro-img { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,71,.08); }
.intro-img img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* Highlight */
.highlight {
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--dark), #1a0066);
  text-align: center;
}
.highlight-inner { max-width: var(--max); margin: 0 auto; }
.highlight h2 {
  font-family: var(--heading); font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700; color: #fff; line-height: 1.5; max-width: 860px;
  margin: 0 auto;
}

/* Why section — role pages */
.why { padding: var(--pad) 24px; background: var(--light); }
.why-inner { max-width: var(--max); margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 28px; position: relative;
  border: 1px solid rgba(0,0,71,.04);
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,71,.08); }
.card-num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--heading); font-size: 40px;
  font-weight: 800; color: rgba(0,0,71,.05);
}
.why-card h3 { font-family: var(--heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.why-card a { color: var(--pink); font-size: 14px; font-weight: 600; text-decoration: none; }

/* How it works */
.steps { padding: var(--pad) 24px; background: var(--white); }
.steps-inner { max-width: var(--max); margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 991px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--light); border-radius: 16px; padding: 28px 24px;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  font-family: var(--heading); font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-family: var(--heading); font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* Experts section */
.experts {
  padding: var(--pad) 24px;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0044 100%);
}
.experts-inner { max-width: var(--max); margin: 0 auto; }
.experts-text h2 {
  font-family: var(--heading); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: #fff; margin-bottom: 20px;
}
.experts-text h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.experts-text p { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 36px; }
.experts-circle {
  width: 320px; height: 320px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.1);
  position: relative; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.experts-circle-inner {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,50,152,.2), rgba(254,100,58,.1));
  border: 2px solid rgba(255,255,255,.08);
  animation: pulse 4s infinite;
}
.ec-badge {
  position: absolute; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.ec-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.ec-2 { right: -20px; top: 50%; transform: translateY(-50%); }
.ec-3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.ec-4 { left: -20px; top: 50%; transform: translateY(-50%); }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 50vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, #F8F0FF, #FFF0F5, #F5F2FA);
}
.about-hero h1 {
  font-family: var(--heading); font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800; color: var(--dark); max-width: 800px;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px;
}
.about-hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-hero p { font-size: 18px; color: var(--gray); max-width: 560px; line-height: 1.7; }

/* Mosaic grid */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 300px; gap: 4px; max-height: 604px; overflow: hidden; }
.mos { overflow: hidden; position: relative; }
.mos img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mos:hover img { transform: scale(1.04); }
.mos-1 { grid-column: 1; grid-row: 1; }
.mos-2 { grid-column: 2; grid-row: 1; }
.mos-3 { grid-column: 3; grid-row: 1 / 3; }
.mos-4 { grid-column: 1; grid-row: 2; }
.mos-5 { grid-column: 2; grid-row: 2; }
@media (max-width: 767px) { .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; max-height: none; } .mos-3 { grid-row: auto; } }

.mos-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.mos-play svg { width: 22px; height: 22px; fill: var(--dark); }
.mos-play:hover { background: #fff; }

/* About intro */
.about-intro { padding: var(--pad) 24px; background: var(--white); }
.about-intro-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 991px) { .about-intro-inner { grid-template-columns: 1fr; gap: 48px; } }
.about-intro-text h2 { font-family: var(--heading); font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.about-intro-text p { font-size: 16px; color: var(--gray); line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.about-stat-num { font-family: var(--heading); font-size: 40px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-lbl { font-size: 14px; color: var(--gray); margin-top: 4px; }
.about-intro-img { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,71,.1); }
.about-intro-img img { width: 100%; height: 440px; object-fit: cover; display: block; }

/* Culture */
.culture { padding: var(--pad) 24px; background: var(--light); }
.culture-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 991px) { .culture-inner { grid-template-columns: 1fr; gap: 48px; } }
.culture-img { border-radius: 24px; overflow: hidden; }
.culture-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.culture-text h2 { font-family: var(--heading); font-size: clamp(24px, 2.8vw, 36px); font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.culture-text p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }

/* Values */
.values { padding: var(--pad) 24px; background: var(--white); }
.values-inner { max-width: var(--max); margin: 0 auto; }
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .v-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .v-grid { grid-template-columns: 1fr; } }
.v-card { background: var(--light); border-radius: 20px; padding: 32px; }
.v-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.v-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.v-icon.pk { background: rgba(228,50,152,.1); }
.v-icon.pk svg { stroke: var(--pink); }
.v-icon.or { background: rgba(254,100,58,.1); }
.v-icon.or svg { stroke: var(--orange); }
.v-icon.dk { background: rgba(0,0,71,.08); }
.v-icon.dk svg { stroke: var(--dark); }
.v-card h3 { font-family: var(--heading); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.v-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }


/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 1199px) {
  :root { --pad: 80px; }
}
@media (max-width: 767px) {
  :root { --pad: 60px; }
  .hero-inner { padding: 40px 24px 60px; }
  .hero-content h1 { font-size: 32px; }
  .hero-image img { height: 320px; }
  .hero-badge { left: 20px; bottom: -10px; padding: 12px 16px; }
  .stats-row { gap: 24px; }
}
@media (max-width: 575px) {
  .hero-cta, .hero-cta-secondary { width: 100%; justify-content: center; }
  .cta-btn-gradient, .cta-btn-outline { width: 100%; justify-content: center; }
}
