:root {
  --ink: #171127;
  --ink-soft: #5f586e;
  --purple-950: #17082f;
  --purple-900: #25104f;
  --purple-800: #35156f;
  --purple-700: #4b238f;
  --purple-600: #6637ad;
  --violet: #8555c6;
  --lavender: #b99be3;
  --mist: #f7f4fb;
  --line: #e7e0ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(37, 16, 79, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--purple-900);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(37, 16, 79, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(36, 16, 79, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  width: max-content;
}

.brand-crop {
  position: relative;
  display: block;
  width: 210px;
  height: 54px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--purple-950) 0 56px, transparent 56px);
  isolation: isolate;
}

.brand-crop img {
  position: absolute;
  top: -44px;
  left: -123px;
  width: 300px;
  max-width: none;
  clip-path: inset(44px 121px 104px 123px);
  mix-blend-mode: screen;
}

.brand-crop::after {
  content: "Vitta Talent";
  position: absolute;
  top: 8px;
  left: 67px;
  z-index: 2;
  color: var(--purple-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--purple-800);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav > a {
  position: relative;
  color: #514a5f;
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a.active {
  color: var(--purple-700);
}

.site-nav > a:hover::after,
.site-nav > a.active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 11px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-800);
  box-shadow: 0 8px 20px rgba(53, 21, 111, 0.2);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--purple-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 145px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(247, 243, 251, 0.6) 100%),
    radial-gradient(circle at 85% 15%, #d8c9ec 0, transparent 38%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(62, 28, 119, 0.2) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: linear-gradient(to right, transparent 44%, black 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -160px;
  right: -150px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(113, 62, 179, 0.13);
  box-shadow: 0 0 0 70px rgba(113, 62, 179, 0.025), 0 0 0 140px rgba(113, 62, 179, 0.018);
}

.hero-glow-two {
  bottom: -220px;
  left: -180px;
  width: 440px;
  height: 440px;
  background: rgba(137, 91, 196, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 54px;
  min-height: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 23px;
  color: var(--purple-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.method-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.046em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.6rem, 5.8vw, 5.9rem);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 em,
.section-heading h2 em,
.method-copy h2 em,
.contact-copy h2 em {
  color: var(--purple-600);
  font-weight: inherit;
}

.hero h1 em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  box-shadow: 0 14px 28px rgba(70, 31, 139, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(70, 31, 139, 0.28);
}

.button-secondary {
  border-color: var(--line);
  color: var(--purple-800);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(37, 16, 79, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  color: #746d80;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
}

.hero-proof span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 14px;
  border-radius: 50%;
  background: var(--lavender);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 344px;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 180px 180px 52px 52px;
  color: var(--white);
  background:
    radial-gradient(circle at 67% 23%, rgba(184, 148, 228, 0.45), transparent 28%),
    linear-gradient(155deg, #513094 0%, #2e1266 56%, #190936 100%);
  box-shadow: 0 40px 90px rgba(36, 14, 78, 0.3);
  transform: translate(-50%, -50%);
}

.visual-core::before,
.visual-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-core::before {
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.02);
}

.visual-core::after {
  right: -110px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  background: rgba(141, 89, 204, 0.22);
}

.visual-symbol {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 124px;
  height: 140px;
  transform: translateX(-50%);
}

.symbol-dot,
.symbol-left,
.symbol-right {
  position: absolute;
  display: block;
  background: linear-gradient(145deg, #bd9be5, #7543b9);
}

.symbol-dot {
  top: 0;
  left: 52px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
}

.symbol-left {
  top: 26px;
  left: 8px;
  width: 59px;
  height: 105px;
  border-radius: 0 100% 0 100%;
  transform: rotate(-26deg);
}

.symbol-right {
  top: 22px;
  right: 7px;
  width: 55px;
  height: 105px;
  border-radius: 100% 0 100% 0;
  transform: rotate(22deg);
}

.visual-core > p {
  position: absolute;
  z-index: 1;
  bottom: 57px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
  text-align: center;
}

.visual-core strong {
  color: var(--white);
  font-weight: 500;
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(93, 49, 161, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 465px;
  height: 465px;
}

.orbit-two {
  width: 550px;
  height: 550px;
  border-style: dashed;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 198px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(80, 39, 145, 0.1);
  border-radius: 17px;
  color: var(--purple-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(37, 16, 79, 0.14);
  backdrop-filter: blur(10px);
}

.floating-card span:last-child {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--violet);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.icon-wrap {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--purple-600);
  background: var(--mist);
}

.icon-wrap svg,
.area-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-people {
  top: 76px;
  left: -8px;
}

.card-health {
  top: 260px;
  right: -12px;
}

.card-safety {
  bottom: 63px;
  left: -4px;
}

.visual-note {
  position: absolute;
  right: 10px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #766d80;
  font-size: 0.68rem;
  font-weight: 750;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c4cb9;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(124, 76, 185, 0.3);
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7e7589;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 21px;
  height: 34px;
  border: 1px solid #d2c9dd;
  border-radius: 20px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--purple-600);
  transform: translateX(-50%);
  animation: scroll-down 1.8s infinite ease-in-out;
}

@keyframes scroll-down {
  0% { opacity: 0; transform: translate(-50%, -3px); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 8px); }
}

.audience {
  position: relative;
  overflow: hidden;
  background: #fbf9fd;
}

.audience::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -190px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(91, 42, 164, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(91, 42, 164, 0.018), 0 0 0 140px rgba(91, 42, 164, 0.012);
}

.audience-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}

.audience-head > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--ink-soft);
}

.audience-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(37, 16, 79, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  border-color: #cdb9df;
  box-shadow: 0 22px 48px rgba(37, 16, 79, 0.1);
  transform: translateY(-5px);
}

.audience-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(181, 143, 222, 0.3), transparent 30%),
    linear-gradient(145deg, var(--purple-800), var(--purple-950));
}

.audience-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.featured .audience-card-meta {
  border-color: rgba(255, 255, 255, 0.14);
}

.audience-card-meta span {
  color: var(--purple-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.featured .audience-card-meta span {
  color: #cdb5e8;
}

.audience-card-meta small {
  color: #8a7d98;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .audience-card-meta small {
  color: rgba(255, 255, 255, 0.58);
}

.audience-card h3 {
  margin: 42px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.audience-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.audience-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.audience-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 24px 30px;
  border: 1px solid #ded2e9;
  border-radius: 16px;
  color: var(--purple-800);
  background: #f1eaf7;
}

.audience-signature span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-signature strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.intro {
  position: relative;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 112px;
  align-items: start;
}

.section-heading h2,
.method-copy h2,
.contact-copy h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.intro-copy {
  max-width: 610px;
}

.intro-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.intro-copy .intro-lead {
  margin-top: 6px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border-bottom: 1px solid var(--lavender);
  color: var(--purple-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1.1rem;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fbf9fd, #f5f0fa);
}

.value-strip > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 130px;
  padding: 28px 36px;
}

.value-strip > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.value-strip strong {
  color: var(--purple-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.value-strip span {
  color: #6a6275;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.areas {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(137, 80, 198, 0.27), transparent 28%),
    var(--purple-950);
}

.areas::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
}

.section-top,
.solutions-head {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}

.eyebrow-light {
  color: #bca3dc;
}

.areas .section-heading h2,
.contact .contact-copy h2 {
  color: var(--white);
}

.areas .section-heading h2 em,
.contact .contact-copy h2 em {
  color: #b998e1;
}

.section-top > p,
.solutions-head > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.62);
}

.area-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.area-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

.area-card.featured {
  background: linear-gradient(155deg, rgba(118, 68, 179, 0.38), rgba(255, 255, 255, 0.05));
}

.area-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.area-number {
  color: #bda4dc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.area-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #d4bcec;
  background: rgba(255, 255, 255, 0.07);
}

.area-icon svg {
  width: 25px;
  height: 25px;
}

.area-card h3 {
  margin: 54px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.area-card p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.area-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d2bbea;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.area-card a span {
  font-size: 1.25rem;
}

.challenges {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(247, 243, 251, 0.94)),
    radial-gradient(circle at 20% 20%, #e4d5ef, transparent 45%);
}

.challenges-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: start;
}

.challenges-copy {
  position: sticky;
  top: 130px;
}

.challenges-copy h2,
.faq-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.challenges-copy > p:not(.eyebrow),
.faq-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 26px;
  color: var(--ink-soft);
}

.challenge-list {
  display: grid;
  gap: 14px;
}

.challenge-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(37, 16, 79, 0.045);
}

.challenge-item > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--mist);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.challenge-item h3 {
  margin: 1px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.challenge-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.solutions {
  background: var(--mist);
}

.solutions-head > p {
  color: var(--ink-soft);
}

.tabs {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fbf9fd;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 70px;
  padding: 14px 16px;
  border: 0;
  border-radius: 14px;
  color: #746c7e;
  background: transparent;
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tab-button span {
  color: #a593b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.tab-button:hover {
  color: var(--purple-800);
  background: #f3eef8;
}

.tab-button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  box-shadow: 0 12px 24px rgba(63, 29, 123, 0.2);
}

.tab-button.active span {
  color: #d5c0eb;
}

.tab-stage {
  padding: 48px 52px 54px;
}

.tab-panel {
  animation: panel-in 0.35s ease;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-intro {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  margin-bottom: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.panel-index {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--mist);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.panel-kicker {
  margin: 0 0 4px;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-intro h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.panel-intro p:last-child {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 72px;
  padding: 18px 0;
  border-bottom: 1px solid #eee8f3;
  color: #3e3749;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.service-list li span {
  color: #9a7bbc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
}

.method {
  background: var(--white);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 112px;
  align-items: start;
}

.method-copy {
  position: sticky;
  top: 130px;
}

.method-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 30px;
  color: var(--ink-soft);
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 144px;
}

.method-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: -6px;
  left: 27px;
  width: 1px;
  background: var(--line);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-700);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
}

.method-steps h3 {
  margin: 4px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.method-steps p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact {
  padding-top: 60px;
  background: var(--white);
}

.faq {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 130px;
}

.faq-copy .button {
  margin-top: 6px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: #cdb9df;
  box-shadow: 0 14px 32px rgba(37, 16, 79, 0.07);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple-600);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 62px 24px 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 74px;
  min-height: 480px;
  padding: 70px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 93% 12%, rgba(174, 125, 224, 0.38), transparent 30%),
    linear-gradient(135deg, #2f1467, #190834 82%);
  box-shadow: 0 34px 80px rgba(37, 16, 79, 0.24);
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.button-white {
  color: var(--purple-900);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.contact-details a:hover {
  color: var(--white);
}

.contact-details span {
  margin-top: 4px;
  font-size: 0.73rem;
}

.contact-mark {
  position: absolute;
  top: -65px;
  right: 28%;
  width: 155px;
  height: 170px;
  opacity: 0.1;
  transform: rotate(12deg);
}

.contact-mark span {
  position: absolute;
  display: block;
  background: var(--white);
}

.contact-dot {
  top: 0;
  left: 63px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.contact-leaf-left {
  top: 35px;
  left: 8px;
  width: 70px;
  height: 124px;
  border-radius: 0 100% 0 100%;
  transform: rotate(-24deg);
}

.contact-leaf-right {
  top: 32px;
  right: 8px;
  width: 68px;
  height: 124px;
  border-radius: 100% 0 100% 0;
  transform: rotate(21deg);
}

.site-footer {
  padding-top: 38px;
  background: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand-tagline {
  max-width: 260px;
  margin-top: 7px;
  font-size: 0.63rem;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: #706878;
  font-size: 0.82rem;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--purple-700);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 32px;
  color: #8b8393;
  font-size: 0.7rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 28px rgba(20, 100, 50, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }

  .visual-core {
    width: 300px;
    height: 400px;
  }

  .orbit-one { width: 405px; height: 405px; }
  .orbit-two { width: 485px; height: 485px; }
  .floating-card { min-width: 178px; }
  .card-people, .card-safety { left: -15px; }
  .card-health { right: -15px; }

  .intro-grid,
  .method-grid {
    gap: 72px;
  }

  .contact-card {
    padding: 58px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 78px;
  }

  .brand-crop {
    width: 185px;
    height: 48px;
  }

  .brand-crop img {
    top: -39px;
    left: -109px;
    width: 268px;
    clip-path: inset(39px 108px 93px 109px);
  }

  .brand-crop::after {
    top: 8px;
    left: 59px;
    font-size: 1.35rem;
  }

  .brand-tagline {
    font-size: 0.51rem;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 120px 32px 60px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 750;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .intro-grid,
  .method-grid,
  .challenges-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .audience-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .audience-head > p {
    max-width: 620px;
  }

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 270px;
  }

  .section-top,
  .solutions-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-top > p,
  .solutions-head > p {
    max-width: 620px;
  }

  .area-cards {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 350px;
  }

  .area-card p {
    max-width: 500px;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tab-button {
    flex: 0 0 220px;
  }

  .method-copy {
    position: static;
  }

  .challenges-copy,
  .faq-copy {
    position: static;
  }

  .challenges-grid,
  .faq-grid {
    gap: 58px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-main {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 50px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 92px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-proof span:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(0.92);
  }

  .visual-core {
    width: 270px;
    height: 375px;
  }

  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 420px; height: 420px; }
  .floating-card { min-width: 166px; padding: 9px 12px 9px 9px; }
  .floating-card span:last-child { font-size: 0.69rem; }
  .icon-wrap { width: 35px; height: 35px; }
  .card-people { top: 75px; left: -12px; }
  .card-health { top: 235px; right: -18px; }
  .card-safety { bottom: 58px; left: -10px; }
  .visual-note { display: none; }
  .scroll-cue { display: none; }

  .section-heading h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .intro-grid {
    gap: 42px;
  }

  .audience-head {
    margin-bottom: 42px;
  }

  .audience-card {
    min-height: 250px;
    padding: 26px;
  }

  .audience-card h3 {
    margin-top: 34px;
  }

  .audience-signature {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .value-strip {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .value-strip > div {
    min-height: 104px;
  }

  .value-strip > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-top,
  .solutions-head {
    margin-bottom: 44px;
  }

  .area-card {
    min-height: 360px;
    padding: 26px;
  }

  .area-card h3 {
    margin-top: 44px;
  }

  .tabs {
    border-radius: 22px;
  }

  .tab-list {
    padding: 14px;
  }

  .tab-button {
    flex-basis: 195px;
    min-height: 62px;
  }

  .tab-stage {
    padding: 34px 24px 38px;
  }

  .panel-intro {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .panel-index {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .panel-intro h3 {
    font-size: 2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list li {
    min-height: auto;
  }

  .method-grid {
    gap: 58px;
  }

  .challenge-item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 22px 20px;
  }

  .challenge-item > span {
    width: 40px;
    height: 40px;
  }

  .challenge-item h3 {
    font-size: 1.3rem;
  }

  .faq-copy .button {
    width: 100%;
  }

  .faq-list summary {
    padding: 20px 52px 20px 20px;
  }

  .faq-list summary::before,
  .faq-list summary::after {
    right: 21px;
  }

  .faq-list details p {
    padding: 0 20px 22px;
  }

  .method-steps li {
    grid-template-columns: 58px 1fr;
  }

  .method-steps h3 {
    font-size: 1.45rem;
  }

  .contact {
    padding-top: 20px;
  }

  .contact-card {
    width: min(calc(100% - 20px), var(--container));
    padding: 50px 28px;
    border-radius: 24px;
  }

  .contact-actions {
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    width: calc(100% + 24px);
    margin-left: -12px;
    transform: scale(0.84);
  }

  .floating-card {
    min-width: 155px;
  }
}

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

:focus-visible {
  outline: 3px solid rgba(125, 76, 185, 0.5);
  outline-offset: 4px;
}
