:root {
  --navy-950: #2b0b24;
  --navy-900: #401033;
  --navy-800: #5c1748;
  --blue-700: #b12c82;
  --blue-600: #d9479f;
  --cyan-500: #ff5cb8;
  --cyan-300: #ffc1e4;
  --ice-100: #fff2f9;
  --slate-900: #2d1630;
  --slate-700: #5f4560;
  --slate-500: #8b738a;
  --slate-300: #ead6e5;
  --white: #ffffff;
  --gold: #f3be6e;
  --surface: #fff8fc;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 20px 60px rgba(101, 21, 73, .12);
  --shadow-deep: 0 32px 90px rgba(44, 8, 34, .28);
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }

h1, h2, .brand-copy strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  text-wrap: balance;
}
p, small, a, button, input, textarea, select { text-rendering: optimizeLegibility; }

::selection { background: var(--cyan-500); color: var(--white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #fff1f7; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--blue-600), var(--cyan-500)); border-radius: 10px; border: 2px solid #fff1f7; }

.page-loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #d9479f 0, var(--navy-900) 42%, #22051b 100%);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-mark { width: 128px; filter: drop-shadow(0 20px 35px rgba(255, 92, 184, .35)); animation: loaderFloat 1.8s ease-in-out infinite; }
.loader-line { position: absolute; width: 180px; height: 3px; bottom: 25%; background: rgba(255,255,255,.12); border-radius: 10px; overflow: hidden; }
.loader-line span { display: block; height: 100%; width: 42%; background: linear-gradient(90deg, var(--blue-600), var(--cyan-300)); animation: loaderLine 1.2s linear infinite; }
@keyframes loaderFloat { 50% { transform: translateY(-8px) scale(1.03); } }
@keyframes loaderLine { from { transform: translateX(-110%); } to { transform: translateX(350%); } }

.scroll-progress { position: fixed; z-index: 5000; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan-500), #ff8fd1, var(--gold)); box-shadow: 0 0 14px rgba(255,92,184,.45); }

.cursor-dot, .cursor-ring { display: none !important; }

.announcement { background: var(--navy-950); color: #ffe8f4; font-size: 12px; letter-spacing: .035em; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement p { margin: 0; display: flex; align-items: center; gap: 8px; }
.announcement a { color: #ffc8e7; font-weight: 700; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff8fd1; box-shadow: 0 0 0 0 rgba(255,143,209,.45); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 70% { box-shadow: 0 0 0 8px rgba(255,143,209,0); } }

.site-header { position: absolute; z-index: 1000; top: 0; left: 0; width: 100%; transition: transform .35s var(--ease), background .35s, box-shadow .35s; }
.site-header.is-fixed { position: fixed; top: -38px; background: rgba(255,248,252,.94); backdrop-filter: blur(20px); box-shadow: 0 12px 40px rgba(76,18,58,.10); }
.site-header.is-fixed .navbar { min-height: 76px; }
.site-header.is-fixed .brand-copy strong, .site-header.is-fixed .nav-links > a:not(.nav-cta) { color: var(--navy-900); }
.site-header.is-fixed .brand-copy small { color: var(--blue-700); }
.site-header.is-fixed .menu-toggle span { background: var(--navy-900); }
.navbar { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px; transition: min-height .35s; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(217,71,159,.18)); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--white); font-size: 23px; letter-spacing: -.02em; line-height: 1; }
.brand-copy small { color: #ffc8e7; font-size: 10px; text-transform: uppercase; letter-spacing: .23em; margin-top: 5px; font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { position: relative; color: rgba(255,255,255,.86); font-size: 14px; font-weight: 700; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; height: 2px; width: 0; background: var(--cyan-500); transition: width .3s var(--ease); }
.nav-links > a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 13px 20px; color: var(--navy-950) !important; background: var(--white); border-radius: 999px; box-shadow: 0 12px 28px rgba(84, 18, 61, .18); }
.nav-cta:hover { background: var(--cyan-300); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; background: white; margin: 6px 0; transition: transform .3s, opacity .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero { min-height: 950px; padding: 186px 0 70px; color: var(--white); background: radial-gradient(circle at 68% 38%, rgba(255,92,184,.22), transparent 32%), linear-gradient(135deg, #2b0b24 0%, #6d1f58 52%, #2b0b24 100%); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,11,36,.72), transparent 45%), radial-gradient(circle at 20% 80%, rgba(255,193,228,.12), transparent 25%); }
.hero-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 88%); }
.hero-orb { display: none; }
.orb-one { width: 390px; height: 390px; right: -170px; top: 70px; background: radial-gradient(circle at 35% 35%, #ffb3d9, #8b2867 50%, transparent 72%); animation: orbFloat 9s ease-in-out infinite; }
.orb-two { width: 240px; height: 240px; left: -100px; bottom: 120px; background: radial-gradient(circle at 35% 35%, #d9479f, #ff70bb 55%, transparent 73%); animation: orbFloat 12s 2s ease-in-out infinite reverse; }
@keyframes orbFloat { 50% { transform: translate3d(18px, -28px, 0) scale(1.08); } }
.particle-field { display: none; }
.particle-field span { display: none; }
@keyframes particleRise { from { transform: translateY(80px) scale(.5); opacity: 0; } 12% { opacity: .9; } to { transform: translateY(-900px) scale(1.3); opacity: 0; } }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.hero-copy { padding-top: 38px; }
.eyebrow, .section-tag { display: inline-flex; align-items: center; gap: 10px; color: #ffc8e7; text-transform: uppercase; font-size: 12px; line-height: 1; font-weight: 900; letter-spacing: .19em; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }
.hero h1 { max-width: 720px; margin: 24px 0 24px; font-size: clamp(48px, 5.7vw, 76px); line-height: 1.04; letter-spacing: -.025em; font-weight: 400; text-shadow: 0 3px 18px rgba(43,11,36,.22); }
.hero h1 em { font-style: normal; color: #ffd7ec; background: none; -webkit-text-fill-color: initial; }
.hero-copy > p { max-width: 660px; margin: 0; color: #f6deee; font-size: 18px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s; }
.btn svg { font-size: 19px; transition: transform .3s; }
.btn:hover svg, .text-link:hover svg, .service-card a:hover svg { transform: translateX(5px); }
.btn-primary { color: #51163e; background: linear-gradient(135deg, #fff 0%, #ffd2ea 100%); box-shadow: 0 18px 42px rgba(255,92,184,.22); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(255,92,184,.32); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.48); }
.btn-dark { background: var(--navy-900); color: white; box-shadow: 0 15px 35px rgba(78,18,58,.18); }
.btn-dark:hover { background: var(--blue-700); transform: translateY(-3px); }
.btn-white { background: white; color: var(--navy-900); border: 0; }
.btn-white:hover { background: var(--cyan-300); transform: translateY(-3px); }
.hero-proof { margin-top: 38px; display: flex; align-items: center; gap: 16px; }
.proof-avatars { display: flex; }
.proof-avatars span { width: 42px; height: 42px; display: grid; place-items: center; margin-left: -9px; border-radius: 50%; border: 3px solid var(--navy-800); background: linear-gradient(135deg, #d9479f, #ff79c5); color: white; font-size: 10px; font-weight: 900; }
.proof-avatars span:first-child { margin-left: 0; }
.hero-proof p { margin: 0; color: #ecd6e6; font-size: 13px; line-height: 1.45; }
.hero-proof strong { color: white; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; perspective: 1200px; }
.logo-stage { position: relative; z-index: 4; width: 360px; height: 360px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.20), rgba(255,154,207,.11) 44%, rgba(0,0,0,0) 72%); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); animation: logoPulse 4.8s ease-in-out infinite; overflow: hidden; }
.logo-stage img { width: 270px; filter: drop-shadow(0 30px 50px rgba(0,0,0,.30)) drop-shadow(0 0 32px rgba(255,92,184,.20)); }
.logo-glow { position: absolute; inset: 22%; border-radius: 50%; background: #ff79c5; filter: blur(70px); opacity: .4; }
@keyframes logoPulse { 50% { filter: brightness(1.06); } }
.visual-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,193,228,.22); }
.ring-a { width: 500px; height: 500px; animation: none; }
.ring-b { width: 430px; height: 430px; border-style: dashed; animation: none; }
.ring-c { width: 550px; height: 290px; transform: rotate(-18deg); animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.floating-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 12px; min-width: 230px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; color: white; background: rgba(65, 14, 49, .92); box-shadow: 0 18px 50px rgba(35, 5, 26, .28); backdrop-filter: blur(15px); animation: cardFloat 6.5s ease-in-out infinite; }
.floating-card svg { font-size: 27px; color: #ffc8e7; }
.floating-card span { display: grid; line-height: 1.25; }
.floating-card strong { font-size: 14px; color: #ffffff; letter-spacing: -.01em; }
.floating-card small { color: #ffe6f2; font-size: 11px; margin-top: 3px; font-weight: 500; }
.card-one { left: -4px; top: 110px; }
.card-two { right: -8px; top: 250px; animation-delay: 1.2s; }
.card-three { left: 48px; bottom: 48px; animation-delay: 2.2s; }
@keyframes cardFloat { 50% { transform: translateY(-5px); } }
.hero-bottom { position: relative; z-index: 3; margin-top: 74px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-bottom > div { display: flex; align-items: center; gap: 13px; min-height: 96px; padding: 18px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-bottom > div:last-child { border-right: 0; }
.hero-bottom svg { color: #ffc8e7; font-size: 28px; }
.hero-bottom span { display: grid; }
.hero-bottom strong { font-size: 13px; }
.hero-bottom small { color: #f0d4e5; font-size: 10px; margin-top: 2px; }

.marquee-section { overflow: hidden; background: var(--cyan-500); color: #3d1230; transform: rotate(-1deg) scale(1.01); transform-origin: center; position: relative; z-index: 5; margin-top: -18px; box-shadow: 0 16px 45px rgba(177,44,130,.18); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 17px 0; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.marquee-track i { font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.section-tag { color: var(--blue-600); margin-bottom: 17px; font-weight: 800; }
.section-tag::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-tag.light { color: #ffc8e7; }
.section-heading h2, .gateway-copy h2, .disciplines-copy h2, .testimonial-intro h2, .faq-heading h2, .contact-copy h2 { margin: 0; color: var(--navy-900); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(38px, 4.5vw, 60px); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; text-wrap: balance; }
.section-heading > p, .section-heading > div + p { margin: 0; color: var(--slate-700); font-size: 17px; line-height: 1.8; }
.centered { max-width: 760px; text-align: center; margin-inline: auto; }
.centered .section-tag { justify-content: center; }
.centered p { max-width: 580px; margin: 18px auto 0; }

.services-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 166, 210, .22), transparent 25%),
    radial-gradient(circle at 94% 86%, rgba(183, 77, 143, .12), transparent 27%),
    linear-gradient(180deg, #fffafd 0%, #fff3f9 100%);
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -300px;
  top: 70px;
  border-radius: 50%;
  border: 1px solid rgba(217, 71, 159, .14);
  box-shadow: inset 0 0 0 90px rgba(255, 224, 239, .24), inset 0 0 0 180px rgba(255, 224, 239, .12);
}
.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  perspective: 1200px;
}
.service-card {
  --accent: #d9479f;
  --accent-deep: #8e2b6f;
  --tint: #fff0f7;
  position: relative;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  padding: 38px 34px 30px 126px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(217, 71, 159, .16);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(104, 22, 75, .08);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: border-color .35s, box-shadow .35s, transform .12s linear, background .35s;
}
.service-card:nth-child(2) { --accent: #a42d78; --accent-deep: #5f184a; --tint: #fcebf5; }
.service-card:nth-child(3) { --accent: #ec5ba8; --accent-deep: #a22670; --tint: #fff0f8; }
.service-card:nth-child(4) { --accent: #be3d8a; --accent-deep: #721e57; --tint: #fcecf5; }
.service-card:nth-child(5) { --accent: #d89a34; --accent-deep: #8a5a17; --tint: #fff8e9; }
.service-card:nth-child(6) { --accent: #cf4f9a; --accent-deep: #7d245c; --tint: #fff0f7; }
.service-card:nth-child(7) { --accent: #9d3d87; --accent-deep: #5b1d4b; --tint: #f9edf6; }
.service-card:nth-child(8) { --accent: #e26bab; --accent-deep: #973064; --tint: #fff1f8; }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 92px;
  background: linear-gradient(165deg, var(--accent-deep), var(--accent));
  z-index: -2;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -88px;
  bottom: -98px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  z-index: -1;
  transition: transform .55s var(--ease), opacity .55s;
}
.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, white);
  background: linear-gradient(135deg, #fff 0%, var(--tint) 100%);
  box-shadow: 0 30px 72px rgba(111, 27, 82, .16);
}
.service-card:hover::after { transform: scale(1.42); opacity: .9; }
.service-card.featured {
  color: var(--slate-900);
  background: rgba(255, 255, 255, .93);
  border-color: rgba(217, 71, 159, .16);
  box-shadow: 0 18px 48px rgba(104, 22, 75, .08);
}
.service-card.featured:hover { background: linear-gradient(135deg, #fff 0%, var(--tint) 100%); }
.service-number {
  position: absolute;
  right: 28px;
  top: 27px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-deep);
  background: var(--tint);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}
.service-number::before { content: "SERVICE"; font-size: 8px; opacity: .62; letter-spacing: .12em; }
.featured .service-number { color: var(--accent-deep); }
.service-icon {
  position: absolute;
  left: 19px;
  top: 28px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--accent-deep);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 13px 28px rgba(54, 8, 40, .22);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.service-card:hover .service-icon { transform: translateY(-4px) rotate(-6deg); box-shadow: 0 18px 34px rgba(54, 8, 40, .3); }
.featured .service-icon { background: rgba(255, 255, 255, .96); color: var(--accent-deep); }
.service-icon svg { font-size: 25px; }
.service-card h3 {
  max-width: 72%;
  margin: 30px 0 12px;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: -.025em;
}
.service-card p,
.service-card.featured p {
  max-width: 94%;
  margin: 0;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.78;
}
.service-card a,
.service-card.featured a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 11px 15px;
  color: var(--accent-deep);
  background: var(--tint);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
  transition: color .3s, background .3s, border-color .3s, transform .3s;
}
.service-card a:hover {
  color: white;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  border-color: transparent;
  transform: translateX(3px);
}
.service-card a svg { transition: transform .3s; }

.gateway-section { background: var(--white); overflow: hidden; }
.gateway-section::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#f0d0e3 1px, transparent 1px); background-size: 26px 26px; opacity: .35; mask-image: linear-gradient(90deg, #000, transparent 60%); }
.gateway-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; position: relative; z-index: 1; }
.gateway-visual { min-height: 600px; position: relative; display: grid; place-items: center; }
.gateway-window { width: 310px; height: 455px; position: relative; overflow: hidden; border-radius: 155px 155px 28px 28px; background: linear-gradient(180deg, #5b1746, #d9479f); box-shadow: var(--shadow-deep); border: 12px solid white; outline: 1px solid #efd6e4; }
.window-sky { position: absolute; inset: 0; background: radial-gradient(circle at 65% 22%, rgba(255,255,255,.85) 0 2px, transparent 3px), radial-gradient(circle at 33% 14%, rgba(255,255,255,.8) 0 1px, transparent 2px), linear-gradient(180deg, #732159 0%, #ee6ab1 58%, #fff4fa 100%); }
.window-sky::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: -20px; height: 190px; background: linear-gradient(160deg, transparent 0 38%, rgba(72,17,54,.92) 39% 55%, rgba(111,26,83,.92) 56%); clip-path: polygon(0 65%, 25% 30%, 41% 58%, 62% 17%, 100% 68%, 100% 100%, 0 100%); }
.window-path { position: absolute; z-index: 2; left: 43%; bottom: -60px; width: 72px; height: 320px; background: linear-gradient(180deg, #f6d068, #d89c22); transform: rotate(2deg) skewX(-7deg); clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%); filter: drop-shadow(0 0 12px rgba(244,200,86,.45)); }
.window-star { position: absolute; z-index: 3; top: 76px; right: 72px; color: #fff; font-size: 32px; filter: drop-shadow(0 0 14px #fff); animation: twinkle 2.6s ease-in-out infinite; }
@keyframes twinkle { 50% { transform: scale(1.35) rotate(20deg); opacity: .65; } }
.orbit-text { position: absolute; width: 455px; height: 455px; animation: spin 26s linear infinite; }
.orbit-text text { fill: var(--blue-700); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.mini-stat { position: absolute; right: 0; bottom: 70px; padding: 18px 22px; background: white; border-radius: 18px; box-shadow: var(--shadow-soft); border: 1px solid #efdbe7; }
.mini-stat strong, .mini-stat small { display: block; }
.mini-stat strong { color: var(--blue-700); font-size: 25px; line-height: 1; }
.mini-stat small { color: var(--slate-500); margin-top: 6px; font-size: 11px; }
.gateway-copy > p { color: var(--slate-700); font-size: 17px; line-height: 1.82; margin: 24px 0 32px; }
.feature-list { display: grid; gap: 20px; }
.feature-list > div { display: flex; align-items: flex-start; gap: 15px; }
.feature-list > div > span { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: linear-gradient(145deg, var(--blue-600), var(--cyan-500)); box-shadow: 0 10px 22px rgba(217,71,159,.22); }
.feature-list p { margin: 0; display: grid; }
.feature-list strong { font-size: 15px; }
.feature-list small { color: var(--slate-500); font-size: 13px; margin-top: 3px; line-height: 1.55; }
.text-link { margin-top: 34px; display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 14px; font-weight: 900; }
.text-link svg { font-size: 19px; transition: transform .3s; }

.process-section { color: white; background: linear-gradient(135deg, #2a0a21, #7b225f); overflow: hidden; }
.process-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(255,92,184,.15), transparent 24%), radial-gradient(circle at 82% 70%, rgba(211,62,153,.17), transparent 31%); }
.process-section .section-heading h2 { color: white; }
.process-section .section-heading p { color: #ead5e2; }
.process-section .section-tag { color: #ffc8e7; }
.process-line { width: calc(100% - 160px); height: 1px; margin: 0 auto -21px; background: rgba(255,255,255,.16); position: relative; overflow: hidden; }
.process-line span { display: block; height: 100%; width: 28%; background: linear-gradient(90deg, transparent, var(--cyan-300), transparent); animation: processSweep 4s ease-in-out infinite; }
@keyframes processSweep { from { transform: translateX(-120%); } to { transform: translateX(430%); } }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid article { text-align: center; padding: 0 15px; }
.step-badge { width: 42px; height: 42px; margin: 0 auto 26px; display: grid; place-items: center; border-radius: 50%; border: 5px solid var(--navy-800); background: var(--cyan-500); color: var(--navy-950); font-weight: 900; box-shadow: 0 0 0 1px rgba(255,193,228,.32), 0 0 25px rgba(255,92,184,.35); }
.process-grid h3 { margin: 0 0 12px; font-size: 19px; }
.process-grid p { margin: 0; color: #dfc3d4; font-size: 13px; line-height: 1.7; }

.disciplines-section { background: #fff2f8; overflow: hidden; }
.disciplines-section::before { content: ""; position: absolute; width: 700px; height: 700px; right: -220px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,184,.16), transparent 65%); }
.disciplines-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.disciplines-copy p { margin: 24px 0 32px; color: var(--slate-700); font-size: 17px; line-height: 1.8; }
.discipline-cloud { position: relative; min-height: 430px; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(255,236,246,.82)); border: 1px solid rgba(217,71,159,.13); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.discipline-cloud::before { content: "RG"; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); color: rgba(177,44,130,.06); font-size: 170px; font-weight: 900; letter-spacing: -.1em; }
.discipline-cloud span { position: absolute; left: var(--x); top: var(--y); padding: 12px 18px; border-radius: 999px; color: var(--navy-800); background: white; border: 1px solid #f0dae7; box-shadow: 0 10px 28px rgba(125,26,91,.09); font-size: 13px; font-weight: 800; animation: cloudFloat 5s var(--d) ease-in-out infinite; }
.discipline-cloud span:nth-child(3n) { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-600)); border-color: transparent; }
.discipline-cloud span:nth-child(4n) { color: var(--navy-900); background: linear-gradient(135deg, #ffd8ea, #ff9dce); }
@keyframes cloudFloat { 50% { transform: translateY(-12px); } }

.insight-section { background: white; }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.metric-card { position: relative; min-height: 205px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border-radius: var(--radius-md); background: linear-gradient(145deg, #fff, #fff7fb); border: 1px solid #efdbe7; box-shadow: 0 15px 35px rgba(102,22,73,.07); overflow: hidden; }
.metric-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -40px; top: -50px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,184,.22), transparent 68%); }
.metric-card strong { color: var(--blue-700); font-size: 52px; line-height: 1; letter-spacing: -.05em; }
.metric-card p { margin: 14px 0 0; color: var(--slate-700); font-size: 13px; }

.testimonial-section { color: white; background: linear-gradient(145deg, var(--navy-950), #842566); overflow: hidden; }
.testimonial-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(#ff8fca 1px, transparent 1px); background-size: 30px 30px; }
.testimonial-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.testimonial-intro h2 { color: white; }
.testimonial-intro .section-tag { color: #ffc8e7; }
.slider-controls { display: flex; gap: 10px; margin-top: 34px; }
.slider-controls button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.06); cursor: pointer; transition: background .3s, transform .3s; }
.slider-controls button:hover { background: var(--cyan-500); color: var(--navy-950); transform: translateY(-3px); }
.testimonial-stage { min-height: 420px; position: relative; padding: 44px; border-radius: var(--radius-lg); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 35px 70px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.testimonial { position: absolute; inset: 44px; opacity: 0; transform: translateX(25px); pointer-events: none; transition: opacity .5s, transform .5s; }
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.quote-mark { color: #ffc8e7; font-family: Georgia, serif; font-size: 88px; line-height: .7; }
.testimonial blockquote { margin: 24px 0 34px; font-size: 24px; line-height: 1.55; letter-spacing: -.02em; }
.testimonial footer { display: flex; align-items: center; gap: 14px; }
.testimonial footer > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-500), var(--blue-600)); color: white; font-size: 12px; font-weight: 900; }
.testimonial footer p { margin: 0; display: grid; }
.testimonial footer strong { font-size: 13px; }
.testimonial footer small { color: #e3c6d7; font-size: 11px; margin-top: 2px; }
.slider-dots { position: absolute; right: 28px; bottom: 24px; display: flex; gap: 7px; }
.slider-dots button { width: 7px; height: 7px; padding: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.28); cursor: pointer; }
.slider-dots button.active { width: 22px; border-radius: 999px; background: var(--cyan-300); }

.faq-section { background: #fff8fc; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading p { color: var(--slate-700); margin-top: 20px; }
.faq-list { border-top: 1px solid #eedbe6; }
.faq-item { border-bottom: 1px solid #eedbe6; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 800; font-size: 17px; }
.faq-item button b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: #ffe4f0; font-size: 21px; font-weight: 500; transition: transform .35s, background .35s; }
.faq-item.active button b { transform: rotate(45deg); background: var(--cyan-500); color: var(--navy-950); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-answer p { overflow: hidden; margin: 0; color: var(--slate-700); font-size: 14px; line-height: 1.75; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding-bottom: 24px; }

.contact-section { position: relative; padding: 120px 0; color: white; background: linear-gradient(135deg, #2a0a21, #922d70); overflow: hidden; }
.contact-mesh { position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(255,92,184,.22), transparent 24%), radial-gradient(circle at 85% 80%, rgba(211,62,153,.25), transparent 30%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, auto, 48px 48px, 48px 48px; }
.contact-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: center; }
.contact-copy h2 { color: white; }
.contact-copy > p { color: #ead7e3; margin: 24px 0 30px; font-size: 16px; line-height: 1.8; }
.contact-points { display: grid; gap: 12px; }
.contact-points div { display: flex; align-items: center; gap: 10px; color: #fff0f7; font-size: 13px; }
.contact-points svg { color: #ffc8e7; }
.contact-form { padding: 34px; border-radius: 28px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 70px rgba(0,0,0,.25); backdrop-filter: blur(22px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: #f8ddea; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: white; background: rgba(57,12,43,.54); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; outline: 0; padding: 14px 15px; transition: border-color .25s, box-shadow .25s, background .25s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #d8b4c9; }
.contact-form select { color-scheme: dark; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #ffc8e7; box-shadow: 0 0 0 4px rgba(255,92,184,.12); background: rgba(57,12,43,.75); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .consent { grid-template-columns: 18px 1fr; align-items: center; gap: 10px; font-weight: 500; color: #dfbfd2; }
.contact-form .consent input { width: 16px; height: 16px; padding: 0; accent-color: var(--cyan-500); }
.form-status { margin: 14px 0 0; min-height: 20px; color: #b8f2cf; font-size: 12px; }

.site-footer { padding: 72px 0 24px; color: #e0cbd8; background: #1d0718; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr .7fr .9fr; gap: 60px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand-copy strong { color: white; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; font-size: 13px; line-height: 1.8; }
.footer-top h3 { color: white; margin: 0 0 18px; font-size: 14px; }
.footer-top > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-top a:not(.brand) { margin: 5px 0; color: #cdb4c4; font-size: 13px; transition: color .25s, transform .25s; }
.footer-top a:not(.brand):hover { color: #ffc8e7; transform: translateX(4px); }
.small-note { margin: 0; color: #aa8b9f; font-size: 12px; line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; font-size: 11px; color: #937287; }
.footer-bottom p { margin: 0; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue-600); box-shadow: 0 15px 30px rgba(112,24,82,.25); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.services-grid [data-reveal]:nth-child(2), .process-grid [data-reveal]:nth-child(2), .metric-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.services-grid [data-reveal]:nth-child(3), .process-grid [data-reveal]:nth-child(3), .metric-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.services-grid [data-reveal]:nth-child(4), .process-grid [data-reveal]:nth-child(4), .metric-grid [data-reveal]:nth-child(4) { transition-delay: .24s; }
.services-grid [data-reveal]:nth-child(n+5) { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero h1 { font-size: 58px; }
  .logo-stage { width: 300px; height: 300px; }
  .logo-stage img { width: 230px; }
  .ring-a { width: 420px; height: 420px; }
  .ring-b { width: 365px; height: 365px; }
  .ring-c { width: 470px; }
  .floating-card { min-width: 205px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gateway-layout, .testimonial-layout, .contact-layout { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 32px, 760px); }
  .section { padding: 92px 0; }
  .announcement { display: none; }
  .site-header, .site-header.is-fixed { top: 0; }
  .navbar { min-height: 78px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .nav-links { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; justify-content: center; gap: 25px; padding: 90px 30px; background: rgba(43,11,36,.97); backdrop-filter: blur(18px); transform: translateX(100%); transition: transform .45s var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a, .site-header.is-fixed .nav-links > a:not(.nav-cta) { color: white; font-size: 22px; }
  .nav-cta { margin-top: 8px; font-size: 15px !important; }
  .site-header.is-fixed .menu-toggle.active span { background: white; }
  .hero { min-height: auto; padding: 132px 0 68px; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-top: 0; }
  .eyebrow { justify-content: center; }
  .hero h1 { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 540px; }
  .hero-bottom { grid-template-columns: repeat(2, 1fr); }
  .hero-bottom > div:nth-child(2) { border-right: 0; }
  .hero-bottom > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .split-heading, .gateway-layout, .disciplines-layout, .testimonial-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .split-heading { align-items: start; gap: 20px; }
  .gateway-visual { order: 2; }
  .gateway-copy { order: 1; }
  .gateway-visual { min-height: 530px; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 25px; }
  .disciplines-copy { text-align: center; }
  .discipline-cloud { min-height: 420px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-intro { text-align: center; }
  .slider-controls { justify-content: center; }
  .faq-heading { position: static; text-align: center; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 24px); }
  .section { padding: 76px 0; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .hero { padding-top: 115px; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-proof { align-items: flex-start; text-align: left; }
  .hero-visual { min-height: 450px; transform: scale(.82); margin: -35px -50px; }
  .logo-stage { width: 280px; height: 280px; }
  .logo-stage img { width: 210px; }
  .ring-a { width: 390px; height: 390px; }
  .ring-b { width: 335px; height: 335px; }
  .ring-c { width: 420px; }
  .floating-card { min-width: 190px; padding: 12px; }
  .card-one { left: 15px; top: 50px; }
  .card-two { right: 8px; top: 230px; }
  .card-three { left: 32px; bottom: 5px; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 40px; }
  .hero-bottom > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-bottom > div:last-child { border-bottom: 0; }
  .section-heading h2, .gateway-copy h2, .disciplines-copy h2, .testimonial-intro h2, .faq-heading h2, .contact-copy h2 { font-size: 39px; }
  .services-grid, .process-grid, .metric-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: 0;
    padding: 34px 22px 26px 104px;
    border-radius: 24px;
  }
  .service-card::before { width: 76px; }
  .service-icon { left: 13px; top: 24px; width: 50px; height: 50px; }
  .service-number { position: static; align-self: flex-start; margin: 0 0 14px; }
  .service-card h3 { max-width: 100%; margin: 0 0 10px; font-size: 20px; }
  .service-card p { max-width: 100%; }
  .service-card a { margin-top: 22px; }
  .gateway-visual { min-height: 470px; transform: scale(.86); margin-inline: -30px; }
  .gateway-window { width: 280px; height: 410px; }
  .orbit-text { width: 410px; height: 410px; }
  .mini-stat { right: 12px; bottom: 42px; }
  .discipline-cloud { min-height: 510px; }
  .discipline-cloud span { font-size: 11px; padding: 10px 14px; }
  .discipline-cloud span[style*="--x:61%"], .discipline-cloud span[style*="--x:60%"] { left: 48% !important; }
  .testimonial-stage { min-height: 500px; padding: 30px; }
  .testimonial { inset: 30px; }
  .testimonial blockquote { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* Live integrations */
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status.is-error { color: #ffd1d9; }
.form-status.is-success { color: #b8f2cf; }
.footer-contact a { display: flex; align-items: center; gap: 9px; overflow-wrap: anywhere; }
.footer-contact svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: 0 0 auto; }

.footer-socials { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.footer-socials .social-icon-button { width: 38px; height: 38px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); transition: transform .25s, background-color .25s, border-color .25s; }
.footer-socials .social-icon-button:hover { transform: translateY(-3px); color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.35); }
.footer-socials .social-icon-button svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.whatsapp-float { position: fixed; left: 22px; bottom: 22px; z-index: 1050; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 17px; border-radius: 999px; color: #fff; background: #1f9d55; box-shadow: 0 16px 36px rgba(13, 102, 57, .3); font-size: 13px; transition: transform .25s, box-shadow .25s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(13, 102, 57, .36); }
.whatsapp-float span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 15px; }
@media (max-width: 640px) { .whatsapp-float { left: 14px; bottom: 14px; min-height: 48px; padding: 0 13px; } .whatsapp-float strong { display: none; } }

.back-to-top { bottom: 94px; }
.legal-shell { min-height: 100vh; padding: 130px 0 80px; background: linear-gradient(180deg,#fff8fc,#fff); }
.legal-card { max-width: 900px; margin: 0 auto; padding: clamp(28px,5vw,64px); border: 1px solid #efd9e6; border-radius: 30px; background: #fff; box-shadow: 0 25px 65px rgba(91,22,69,.10); }
.legal-card h1 { margin: 10px 0 18px; color: #3d1232; font: 400 clamp(42px,7vw,70px)/1.02 'DM Serif Display',serif; }
.legal-card h2 { margin: 34px 0 10px; color: #5c1645; font-size: 22px; }
.legal-card p,.legal-card li { color: #66475a; line-height: 1.8; }
.legal-card a { color: #7a1f5c; font-weight: 700; }
.legal-home { display: inline-flex; margin-bottom: 20px; color: #7a1f5c; font-weight: 800; }
@media (max-width:640px){.back-to-top{bottom:82px}.legal-shell{padding-top:100px}.legal-card{border-radius:22px}}


/* CMS inner pages: uses the supplied Scopus Publication Service visual language. */
.cms-page-main { min-height: 70vh; }
.cms-inner-hero {
  position: relative; overflow: hidden; padding: 190px 0 105px; color: var(--white);
  background: radial-gradient(circle at 78% 28%, rgba(255,92,184,.25), transparent 30%),
              linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 54%, var(--navy-950) 100%);
}
.cms-inner-hero::before { content:""; position:absolute; inset:0; opacity:.16; background-image:linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to bottom,#000,transparent); }
.cms-inner-hero .container { position: relative; z-index: 1; }
.cms-inner-hero .section-tag { color: var(--cyan-300); }
.cms-inner-hero h1 { max-width: 900px; margin: 18px 0; font-size: clamp(44px, 6vw, 76px); line-height: 1.05; }
.cms-inner-hero p { max-width: 760px; margin: 0; color: #f6deee; font-size: 18px; }
.cms-page-main > .section:first-of-type { scroll-margin-top: 100px; }
.cms-page-main .contact-section { margin-top: 0; }
html[data-theme="dark"] body { background: var(--navy-950); color: var(--ice-100); }
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .disciplines-section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .testimonial-section { background: var(--navy-950); color: var(--ice-100); }
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .discipline-card,
html[data-theme="dark"] .testimonial-stage,
html[data-theme="dark"] .legal-card { background: var(--navy-900); color: var(--ice-100); border-color: rgba(255,255,255,.12); }
@media (max-width: 900px) { .cms-inner-hero { padding: 150px 0 80px; } }
