:root {
  --ink: #111063;
  --violet: #7138ff;
  --cyan: #1ecaf0;
  --soft-violet: #a987ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 4%, rgba(150, 78, 255, .2), transparent 20rem),
    radial-gradient(circle at 3% 20%, rgba(169, 138, 255, .12), transparent 19rem),
    radial-gradient(circle at 87% 92%, rgba(41, 204, 239, .13), transparent 23rem),
    linear-gradient(180deg, #fff 0%, #fff 62%, #faf9ff 100%);
  background-size: 115% 115%, 125% 125%, 120% 120%, 100% 100%;
  animation: background-breathe 10s ease-in-out infinite alternate;
}

main::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
  opacity: .78;
  filter: blur(20px);
  background:
    radial-gradient(ellipse at 22% 28%, rgba(137, 77, 255, .14) 0 8%, transparent 32%),
    radial-gradient(ellipse at 78% 18%, rgba(71, 214, 255, .13) 0 7%, transparent 29%),
    radial-gradient(ellipse at 66% 82%, rgba(182, 98, 255, .12) 0 10%, transparent 35%);
  animation: color-clouds 12s ease-in-out infinite alternate;
}

main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 1650px;
  height: 1650px;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  opacity: .58;
  filter: blur(58px);
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg 28deg,
      rgba(140, 70, 255, .4) 62deg,
      transparent 118deg,
      rgba(28, 203, 241, .42) 168deg,
      transparent 230deg,
      rgba(188, 103, 255, .32) 286deg,
      transparent 340deg
    );
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: halo-rotate 14s linear infinite;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, border-radius, opacity;
}
.ambient-a {
  width: 390px; height: 390px; background: #b897ff2b; top: -170px; left: 170px;
  animation: blob-violet 9s ease-in-out infinite alternate;
}
.ambient-b {
  width: 450px; height: 320px; background: #31d4ff16; right: -80px; bottom: 20px;
  animation: blob-cyan 11s ease-in-out infinite alternate;
}

.network {
  position: absolute;
  opacity: .24;
  width: 530px;
  height: 420px;
  pointer-events: none;
  background-image:
    radial-gradient(circle, #7a38ff 0 3px, transparent 4px),
    linear-gradient(28deg, transparent 49.6%, #a48af3 50%, transparent 50.4%),
    linear-gradient(151deg, transparent 49.6%, #6fc7ef 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 49.7%, #c0b1f7 50%, transparent 50.3%);
  background-size: 86px 86px, 140px 95px, 118px 112px, 172px 135px;
}
.network-right { right: -40px; top: 120px; transform: rotate(-5deg); mask-image: linear-gradient(to left, #000 35%, transparent); }
.network-right { animation: network-drift-right 24s ease-in-out infinite alternate; }
.network-bottom {
  right: 0; bottom: -150px; transform: rotate(10deg); mask-image: linear-gradient(to top, #000 30%, transparent);
  animation: network-drift-bottom 28s ease-in-out infinite alternate;
}

header {
  width: min(1400px, calc(100% - 80px));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.2px;
}
.brand > span:last-child span { color: #8050ff; }
.brand-mark { width: 31px; height: 31px; position: relative; display: block; }
.brand-mark i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #20c8ec; }
.brand-mark i:nth-child(1) { top: 0; right: 1px; }
.brand-mark i:nth-child(2) { bottom: 0; right: 1px; }
.brand-mark i:nth-child(3) {
  width: 26px; height: 22px; top: 5px; left: 0; border-radius: 4px 70% 70% 4px;
  background: linear-gradient(135deg, #38d7f2, #8a47ff 60%, #ecb5ff);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

nav { display: flex; gap: 44px; align-items: center; font-size: 14px; font-weight: 700; }
nav a { position: relative; padding: 36px 0 22px; }
nav a::after {
  content: ""; position: absolute; height: 2px; left: 0; right: 0; bottom: 11px;
  transform: scaleX(0); background: var(--violet); transition: transform .25s ease;
}
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--violet); }

.talk-button, .secondary-button {
  min-width: 148px;
  height: 46px;
  border-radius: 28px;
  border: 0;
  background: transparent;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  color: #6e42f8;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.talk-button::before, .secondary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(90deg, #7937ff, #20cdf2);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.talk-button:hover, .secondary-button:hover, .primary-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px #7655e522; }
.talk-button span { color: #29b4f0; font-size: 21px; }

.hero {
  width: min(1360px, calc(100% - 100px));
  height: 468px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 49% 51%;
  position: relative;
  z-index: 3;
}
.hero-copy { padding-top: 12px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 35px;
  padding: 0 19px;
  border-radius: 20px;
  border: 1px solid #d9cdfd;
  color: #6941ee;
  background: #fbfaffaa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
}
h1 {
  margin: 26px 0 23px;
  font-size: clamp(42px, 3.75vw, 59px);
  line-height: 1.06;
  letter-spacing: -2.8px;
  color: #11105c;
}
h1 span {
  background: linear-gradient(90deg, #783fff 0%, #9967ff 45%, #21c5ef 100%);
  background-clip: text;
  color: transparent;
}
h1 .color-flow-text {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #7138ff 0%,
    #8150ff 12.5%,
    #9a70ff 25%,
    #669cf8 37.5%,
    #1ecaf0 50%,
    #669cf8 62.5%,
    #9a70ff 75%,
    #8150ff 87.5%,
    #7138ff 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  will-change: background-position;
  animation: title-color-flow 5s linear infinite;
}
.hero-copy > p { font-size: 15px; line-height: 1.75; margin: 0; color: #33317c; }
.hero-actions { display: flex; gap: 17px; margin-top: 31px; }
.primary-button {
  min-width: 170px; height: 46px; padding: 0 24px;
  border-radius: 26px;
  display: inline-flex; align-items: center; justify-content: space-between;
  color: #fff; font-size: 14px; font-weight: 700;
  background: linear-gradient(100deg, #7830f3 0%, #8a45ff 42%, #13c8ef 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button span { font-size: 21px; }
.secondary-button { min-width: 185px; font-size: 14px; }

.hero-visual { position: relative; height: 455px; perspective: 1000px; }
.hero-visual::before {
  content: ""; position: absolute; width: 540px; height: 235px; right: 12px; bottom: 15px;
  background: radial-gradient(ellipse, #bca8ff52 0%, transparent 68%);
  filter: blur(4px);
}
.laptop { position: absolute; width: 410px; height: 300px; right: 80px; top: 18px; transform: rotate(-8deg) skewY(-1deg); }
.laptop-screen {
  width: 355px; height: 235px; margin-left: 30px; position: relative; overflow: hidden;
  border: 4px solid #261584; border-radius: 13px 13px 8px 8px;
  background:
    radial-gradient(circle at 70% 60%, #7940e9 0 12%, transparent 12.5%),
    radial-gradient(circle at 76% 45%, #a868f0 0 13%, transparent 13.5%),
    radial-gradient(circle at 70% 33%, #fff 0 17%, transparent 17.5%),
    linear-gradient(135deg, #fff 0%, #f6f2ff 45%, #e8dbff 100%);
  box-shadow: inset 0 0 35px #9f79ef30, 0 18px 55px #5734b12d;
}
.screen-top { display: flex; justify-content: space-between; padding: 18px 19px; font-size: 7px; color: #6d3aea; }
.screen-copy { position: absolute; left: 21px; top: 65px; width: 165px; }
.screen-copy strong { display: block; font-size: 13px; line-height: 1.35; color: #12105d; }
.screen-copy p { font-size: 6px; line-height: 1.5; color: #7772a2; }
.screen-copy button, .phone button { border: 0; border-radius: 15px; background: #7146e9; color: #fff; font-size: 6px; padding: 7px 14px; }
.screen-art { position: absolute; right: 28px; bottom: 28px; width: 130px; height: 125px; }
.screen-art i { position: absolute; border-radius: 50%; background: linear-gradient(135deg, #c99bff, #6132dc); box-shadow: inset -10px -10px 20px #4f22bd42; }
.screen-art i:nth-child(1) { width: 70px; height: 70px; bottom: 0; left: 13px; }
.screen-art i:nth-child(2) { width: 38px; height: 38px; top: 12px; right: 2px; }
.screen-art i:nth-child(3) { width: 48px; height: 48px; top: 35px; left: 7px; opacity: .58; }
.laptop-base {
  width: 425px; height: 76px; margin-left: -8px;
  background: linear-gradient(180deg, #ece6ff, #bba4f1 84%);
  clip-path: polygon(9% 0, 91% 0, 100% 68%, 91% 82%, 10% 82%, 0 68%);
  box-shadow: 0 20px 30px #44249233;
}
.laptop-base::after {
  content: ""; display: block; width: 230px; height: 52px; margin: 7px auto;
  background: repeating-linear-gradient(90deg, #aa90e6 0 2px, transparent 2px 18px);
  opacity: .35; transform: skew(-25deg); clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}
.phone {
  position: absolute; z-index: 3; width: 112px; height: 205px; right: 37px; top: 158px;
  padding: 30px 13px 12px;
  border: 5px solid #171062; border-radius: 18px; background: linear-gradient(160deg, #fff, #eee7ff);
  transform: rotate(6deg); box-shadow: 0 20px 35px #3e288a2b;
}
.phone-notch { position: absolute; top: -1px; left: 31px; width: 44px; height: 8px; border-radius: 0 0 8px 8px; background: #171062; }
.phone > span { color: #7d47ea; font-size: 7px; display: block; margin-bottom: 22px; }
.phone strong { font-size: 10px; line-height: 1.25; display: block; }
.phone small { font-size: 4px; line-height: 1.5; display: block; margin: 9px 0; color: #8179a7; }
.tool-pill {
  position: absolute; left: 230px; bottom: 33px; z-index: 4; padding: 9px 21px;
  border-radius: 10px; color: #854bf2; background: #ffffffdd; box-shadow: 0 8px 28px #7652bc27; font-size: 13px;
}
.stat-card { position: absolute; z-index: 3; border: 1px solid #ded5fb; background: #ffffffb8; backdrop-filter: blur(6px); box-shadow: 0 10px 35px #7450bf13; }
.stat-line { width: 82px; height: 99px; left: 95px; top: 75px; padding: 14px; transform: rotate(-8deg); border-radius: 10px; }
.stat-line small, .stat-growth small { font-size: 6px; color: #8d84ab; display: block; }
.mini-chart { display: block; color: #844cff; font-size: 35px; transform: rotate(-18deg); }
.stat-growth { width: 126px; height: 76px; left: 88px; top: 225px; padding: 13px; border-radius: 10px; display: flex; align-items: center; gap: 12px; transform: rotate(-4deg); }
.stat-growth strong { font-size: 15px; }
.donut { width: 38px; height: 38px; border-radius: 50%; background: conic-gradient(#7343e9 0 78%, #e8e0ff 78%); position: relative; }
.donut::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.orb {
  position: absolute; z-index: 5; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #d8bbff, #7233e9 58%, #4e19bd);
  box-shadow: 0 14px 30px #5430b531;
  cursor: crosshair;
  will-change: transform, opacity, filter;
}
.orb::before, .orb::after {
  content: "";
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}
.orb-one { width: 43px; height: 43px; left: 30px; top: 95px; animation: float-one 7s ease-in-out infinite; }
.orb-two { width: 61px; height: 61px; right: 160px; bottom: 25px; animation: float-two 9s ease-in-out infinite; }
.orb-three { width: 32px; height: 32px; right: -18px; top: 190px; background: radial-gradient(circle at 30% 25%, #bff8ff, #1dc1e7); animation: float-three 6s ease-in-out infinite; }
.orb-burst {
  animation: orb-core-burst .65s cubic-bezier(.2, .8, .25, 1) forwards !important;
}
.orb-burst::before {
  opacity: 1;
  background: #8b4cff;
  box-shadow:
    -38px -31px 0 3px #a565ff,
    36px -27px 0 1px #6e31e7,
    48px 13px 0 4px #b588ff,
    21px 44px 0 2px #5425c9,
    -22px 42px 0 4px #9e61f4,
    -49px 12px 0 1px #6e38e3;
  animation: orb-particles-a .75s ease-out forwards;
}
.orb-burst::after {
  opacity: 1;
  background: #31d1f0;
  box-shadow:
    3px -51px 0 2px #70e5f7,
    52px -9px 0 2px #27c5e9,
    39px 37px 0 1px #9e72ff,
    -5px 55px 0 3px #7442e8,
    -45px 31px 0 2px #42d3ef,
    -48px -21px 0 3px #b38cff;
  animation: orb-particles-b .85s ease-out forwards;
}
.orb-gone {
  opacity: 0;
  animation: none !important;
  pointer-events: none;
}
.orb-rebuild {
  animation: orb-reconstruct .8s cubic-bezier(.15, .85, .25, 1.2) forwards !important;
  pointer-events: none;
}

@keyframes background-breathe {
  0% { background-position: 82% 2%, 2% 20%, 86% 92%, 0 0; }
  50% { background-position: 74% 10%, 8% 28%, 76% 84%, 0 0; }
  100% { background-position: 88% 15%, -4% 13%, 92% 76%, 0 0; }
}

@keyframes color-clouds {
  0% { transform: translate3d(-2%, -1%, 0) rotate(-3deg) scale(1); }
  50% { transform: translate3d(5%, 3%, 0) rotate(3deg) scale(1.09); }
  100% { transform: translate3d(-1%, 7%, 0) rotate(-1deg) scale(.96); }
}

@keyframes halo-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.15); }
  to { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes blob-violet {
  0% { transform: translate3d(0, 0, 0) scale(1, 1); border-radius: 50% 42% 55% 46%; opacity: .78; }
  50% { transform: translate3d(190px, 115px, 0) scale(1.35, .8); border-radius: 38% 62% 43% 57%; opacity: 1; }
  100% { transform: translate3d(48px, 230px, 0) scale(.82, 1.32); border-radius: 61% 39% 58% 42%; opacity: .8; }
}

@keyframes blob-cyan {
  0% { transform: translate3d(0, 0, 0) scale(1); border-radius: 48% 52% 43% 57%; }
  50% { transform: translate3d(-230px, -90px, 0) scale(1.3, .82); border-radius: 62% 38% 56% 44%; }
  100% { transform: translate3d(-70px, -220px, 0) scale(.84, 1.34); border-radius: 40% 60% 37% 63%; }
}

@keyframes network-drift-right {
  from { transform: translate3d(0, 0, 0) rotate(-5deg) scale(1); background-position: 0 0, 0 0, 0 0, 0 0; }
  to { transform: translate3d(-30px, 34px, 0) rotate(-2deg) scale(1.06); background-position: 18px 11px, -14px 19px, 20px -12px, -9px 17px; }
}

@keyframes network-drift-bottom {
  from { transform: translate3d(0, 0, 0) rotate(10deg) scale(1); background-position: 0 0, 0 0, 0 0, 0 0; }
  to { transform: translate3d(-48px, -22px, 0) rotate(7deg) scale(1.08); background-position: -20px 15px, 16px -12px, -11px 18px, 21px -8px; }
}

@keyframes float-one {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(15px, -22px, 0) rotate(12deg); }
}

@keyframes float-two {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-22px, -17px, 0) scale(1.07); }
}

@keyframes float-three {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, 19px, 0); }
}

@keyframes orb-core-burst {
  0% { transform: scale(1); opacity: 1; filter: brightness(1); }
  28% { transform: scale(1.45); opacity: 1; filter: brightness(1.7); }
  100% { transform: scale(.05); opacity: 0; filter: brightness(2); }
}

@keyframes orb-particles-a {
  0% { transform: scale(.08) rotate(0deg); opacity: 1; }
  100% { transform: scale(1.8) rotate(55deg); opacity: 0; }
}

@keyframes orb-particles-b {
  0% { transform: scale(.08) rotate(0deg); opacity: 1; }
  100% { transform: scale(1.55) rotate(-65deg); opacity: 0; }
}

@keyframes orb-reconstruct {
  0% { transform: scale(.05); opacity: 0; filter: blur(7px) brightness(2); }
  58% { transform: scale(1.28); opacity: .85; filter: blur(1px) brightness(1.3); }
  100% { transform: scale(1); opacity: 1; filter: blur(0) brightness(1); }
}

@keyframes title-color-flow {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

.services {
  width: min(1360px, calc(100% - 100px));
  margin: -3px auto 0;
  position: relative;
  z-index: 5;
}
.section-kicker { text-align: center; color: #8b57f5; font-size: 10px; letter-spacing: 1.2px; font-weight: 800; }
h2 { text-align: center; font-size: 28px; margin: 10px 0 21px; letter-spacing: -1px; }
h2 span { color: #7650f3; }
h2 i { color: #25c4eb; font-style: normal; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card {
  min-height: 230px; padding: 27px 28px 22px; position: relative;
  background: #ffffffc7; border: 1px solid #eeebf9; border-radius: 19px;
  box-shadow: 0 15px 45px #7666b311;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: #b99df1; box-shadow: 0 20px 45px #6f49cb1c; }
.service-icon {
  height: 60px; display: flex; align-items: center; font-size: 38px; color: #7b43ff;
  background: linear-gradient(135deg, #9b5bff, #15c7ee); background-clip: text;
  -webkit-text-fill-color: transparent; letter-spacing: -6px;
}
.service-card h3 { margin: 12px 0 11px; font-size: 14px; }
.service-card p { margin: 0; color: #504d8f; font-size: 11px; line-height: 1.8; }
.service-card > a { position: absolute; right: 20px; bottom: 17px; color: #7540f4; font-size: 20px; }

.brands { position: relative; z-index: 4; width: min(1000px, calc(100% - 80px)); margin: 42px auto 26px; text-align: center; }
.brands > p { font-size: 10px; letter-spacing: 1.4px; color: #9a70ed; }
.brands > div { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; color: #c0aeef; font-size: 19px; font-weight: 800; }
.brands .boxed { border: 2px solid #c0aeef; padding: 15px 8px; font-size: 11px; }
.brands sup { font-size: 8px; }

@media (max-width: 1120px) {
  nav { gap: 22px; }
  .hero { width: calc(100% - 60px); grid-template-columns: 54% 46%; }
  .hero-visual { transform: scale(.82); transform-origin: left center; width: 600px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .services { margin-top: 20px; }
}

@media (max-width: 780px) {
  header { width: calc(100% - 34px); height: 78px; }
  .brand { font-size: 21px; }
  nav { display: none; }
  .talk-button { min-width: 118px; height: 40px; }
  .hero {
    width: calc(100% - 38px); height: auto; margin-top: 34px;
    grid-template-columns: 1fr; text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  h1 { font-size: 42px; letter-spacing: -2px; }
  .hero-copy > p br { display: none; }
  .hero-actions { flex-wrap: wrap; justify-content: center; }
  .hero-visual { height: 400px; margin: 24px auto 0; transform: scale(.75); transform-origin: top left; width: 620px; left: 50%; translate: -38% 0; }
  .services { width: calc(100% - 38px); margin-top: -70px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .brands > div { flex-wrap: wrap; gap: 26px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .talk-button { min-width: 105px; font-size: 13px; }
  .hero-visual { transform: scale(.61); height: 330px; translate: -31% 0; }
  .services { margin-top: -70px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* CMS y optimizaciones de rendimiento */
main{contain:paint}
main::after{width:900px;height:900px;opacity:.34;filter:blur(34px);animation-duration:22s;will-change:transform}
.ambient{filter:blur(48px)}
.network{will-change:transform}
.network-right,.network-bottom{animation-name:none}
.uploaded-logo{width:42px;height:42px}
.uploaded-logo img{width:100%;height:100%;object-fit:contain}
.hero-image-carousel{position:absolute;inset:20px 5px 18px 70px;z-index:0;border-radius:32px;overflow:hidden;opacity:.24;pointer-events:none}
.hero-image-carousel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transform:scale(1.06);transition:opacity 1.2s ease,transform 6s ease}
.hero-image-carousel img.active{opacity:1;transform:scale(1)}
.hero-visual>:not(.hero-image-carousel){z-index:2}
.content-section{position:relative;z-index:4;padding:92px 30px;scroll-margin-top:90px}
.content-section:nth-child(even){background:#ffffff8a}
.content-inner{width:min(1120px,100%);margin:auto;text-align:center}
.content-inner>p{max-width:760px;margin:14px auto 30px;color:#4c4984;line-height:1.8}
.single-content-image{display:block;width:min(850px,100%);max-height:540px;object-fit:cover;margin:30px auto 0;border-radius:24px;box-shadow:0 20px 60px #50368924}
.content-carousel{position:relative;width:min(900px,100%);height:500px;margin:28px auto 0;border-radius:24px;overflow:hidden;background:#eee9ff}
.content-carousel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .8s ease}
.content-carousel img.active{opacity:1}
.content-carousel button{position:absolute;top:50%;translate:0 -50%;z-index:2;width:44px;height:44px;border:0;border-radius:50%;background:#ffffffd9;color:#6133d9;font-size:28px;cursor:pointer}.carousel-prev{left:18px}.carousel-next{right:18px}
.gallery-search{width:min(520px,100%);padding:13px 16px;border:1px solid #d9cdfd;border-radius:28px;margin:10px auto 20px;font:inherit}
.gallery-tabs{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-bottom:22px}.gallery-tabs button{border:1px solid #a882fb;border-radius:20px;background:transparent;color:#6736db;padding:9px 15px;cursor:pointer}
.tab-images{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.tab-images figure{margin:0;background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 12px 35px #513b7e18}.tab-images img{width:100%;height:230px;object-fit:cover}.tab-images figcaption{padding:12px}
.site-footer{position:relative;z-index:5;display:grid;grid-template-columns:2fr 1fr 1fr;gap:30px;padding:54px max(30px,calc((100% - 1200px)/2));background:#100d56;color:#fff}.site-footer div{display:flex;flex-direction:column;gap:9px}.site-footer a{color:#d9d4ff}
@media(max-width:780px){.content-section{padding:65px 20px}.content-carousel{height:330px}.tab-images{grid-template-columns:1fr}.site-footer{grid-template-columns:1fr}.hero-image-carousel{inset:10px}}
@media(prefers-reduced-motion:reduce){.hero-image-carousel img{transition:none}}
