@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dp: #35215c;
  --mp: #6b43dd;
  --lp: #9d7fe8;
  --pale: #ede9f9;
  --ow: #f4f4f6;
  --blk: #080a0b;
  --wh: #ffffff;
  --text-body: #444444;
  --text-muted: #888888;
  --gutter: 5rem;
  --radius: 16px;
}

html { scroll-behavior: smooth; margin-top: 0 !important; }
html.wp-toolbar { padding-top: 0 !important; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--wh);
  color: var(--blk);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
#wpadminbar { position: fixed !important; }

/* WordPress default container overrides */
.wp-site-blocks, .wp-block-group, .entry-content, .site-content,
.content-area, #content, #page, .site {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav.nav-scrolled {
  background: var(--dp);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-logo {
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; display: flex; align-items: center; gap: 0.3rem; cursor: pointer;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #fff !important; color: var(--dp) !important;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important; font-size: 12px !important; letter-spacing: 0.08em;
}
.nav-dropdown {
  display: none; position: absolute; top: 100%;
  padding-top: 0.75rem;
  transform: translateX(-50%); background: #fff; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15); padding: 0.6rem; min-width: 210px; z-index: 300;
}
.nav-dropdown a {
  display: block !important; padding: 0.6rem 1rem; font-size: 13px; font-weight: 500;
  color: var(--blk) !important; border-radius: 8px; text-transform: none !important;
  letter-spacing: 0.01em; transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--pale); color: var(--dp) !important; }
.nav-dropdown .drop-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.4rem 1rem 0.2rem; display: block;
}
.nav-dropdown hr { border: none; border-top: 1px solid #f0eef5; margin: 0.3rem 0; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  padding: 0.6rem;
  min-width: 210px;
  z-index: 300;
}

.nav-item-drop::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav-item-drop {
  position: relative;
}

.nav-item-drop:hover .nav-dropdown { display: block; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 90vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-photo {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #12061d 0%, #35215c 60%, #514666 100%);
  background-size: cover; background-position: center top;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,10,11,0.75) 0%, rgba(8,10,11,0.4) 50%, rgba(8,10,11,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 5rem; max-width: 680px;
}
.hero-content h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1.06;
  color: #fff; margin-bottom: 1.25rem; letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.7; max-width: 460px; margin-bottom: 2.25rem;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--dp); padding: 0.875rem 2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border: none;
  transition: opacity 0.2s; text-decoration: none; display: inline-flex; align-items: center;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  background: transparent; color: #fff; padding: 0.875rem 2rem; border-radius: 50px;
  font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.5); transition: border-color 0.2s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.btn-outline-white:hover { border-color: #fff; }

/* Inner page hero */
.hero-inner {
  position: relative; width: 100%; height: 52vh; min-height: 380px;
  overflow: hidden; display: flex; align-items: flex-end; background: var(--dp);
}
.hero-inner .hero-content { padding-bottom: 3.5rem; }
.hero-inner .hero-content h1 { font-size: clamp(30px, 4vw, 50px); }

/* ── LOGO BANNER ── */
.logo-banner {
  background: var(--wh); border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06); padding: 1.75rem 0;
  overflow: hidden; position: relative; width: 100%;
}
.logo-banner::before, .logo-banner::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.logo-banner::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.logo-banner::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.logo-track { display: flex; width: max-content; animation: logoScroll 30s linear infinite; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; padding: 0 2.5rem;
  font-size: 12px; font-weight: 700; color: #ccc; letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap;
}
.logo-sep { color: #ddd; font-size: 6px; padding: 0 0.25rem; align-self: center; }

/* ── TWO COLUMN ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start; gap: 6rem;
  padding: 6rem var(--gutter);
  background: var(--wh); width: 100%; max-width: 100%;
}
.two-col.bg-ow { background: var(--ow); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blk); margin-bottom: 1rem;
}
.section-label.purple { color: var(--mp); }
.col-left h2 {
  font-size: clamp(28px, 3vw, 42px); font-weight: 700; line-height: 1.1;
  color: var(--blk); letter-spacing: -0.02em;
}
.col-left h2 span { font-weight: 400; }
.accent-shape {
  display: inline-block; width: 13px; height: 13px; background: var(--mp);
  border-radius: 3px; transform: rotate(18deg); vertical-align: middle; margin-left: 8px;
}
.col-right p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 1.25rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--dp); color: #fff;
  padding: 0.8rem 1.75rem; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; transition: background 0.2s; text-decoration: none;
}
.btn-primary:hover { background: var(--mp); }
.btn-purple {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--mp); color: #fff;
  padding: 0.8rem 1.75rem; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; transition: background 0.2s; text-decoration: none;
}
.btn-purple:hover { background: var(--dp); }

/* ── SERVICES ── */
.services { padding: 5rem var(--gutter) 6rem; background: var(--ow); width: 100%; }
.services .section-label { margin-bottom: 0.5rem; }
.services-heading { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--blk); margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.stabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0; }
.stab {
  padding: 0.85rem 1.4rem; font-family: 'Montserrat', sans-serif; font-size: 12px;
  font-weight: 500; color: var(--text-muted); background: #e2e0e8; border: none;
  border-radius: 10px 10px 0 0; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.stab.on { background: var(--wh); color: var(--blk); font-weight: 700; }
.spanel {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--wh);
  border-radius: 0 12px 12px 12px; overflow: hidden; min-height: 420px;
}
.spanel-text { padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: space-between; }
.spanel-text h3 { font-size: 22px; font-weight: 700; color: var(--blk); margin-bottom: 1rem; letter-spacing: -0.01em; }
.spanel-text p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-body); margin-bottom: 1.5rem; }
.spanel-points { list-style: none; margin-bottom: 2.5rem; }
.spanel-points li { font-size: 14px; font-weight: 400; color: var(--text-body); padding: 0.4rem 0 0.4rem 1.25rem; position: relative; border-bottom: 1px solid var(--ow); }
.spanel-points li:last-child { border-bottom: none; }
.spanel-points li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--mp); }
.btn-service {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--mp); color: #fff;
  padding: 0.8rem 1.6rem; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; width: fit-content; transition: background 0.2s; text-decoration: none;
}
.btn-service:hover { background: var(--dp); }
.spanel-img {
  background: #2a1b48; min-height: 420px; position: relative;
  overflow: hidden; background-size: cover; background-position: center;
}

/* ── SERVICE DETAIL ── */
.service-detail { padding: 5rem var(--gutter) 6rem; background: var(--wh); width: 100%; }
.service-detail h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; color: var(--blk); margin-bottom: 1.5rem; }
.service-detail p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 1.5rem; max-width: 680px; }
.service-detail ul { list-style: none; margin-bottom: 2rem; max-width: 580px; }
.service-detail ul li { font-size: 14px; color: var(--text-body); padding: 0.55rem 0 0.55rem 1.5rem; position: relative; border-bottom: 1px solid var(--ow); }
.service-detail ul li:last-child { border-bottom: none; }
.service-detail ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--mp); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 6rem var(--gutter); background: var(--wh); text-align: center; width: 100%; }
.t-inner { max-width: 640px; margin: 0 auto; }
.t-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 1.75rem; }
.t-star { width: 20px; height: 20px; display: inline-block; }
.t-star svg { fill: var(--mp); width: 20px; height: 20px; }
.t-quote { font-size: clamp(15px, 1.5vw, 18px); font-weight: 400; line-height: 1.65; color: var(--blk); }
.t-client-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 50px;
  padding: 0.45rem 1.25rem 0.45rem 0.6rem; font-size: 13px; font-weight: 600;
  color: var(--blk); margin-top: 1.75rem;
}
.t-client-logo-dot {
  width: 28px; height: 28px; border-radius: 50%; background: var(--pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--mp); flex-shrink: 0;
}
.t-slide { display: none; }
.t-slide.on { display: block; animation: tfade 0.5s ease; }
@keyframes tfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2.25rem; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(107,67,221,0.2); cursor: pointer; transition: background 0.2s; border: none; }
.t-dot.on { background: var(--mp); }

/* ── BLOG ── */
.blog { padding: 5rem var(--gutter) 6rem; background: var(--ow); width: 100%; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.blog-header h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--blk); letter-spacing: -0.02em; }
.blog-header-right { display: flex; align-items: center; gap: 1.5rem; }
.blog-view-all { font-size: 12px; font-weight: 700; color: var(--mp); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-arrows { display: flex; gap: 0.6rem; }
.barrow { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--blk); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; background: transparent; transition: all 0.2s; }
.barrow:hover { background: var(--blk); color: #fff; }
.blog-track-wrap { overflow: hidden; }
.blog-track { display: flex; gap: 1.5rem; transition: transform 0.4s ease; width: max-content; }
.bcard { width: 300px; cursor: pointer; background: var(--wh); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.bcard:hover { box-shadow: 0 10px 36px rgba(53,33,92,0.1); transform: translateY(-4px); }
.bcard-img { height: 200px; background: var(--pale); background-size: cover; background-position: center; }
.bcard-img.v1 { background-color: #d4c4f0; }
.bcard-img.v2 { background-color: #35215c; }
.bcard-img.v3 { background-color: #b09be0; }
.bcard-img.v4 { background-color: #514666; }
.bcard-body { padding: 1.25rem 1.5rem 1.5rem; }
.bcard-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mp); margin-bottom: 0.5rem; }
.bcard h3 { font-size: 16px; font-weight: 600; color: var(--blk); line-height: 1.35; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.bcard-date { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.blog-archive { padding: 5rem var(--gutter) 6rem; background: var(--ow); width: 100%; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.blog-single { padding: 5rem var(--gutter) 6rem; background: var(--wh); }
.blog-single h1 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--blk); margin-bottom: 1.5rem; line-height: 1.15; }
.blog-single .post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 2.5rem; }
.blog-single .post-content p { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text-body); margin-bottom: 1.5rem; }
.blog-single .post-content h2 { font-size: 22px; font-weight: 700; color: var(--blk); margin: 2.5rem 0 1rem; }
.blog-single .post-content img { max-width: 100%; border-radius: var(--radius); margin: 2rem 0; }

/* ── CASE STUDIES ── */
.case-studies-section { padding: 5rem var(--gutter) 6rem; background: var(--ow); width: 100%; }
.case-studies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; margin-top: 3rem; }
.cs-card { background: var(--wh); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(107,67,221,0.08); transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; display: block; }
.cs-card:hover { box-shadow: 0 10px 36px rgba(53,33,92,0.1); transform: translateY(-4px); }
.cs-card-img { height: 220px; background: var(--pale); background-size: cover; background-position: center; }
.cs-card-body { padding: 1.75rem; }
.cs-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mp); margin-bottom: 0.5rem; }
.cs-card h3 { font-size: 18px; font-weight: 700; color: var(--blk); margin-bottom: 0.75rem; line-height: 1.25; }
.cs-card p { font-size: 14px; font-weight: 300; color: var(--text-body); line-height: 1.7; }

/* ── FAQ ── */
.faq { padding: 6rem var(--gutter); background: var(--wh); width: 100%; }
.faq h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--blk); text-align: center; margin-bottom: 3rem; letter-spacing: -0.02em; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }
.faq-row { background: var(--ow); border-radius: 12px; border: 1px solid transparent; transition: border-color 0.2s, background 0.2s; cursor: pointer; overflow: hidden; }
.faq-row:hover { border-color: rgba(107,67,221,0.18); }
.faq-row.open { background: #fff; border-color: rgba(107,67,221,0.2); }
.faq-top { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; }
.faq-q { font-size: 14px; font-weight: 500; color: var(--blk); padding-right: 1.5rem; }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(107,67,221,0.3); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--dp); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-row.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--text-body); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; padding: 0 1.4rem; }
.faq-row.open .faq-answer { max-height: 200px; padding: 0 1.4rem 1.1rem; }

/* ── ABOUT PAGE ── */
.about-bio { padding: 6rem var(--gutter); background: var(--wh); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; width: 100%; }
.about-bio-img { border-radius: var(--radius); background: var(--pale); min-height: 520px; background-size: cover; background-position: center top; }
.about-bio-text .section-label { margin-bottom: 1rem; }
.about-bio-text h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--blk); margin-bottom: 1.5rem; line-height: 1.15; }
.about-bio-text p { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--text-body); margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 4rem var(--gutter); background: var(--dp); width: 100%; }
.about-stat { text-align: center; }
.about-stat-num { font-size: 40px; font-weight: 700; color: var(--lp); line-height: 1; margin-bottom: 0.5rem; }
.about-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; }

/* ── CONTACT ── */
.contact-section { padding: 6rem var(--gutter); background: var(--ow); width: 100%; }
.contact-section h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--blk); margin-bottom: 1rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.contact-info .ci-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mp); margin-bottom: 0.35rem; margin-top: 1.5rem; }
.contact-info a, .contact-info span { font-size: 15px; color: var(--blk); text-decoration: none; font-weight: 500; display: block; }
.contact-form-wrap { background: var(--wh); border-radius: var(--radius); padding: 2.5rem; border: 1px solid rgba(107,67,221,0.1); }
.cf-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blk); margin-bottom: 0.5rem; margin-top: 1.25rem; }
.cf-label:first-child { margin-top: 0; }
.cf-input, .cf-select, .cf-textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(107,67,221,0.2);
  border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 14px;
  color: var(--blk); outline: none; background: var(--ow);
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--mp); background: #fff; }
.cf-textarea { resize: vertical; min-height: 130px; }
.typeform-embed { border-radius: var(--radius); overflow: hidden; min-height: 520px; background: var(--wh); }

/* ── PHD ── */
.phd-section { padding: 6rem var(--gutter); background: var(--wh); width: 100%; }
.phd-section h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; color: var(--blk); margin-bottom: 1.5rem; }
.phd-section p { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--text-body); margin-bottom: 1.5rem; max-width: 700px; }
.phd-highlight { background: var(--pale); border-left: 4px solid var(--mp); padding: 1.5rem 2rem; border-radius: 0 12px 12px 0; margin: 2rem 0; max-width: 700px; }
.phd-highlight p { font-size: 15px; color: var(--dp); font-weight: 500; margin-bottom: 0; }
.phd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.phd-card { background: var(--pale); border-radius: var(--radius); padding: 2rem; }
.phd-card h4 { font-size: 16px; font-weight: 700; color: var(--dp); margin-bottom: 0.75rem; }
.phd-card p { font-size: 14px; font-weight: 300; color: var(--text-body); line-height: 1.7; margin-bottom: 0; max-width: none; }

/* ── CTA BAND ── */
.cta-band { padding: 5rem var(--gutter); background: var(--dp); width: 100%; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta-band p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ── FOOTER ── */
footer { background: var(--blk); padding: 4rem var(--gutter) 0; width: 100%; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; flex-direction: column; justify-content: space-between; flex-shrink: 0; width: 240px; }
.footer-brand .flogo { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: auto; }
.footer-contact p, .footer-contact a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); text-decoration: none; line-height: 1.5; transition: color 0.15s; }
.footer-contact a:hover { color: rgba(255,255,255,0.65); }
.footer-socials { display: flex; flex-direction: row; gap: 0.5rem; padding-top: 1.5rem; }
.soc-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; transition: all 0.2s; }
.soc-link:hover { border-color: var(--lp); color: var(--lp); }
.footer-right-block { display: flex; flex-direction: column; align-items: flex-end; gap: 2rem; width: 500px; flex-shrink: 0; }
.footer-nav-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; width: 100%; }
.fcol h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp); margin-bottom: 1rem; }
.fcol a { display: block; font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.15s; }
.fcol a:hover { color: #fff; }
.footer-mail { width: 100%; }
.footer-mail h4 { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp); margin-bottom: 0.6rem; }
.footer-mail p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); margin-bottom: 0.85rem; line-height: 1.5; }
.mail-row { display: flex; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.mail-input { flex: 1; background: rgba(255,255,255,0.06); border: none; padding: 0.8rem 1rem; font-family: 'Montserrat', sans-serif; font-size: 13px; color: #fff; outline: none; min-width: 0; }
.mail-input::placeholder { color: rgba(255,255,255,0.28); }
.mail-btn { background: var(--mp); color: #fff; border: none; padding: 0.8rem 1.25rem; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.mail-btn:hover { background: var(--dp); }
.footer-bottom { padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-sep { color: rgba(255,255,255,0.1); }
.footer-credit { color: rgba(255,255,255,0.18) !important; }
.footer-credit:hover { color: rgba(255,255,255,0.45) !important; }

/* ── ACF NOTICE (shown when field is empty) ── */
.acf-empty { opacity: 0.35; font-style: italic; }
body.blog .hero-inner,
body.blog .blog-archive {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative !important;
  left: 0 !important;
}
body.mb-blog-page {
  overflow-x: hidden;
}

body.mb-blog-page .hero-inner {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative !important;
}

body.mb-blog-page .blog-archive {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}