/* ═══════════════════════════════════════════
   BRUNET ASESORES — SHARED STYLES
   ═══════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --purple-deep: #5B21B6;
  --purple-mid: #7C3AED;
  --purple-light: #A78BFA;
  --purple-wash: #F5F0FF;
  --purple-glow: rgba(124, 58, 237, 0.12);
  --cream: #FDFBF7;
  --cream-dark: #F5F1EB;
  --ink: #1A1018;
  --ink-soft: #4A3F52;
  --ink-muted: #8C8293;
  --white: #FFFFFF;
  --gold: #D4A843;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section { padding: clamp(4rem, 10vw, 8rem) 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.25rem 0;
  transition: all 0.5s var(--ease-out-expo);
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav.scrolled {
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(91, 33, 182, 0.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.75rem; margin-left: -3.5rem; }
.nav__logo img { height: 120px; width: auto; transition: height 0.4s var(--ease-out-expo); }
.nav.scrolled .nav__logo img { height: 56px; }
.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--purple-mid);
  transition: width 0.4s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--purple-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--purple-deep); }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--purple-deep); color: var(--white);
  padding: 0.7rem 1.5rem; border-radius: 100px;
  transition: all 0.35s var(--ease-out-expo);
}
.nav__cta:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.25);
}
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.nav__burger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s var(--ease-out-expo); transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 500; color: var(--ink); transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--purple-mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600;
  padding: 1rem 2rem; border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
}
.btn--primary { background: var(--purple-deep); color: var(--white); }
.btn--primary:hover {
  background: var(--purple-mid); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 33, 182, 0.3);
}
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid rgba(26, 16, 24, 0.2); }
.btn--outline:hover { border-color: var(--purple-mid); color: var(--purple-deep); transform: translateY(-2px); }
.hero .btn--outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero .btn--outline:hover { border-color: var(--white); color: var(--white); }
.btn--white { background: var(--white); color: var(--purple-deep); font-weight: 600; }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple-mid); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 1rem;
}
.section-desc { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 6.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.breadcrumbs a { color: var(--purple-mid); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--purple-deep); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ── PAGE HERO ── */
.page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(6rem, 12vw, 10rem);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 50vh;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.6) 0%, rgba(124, 58, 237, 0.5) 50%, rgba(26, 16, 24, 0.4) 100%);
  z-index: 1;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero__shape {
  position: absolute; border-radius: 50%; filter: blur(120px);
}
.page-hero__shape--1 { width: 500px; height: 500px; background: var(--purple-light); top: -20%; right: -10%; opacity: 0.15; z-index: 2; }
.page-hero__shape--2 { width: 300px; height: 300px; background: var(--gold); bottom: -15%; left: -5%; opacity: 0.08; z-index: 2; }
.page-hero__content { position: relative; z-index: 3; max-width: 720px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
  color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.75; max-width: 600px; }
.page-hero .page-hero__subtitle { color: rgba(255,255,255,0.85); }
.page-hero--full-img { background-size: auto 100%; background-repeat: no-repeat; background-position: center; }

/* ── SERVICE PAGE CONTENT ── */
.service-content { background: var(--white); }
.service-content__grid {
  display: grid; grid-template-columns: 1fr 340px; gap: clamp(3rem, 5vw, 5rem); align-items: start;
}
.service-main h2 {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 600; margin: 2.5rem 0 1rem; line-height: 1.25;
}
.service-main h2:first-child { margin-top: 0; }
.service-main p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.service-main ul {
  margin: 1rem 0 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem;
}
.service-main ul li {
  color: var(--ink-soft); font-size: 0.95rem;
  display: flex; align-items: baseline; gap: 0.6rem;
}
.service-main ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-light); flex-shrink: 0; margin-top: 0.5rem;
}

/* ── SERVICE SIDEBAR ── */
.service-sidebar { position: sticky; top: 6rem; }
.sidebar-card {
  background: var(--cream); border-radius: 20px;
  padding: 2rem; margin-bottom: 1.5rem;
  border: 1px solid rgba(91, 33, 182, 0.06);
}
.sidebar-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 600; margin-bottom: 1.25rem;
}
.sidebar-card__links {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.sidebar-card__links a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.6rem 0.75rem; border-radius: 10px;
  transition: all 0.3s;
}
.sidebar-card__links a:hover,
.sidebar-card__links a.active {
  background: var(--purple-glow); color: var(--purple-deep);
}
.sidebar-card__links a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--purple-deep), #4C1D95);
  border-radius: 20px; padding: 2rem; color: var(--white); text-align: center;
}
.sidebar-cta h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 600; margin-bottom: 0.75rem;
}
.sidebar-cta p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 1.5rem; line-height: 1.6; }

/* ── RELATED SERVICES ── */
.related { background: var(--cream); }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card {
  background: var(--white); border-radius: 20px;
  padding: 2rem; border: 1px solid rgba(91, 33, 182, 0.06);
  transition: all 0.4s var(--ease-out-expo);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(91, 33, 182, 0.08);
  border-color: rgba(91, 33, 182, 0.12);
}
.related-card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--purple-wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.related-card__icon svg { width: 22px; height: 22px; color: var(--purple-deep); }
.related-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; margin-bottom: 0.5rem;
}
.related-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1rem; }
.related-card__link {
  font-size: 0.85rem; font-weight: 600; color: var(--purple-deep);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.3s var(--ease-out-expo);
}
.related-card:hover .related-card__link { gap: 0.6rem; }

/* ── CTA SECTION ── */
.cta {
  background: var(--white);
  position: relative; overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(91, 33, 182, 0.06);
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; }
.cta__shape {
  position: absolute; border-radius: 50%; filter: blur(100px);
}
.cta__shape--1 {
  width: 400px; height: 400px;
  background: var(--purple-light);
  opacity: 0.07;
  top: -30%; left: -8%;
}
.cta__shape--2 {
  width: 300px; height: 300px;
  background: var(--gold);
  opacity: 0.05;
  bottom: -25%; right: -5%;
}
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.cta__title em { font-style: italic; color: var(--purple-deep); }
.cta__desc {
  font-size: 1.05rem; color: var(--ink-soft);
  line-height: 1.75; max-width: 480px;
  margin: 0 auto 2.25rem;
}
.cta__actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center;
}

/* Legacy .cta-banner support for subpages */
.cta-banner { background: var(--cream); padding-top: 0; }
.cta-banner__inner {
  background: linear-gradient(135deg, var(--purple-deep), #4C1D95);
  border-radius: 28px;
  padding: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner__inner::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500; margin-bottom: 1rem; position: relative;
}
.cta-banner p {
  font-size: 1.05rem; opacity: 0.85; max-width: 520px;
  margin: 0 auto 2rem; line-height: 1.7; position: relative;
}

/* ── HOME HERO ── */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 6rem;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.78) 0%, rgba(124, 58, 237, 0.65) 40%, rgba(26, 16, 24, 0.55) 100%);
  z-index: 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 1; will-change: transform; }

/* Aurora gradient blobs — large, organic, morphing */
.hero__aurora {
  position: absolute;
  will-change: transform, border-radius, opacity;
  opacity: 0;
  filter: blur(80px);
}
.hero__aurora--1 {
  width: min(700px, 65vw); height: min(700px, 65vw);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(167, 139, 250, 0.12), rgba(91, 33, 182, 0.08));
  top: -20%; right: -15%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.hero__aurora--2 {
  width: min(500px, 50vw); height: min(500px, 50vw);
  background: linear-gradient(225deg, rgba(212, 168, 67, 0.14), rgba(245, 208, 100, 0.08), transparent);
  bottom: -15%; left: -10%;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}
.hero__aurora--3 {
  width: min(400px, 40vw); height: min(400px, 40vw);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.06));
  top: 30%; left: 40%;
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
}

/* SVG signature "B" — hand-drawn stroke */
.hero__sig {
  position: absolute;
  right: 0; top: 0;
  width: min(340px, 32vw); height: auto;
  pointer-events: none;
  opacity: 0;
}

/* Ambient mouse-reactive glow */
.hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.hero__content { position: relative; z-index: 2; max-width: 800px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12);
  padding: 0.5rem 1.25rem; border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem; opacity: 0;
  clip-path: inset(0% 100% 0% 0%);
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 1.5rem;
  perspective: 600px;
}
.hero h1 .split-char {
  display: inline-block; will-change: transform, opacity;
}
.hero h1 { color: var(--white); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__line { display: block; overflow: hidden; padding-bottom: 0.1em; }
.hero__line-inner { display: block; transform: translateY(110%); }
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8); max-width: 540px;
  line-height: 1.75; margin-bottom: 2.5rem; opacity: 0; transform: translateY(15px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0; z-index: 2;
}
.hero__scroll-hint span {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── TRUST BAR ── */
.trust {
  padding: 3rem 0;
  border-top: 1px solid rgba(91, 33, 182, 0.06);
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
  background: var(--white);
}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.trust__item { opacity: 0; }
.trust__number {
  font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600; color: var(--purple-deep); line-height: 1; margin-bottom: 0.35rem;
}
.trust__label { font-size: 0.8125rem; color: var(--ink-muted); font-weight: 500; letter-spacing: 0.03em; }

/* ── HOME SERVICE CARDS ── */
.services { background: var(--cream); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: 20px;
  padding: clamp(2rem, 3vw, 2.75rem);
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  border: 1px solid rgba(91, 33, 182, 0.06);
  opacity: 0; transform: translateY(30px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(91, 33, 182, 0.08); border-color: rgba(91, 33, 182, 0.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: all 0.4s var(--ease-out-expo);
}
.service-card:hover .service-card__icon { background: var(--purple-deep); }
.service-card__icon svg { width: 24px; height: 24px; color: var(--purple-deep); transition: color 0.4s; }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card h3 a { transition: color 0.3s; }
.service-card h3 a:hover { color: var(--purple-deep); }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; }
.service-card__link {
  font-size: 0.85rem; font-weight: 600; color: var(--purple-deep);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap 0.3s var(--ease-out-expo);
}
.service-card:hover .service-card__link { gap: 0.6rem; }

/* ── ABOUT SECTION (HOME) ── */
.about { background: var(--white); position: relative; overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.about__visual { position: relative; opacity: 0; }
.about__image-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--purple-wash), var(--cream-dark));
  display: flex; align-items: center; justify-content: center;
}
.about__image-frame .decorative-b {
  font-family: var(--font-display); font-size: 18rem; font-weight: 700;
  font-style: italic; color: var(--purple-deep); opacity: 0.12;
  line-height: 1; user-select: none;
}
.about__accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; border-radius: 20px;
  background: var(--purple-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(91, 33, 182, 0.3);
}
.about__accent-text { color: var(--white); text-align: center; }
.about__accent-text .number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about__accent-text .label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.85; }
.about__content { opacity: 0; }
.about__content h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500; line-height: 1.2; margin-bottom: 1.5rem;
}
.about__content h2 em { font-style: italic; color: var(--purple-deep); }
.about__content p { font-size: 1rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.25rem; }
.about__signature { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.about__signature-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
}
.about__signature-info .name { font-weight: 600; font-size: 0.95rem; }
.about__signature-info .role { font-size: 0.8125rem; color: var(--ink-muted); }

/* ── WHY US (HOME) ── */
.why { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.15), transparent 70%);
  pointer-events: none;
}
.why .section-tag { color: var(--purple-light); }
.why .section-title { color: var(--white); }
.why .section-desc { color: rgba(255,255,255,0.6); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  padding: 2.5rem; border-radius: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0; transform: translateY(30px);
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(124, 58, 237, 0.3); transform: translateY(-4px); }
.why-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.why-card__icon svg { width: 22px; height: 22px; color: var(--purple-light); }
.why-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }
.contact__info { opacity: 0; }
.contact__info h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500; line-height: 1.2; margin-bottom: 1.25rem;
}
.contact__info h2 em { font-style: italic; color: var(--purple-deep); }
.contact__info > p { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 2.5rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact__detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-wash);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__detail-icon svg { width: 20px; height: 20px; color: var(--purple-deep); }
.contact__detail-text .label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 0.2rem;
}
.contact__detail-text .value { font-size: 1rem; font-weight: 500; color: var(--ink); }
.contact__detail-text .value a { transition: color 0.3s; }
.contact__detail-text .value a:hover { color: var(--purple-mid); }
.contact__form-wrapper { opacity: 0; }
.contact__form { background: var(--cream); border-radius: 24px; padding: clamp(2rem, 3vw, 2.75rem); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.85rem 1.15rem; border: 1.5px solid rgba(91, 33, 182, 0.1);
  border-radius: 12px; background: var(--white); color: var(--ink);
  transition: all 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple-mid); box-shadow: 0 0 0 4px var(--purple-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; margin-top: 0.5rem; }
.form-privacy { font-size: 0.75rem; color: var(--ink-muted); text-align: center; margin-top: 1rem; line-height: 1.5; }
.form-privacy a { color: var(--purple-mid); text-decoration: underline; }

/* ── MAP ── */
.map { padding: 0; height: 400px; }
.map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) contrast(1.05); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--purple-light); margin-top: 1rem;
}
.footer h4 {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { font-size: 0.9rem; transition: color 0.3s; }
.footer__links a:hover { color: var(--purple-light); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.footer__bottom a { color: var(--purple-light); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--white); }

/* ── WHATSAPP ── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.35s var(--ease-out-expo);
  opacity: 0; transform: scale(0.8) translateY(20px);
}
.whatsapp-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45); }
.whatsapp-fab svg { width: 28px; height: 28px; color: var(--white); }

/* ── ABOUT PAGE ── */
.about-page { background: var(--white); }
.about-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
.about-page__content h2 {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 600; margin: 2.5rem 0 1rem; line-height: 1.25;
}
.about-page__content h2:first-child { margin-top: 0; }
.about-page__content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; }
.about-page__visual { position: sticky; top: 6rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.value-item {
  background: var(--cream); border-radius: 16px; padding: 1.5rem;
  border: 1px solid rgba(91,33,182,0.06);
}
.value-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
.value-item p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-page { background: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .service-content__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__logo { margin-left: 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-nav { display: flex; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .services__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; }
  .about__accent { bottom: -1rem; right: -0.5rem; width: 100px; height: 100px; }
  .about__accent-text .number { font-size: 2rem; }
  .why__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .about-page__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .service-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .cta-form__row { grid-template-columns: 1fr; }
}
/* ── GSAP ANIMATION SUPPORT ── */

/* 3D perspective for card tilts */
.services__grid { perspective: 1000px; }
.service-card { transform-style: preserve-3d; will-change: transform, opacity; }

/* Why-card cursor glow */
.why-card {
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
  top: var(--glow-y, -100px); left: var(--glow-x, -100px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }

/* Split text chars */
.split-char, .split-word {
  will-change: transform, opacity;
}

/* Trust line progress */
.trust { position: relative; }
.trust::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: var(--line-progress, 0%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-mid), transparent);
}

/* Page hero shapes start scaled */
.page-hero__shape { transform: scale(0.8); opacity: 0; will-change: transform, opacity; }

/* Magnetic button transform */
.btn--primary, .btn--white { will-change: transform; }

/* About visual initial offset */
.about__visual { transform: translateX(-40px); }
.about__content { transform: translateX(40px); }

/* Contact initial offsets */
.contact__info { transform: translateX(-30px); }
.contact__form-wrapper { transform: translateX(30px); }

/* Nav links initial visibility for GSAP */
.nav__logo, .nav__links a, .nav__cta { visibility: visible; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__line-inner { transform: none !important; }
  .hero__badge { clip-path: none !important; }
  .hero__badge, .hero__subtitle, .hero__actions, .hero__scroll-hint,
  .trust__item, .service-card, .about__visual, .about__content,
  .why-card, .contact__info, .contact__form-wrapper { opacity: 1 !important; transform: none !important; }
  .nav__logo, .nav__links a, .nav__cta { visibility: visible !important; opacity: 1 !important; }
  .split-char, .split-word { opacity: 1 !important; transform: none !important; }
  .hero__aurora, .hero__sig, .hero__glow { opacity: 0.5 !important; animation: none !important; }
  .page-hero__shape { opacity: 0.1 !important; transform: none !important; }
}
