
:root {
  --lilac: #d1c9ff;
  --lilac-deep: #9f8cff;
  --ink: #070709;
  --white: #ffffff;
  --cream: #f4efe7;
  --green: #02cfc4;
  --line: rgba(7, 7, 9, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--lilac);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }
h1, h2 { font-weight: 850; }

.site-header {
  width: min(1220px, calc(100% - 48px));
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; }
.brand img { width: 204px; display: block; }
nav { display: flex; gap: 34px; font-size: 13px; font-weight: 800; }
nav a { position: relative; }
nav a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -7px;
  background: var(--ink);
  transition: width .25s ease;
}
nav a:hover::after { width: 100%; }

.hero {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 110px;
  position: relative;
  overflow: clip;
}
.hero-intro { max-width: 930px; position: relative; z-index: 2; animation: rise .75s ease both; }
.ambient {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(7,7,9,.18);
  border-radius: 50%;
}
.ambient-one {
  width: 430px;
  height: 430px;
  right: -215px;
  top: 45px;
  animation: drift 9s ease-in-out infinite;
}
.ambient-two {
  width: 120px;
  height: 120px;
  right: 80px;
  top: 115px;
  border-style: dashed;
  animation: spin 20s linear infinite;
}
.eyebrow {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--lilac); }
h1 {
  margin-bottom: 30px;
  font-size: clamp(58px, 6.8vw, 98px);
  line-height: .95;
  letter-spacing: -.065em;
}
h1 em, .about h2 em { font-style: normal; color: white; }
.hero-copy {
  max-width: 690px;
  margin-bottom: 68px;
  font-size: 18px;
  line-height: 1.65;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-card {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 1px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  animation: cardIn .7s ease both;
  transition: transform .28s ease, box-shadow .28s ease;
}
.area-card:nth-child(2) { animation-delay: .12s; }
.area-card:nth-child(3) { animation-delay: .24s; }
.area-card::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  right: -70px;
  top: -74px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .5;
  transition: transform .4s ease;
}
.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(34, 25, 83, .16);
}
.area-card:hover::before { transform: scale(1.15); }
.area-card.companies { background: var(--green); }
.area-card.people { background: var(--white); }
.area-card.leaders { color: var(--white); background: var(--ink); }
.area-number {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}
.area-card h2 {
  max-width: 280px;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.045em;
}
.area-card p {
  max-width: 315px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}
.card-cta {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: white;
  background: #7551e8;
  border: 2px solid #7551e8;
  border-radius: 99px;
  box-shadow: 0 10px 24px rgba(76, 46, 170, .28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
  animation: ctaBounce 2.1s ease-in-out infinite;
  transition: background .2s ease, transform .2s ease;
}
.card-cta b { font-size: 18px; line-height: 1; }
.area-card:hover .card-cta {
  background: #5f3bd3;
  transform: translateY(-2px);
}
.area-footer {
  padding-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid currentColor;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.area-footer strong { font-size: 25px; line-height: 1; }

.about {
  padding: 120px max(24px, calc((100% - 1220px) / 2));
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 90px;
  background: var(--cream);
}
.about-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.about-label i {
  width: 62px;
  height: 62px;
  margin-top: -24px;
  display: block;
  border: 1px solid var(--lilac-deep);
  border-radius: 50%;
}
.about-copy > p {
  max-width: 680px;
  color: #5c5751;
  font-size: 16px;
  line-height: 1.75;
}

.contact {
  padding: 90px max(24px, calc((100% - 1220px) / 2));
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 80px;
  color: white;
  background: var(--ink);
}
.contact-heading {
  display: grid;
  place-items: center;
}
.contact-heading h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(54px, 5.6vw, 78px);
  line-height: .94;
  letter-spacing: -.055em;
  text-align: center;
}
.contact-actions { border-top: 1px solid rgba(255,255,255,.25); }
.contact-button {
  min-height: 92px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 38px 82px 1fr 28px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: padding .25s ease, color .25s ease;
}
.contact-button:hover { padding-left: 12px; color: var(--lilac); }
.contact-button .contact-kind { color: #aaa7af; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--lilac);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}
.contact-icon svg { width: 15px; height: 15px; fill: currentColor; }
.contact-button strong { font-size: 17px; }
.contact-button i { font-size: 22px; font-style: normal; text-align: right; }
.contact-button.primary strong { color: var(--green); }

footer {
  min-height: 150px;
  padding: 34px max(24px, calc((100% - 1220px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  background: var(--lilac);
}
footer img { width: 174px; }
footer p { margin: 0; text-align: center; font-size: 12px; }
footer > div { display: flex; justify-content: flex-end; gap: 22px; font-size: 13px; font-weight: 850; }
.footer-social { display: inline-flex; align-items: center; gap: 7px; }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.whatsapp-float {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  color: white;
  background: #159a50;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(12,102,50,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 42px rgba(12,102,50,.4); }
.whatsapp-float svg { width: 27px; height: 27px; fill: currentColor; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drift {
  50% { transform: translate(-22px, 16px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes ctaBounce {
  0%, 72%, 100% { transform: translateY(0); }
  80% { transform: translateY(-7px); }
  88% { transform: translateY(0); }
  94% { transform: translateY(-3px); }
}

@media (max-width: 880px) {
  .site-header { width: calc(100% - 32px); height: 78px; }
  .brand img { width: 150px; }
  nav { gap: 18px; font-size: 11px; }
  .hero { width: calc(100% - 32px); padding: 58px 0 76px; }
  h1 { font-size: clamp(48px, 12vw, 72px); }
  .hero-copy { margin-bottom: 45px; font-size: 16px; }
  .area-grid { grid-template-columns: 1fr; gap: 14px; }
  .area-card { min-height: 410px; }
  .about, .contact { padding: 82px 20px; grid-template-columns: 1fr; gap: 38px; }
  .about-label i { width: 45px; height: 45px; margin-top: -16px; }
  footer { padding: 42px 20px; grid-template-columns: 1fr; }
  footer p { text-align: left; }
  footer > div { justify-content: flex-start; }
}

@media (max-width: 540px) {
  .site-header { width: calc(100% - 24px); height: 68px; }
  .brand img { width: 132px; }
  nav a:not(:last-child) { display: none; }
  nav { font-size: 11px; }
  .hero { width: calc(100% - 28px); padding-top: 44px; }
  .ambient-one { width: 250px; height: 250px; right: -170px; top: 28px; opacity: .65; }
  .ambient-two { width: 72px; height: 72px; right: 10px; top: 76px; opacity: .55; }
  .eyebrow { margin-bottom: 16px; font-size: 9px; }
  h1 { margin-bottom: 24px; font-size: clamp(43px, 13.2vw, 58px); }
  .hero-copy { margin-bottom: 36px; }
  .area-card { min-height: 420px; padding: 25px 22px; border-radius: 22px; }
  .area-card h2 { font-size: 36px; }
  .area-card p { font-size: 14px; }
  .card-cta { width: 100%; min-height: 46px; padding: 0 17px; justify-content: space-between; font-size: 11px; }
  .area-footer { font-size: 11px; }
  .about, .contact { padding: 64px 18px; }
  .contact-heading h2 { max-width: none; font-size: 44px; text-align: center; }
  .contact-button {
    min-height: 88px;
    grid-template-columns: 36px 1fr 24px;
    gap: 5px 12px;
  }
  .contact-icon { grid-column: 1; grid-row: 1 / span 2; }
  .contact-button .contact-kind { grid-column: 2; }
  .contact-button strong { grid-column: 2; font-size: 15px; }
  .contact-button i { grid-column: 3; grid-row: 1 / span 2; }
  .whatsapp-float { width: 52px; height: 52px; right: 13px; bottom: 13px; }
  footer { padding-bottom: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .area-card, .area-card::before, .contact-button { transition: none; animation: none; }
  .hero-intro, .ambient { animation: none; }
  .card-cta { animation: none; }
}
