/* =============================================
   CONFIANZA CONSULTING — STYLESHEET
   ============================================= */

:root {
  --purple-deep: #452156;
  --purple-mid: #9574A5;
  --purple-light: #D6C9E2;
  --gold-warm: #D2BA95;
  --gold-vivid: #E89669;
  --cream: #F3E6CF;
  --dark: #1a0a22;
  --dark-mid: #2d0f38;
  --white: #ffffff;
  --text-dark: #2a1535;
  --text-mid: #5a3d6b;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 40px rgba(69,33,86,0.12);
  --shadow-elevated: 0 20px 60px rgba(69,33,86,0.2);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: none; font-family: var(--font-body); border: none; background: none; }
input, textarea { font-family: var(--font-body); outline: none; }

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold-vivid);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--purple-mid);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, border-color 0.25s;
}
body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot { width: 12px; height: 12px; background: var(--gold-warm); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 54px; height: 54px; border-color: var(--gold-vivid); }

/* =============================================
   PAGE LOADER
   ============================================= */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700;
  color: var(--gold-warm);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold-vivid));
  border-radius: 2px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { to { width: 100%; } }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 10, 34, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.logo-img {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: cover;
  object-position: center;
  border: 1.5px solid var(--gold-warm);
  background: #fff;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.05em;
}
.logo-text span { color: var(--gold-warm); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-warm);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold-warm);
  border-radius: 40px;
  color: var(--gold-warm) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-warm); color: var(--dark) !important; }
.nav-cta::after { display: none; }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   SECTIONS BASE
   ============================================= */
.section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.section-bg {
  position: absolute; inset: 0; z-index: 0;
}
.section-bg svg { width: 100%; height: 100%; object-fit: cover; }
.container {
  max-width: 1280px; margin: 0 auto;
  padding: 7rem 2rem;
  position: relative; z-index: 1;
  width: 100%;
}
.section-tag {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-tag::before {
  content: '';
  display: inline-block; width: 30px; height: 1px;
  background: var(--gold-vivid);
}
.section-tag.light { color: var(--gold-warm); }
.section-tag.light::before { background: var(--gold-warm); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--purple-deep); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-warm); }
.section-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 3.5rem; max-width: 600px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-warm));
  color: var(--dark);
  border-radius: 40px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,150,105,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,150,105,0.5); }
.btn-primary.dark {
  background: linear-gradient(135deg, var(--purple-deep), var(--dark-mid));
  color: var(--gold-warm);
  box-shadow: 0 4px 20px rgba(69,33,86,0.4);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2rem;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.btn-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold-warm));
  color: var(--dark);
  border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  letter-spacing: 0.05em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,150,105,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,150,105,0.5); }

/* =============================================
   HOME / HERO
   ============================================= */
#home { min-height: 100vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-svg-bg { width: 100%; height: 100%; }
.hero-svg-bg svg { width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  padding-top: 12rem;
  padding-bottom: 6rem;
}
.hero-tag {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-warm);
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-tag::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold-warm); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300; line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex; flex-direction: column;
}
.title-line {
  display: block;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}
.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }
.title-line.italic { font-style: italic; color: var(--purple-light); }
.gold-text { color: var(--gold-warm); }
.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 1.1s ease forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 4rem;
  opacity: 0; animation: fadeUp 0.9s 1.3s ease forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 1.5s ease forwards;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold-warm); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; right: 3rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* =============================================
   OVERVIEW
   ============================================= */
#overview { background: var(--cream); }
.overview-bg { background: #F3E6CF; }
.overview-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.overview-left { }
.section-title em { font-style: italic; color: var(--purple-deep); }
.overview-text {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.overview-right { }
.overview-visual {
  position: relative;
  background: rgba(255,255,255,0.6);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(69,33,86,0.08);
  overflow: hidden;
}
.overview-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple-deep), var(--purple-mid), var(--gold-warm));
}
.overview-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  box-shadow: 0 16px 48px rgba(69,33,86,0.22);
}
.overview-img {
  width: 100%; height: 240px;
  object-fit: cover; object-position: center;
  display: block;
  border-radius: 18px;
  transition: transform 0.5s ease;
}
.overview-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(69,33,86,0.25) 0%, rgba(149,116,165,0.1) 100%);
  border-radius: 18px;
  pointer-events: none;
}
/* Global Capabilities Strip */
.global-strip {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(69,33,86,0.12);
}
.global-strip-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-vivid);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.global-strip-label::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--gold-vivid);
}
.global-caps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.global-cap {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(69,33,86,0.08);
  border-radius: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.global-cap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(69,33,86,0.12);
}
.global-cap-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(69,33,86,0.07);
  border: 1px solid rgba(69,33,86,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.global-cap-text h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 0.4rem; line-height: 1.3;
}
.global-cap-text p {
  font-size: 0.85rem; line-height: 1.65;
  color: var(--text-mid);
}
@media (max-width: 1024px) {
  .global-caps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .global-caps { grid-template-columns: 1fr; }
}

.india-map-wrap {
  display: flex; justify-content: center; align-items: center;
  padding: 1rem 0 0.5rem;
}
.india-map-img {
  width: 100%; max-width: 300px;
  display: block; margin: 0 auto;
  filter: sepia(30%) hue-rotate(240deg) saturate(120%) brightness(0.85);
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
}
.india-graphic { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.overview-badge {
  margin-top: 1.5rem; text-align: center;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--dark-mid));
  border-radius: 12px;
  color: var(--white);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold-warm); line-height: 1;
}
.badge-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; display: block; }

/* =============================================
   SERVICES
   ============================================= */
#services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2.2rem;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold-warm));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(210,186,149,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.3;
}
.service-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.service-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* =============================================
   BENEFITS
   ============================================= */
#benefits { background: var(--purple-light); }
.benefits-bg { background: #D6C9E2; }
.benefits-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
  margin-top: 1rem;
}
.benefit-card-large {
  background: var(--white);
  border-radius: 20px; padding: 3rem;
  box-shadow: var(--shadow-elevated);
  height: 100%;
  position: relative; overflow: hidden;
  border: 1px solid rgba(69,33,86,0.08);
}
.benefit-card-large::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
  pointer-events: none;
}
.benefit-icon-large { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.benefit-card-large h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 600;
  color: var(--purple-deep); margin-bottom: 1rem;
}
.benefit-card-large p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
.benefit-tag {
  display: inline-block; padding: 0.3rem 1rem;
  background: var(--purple-light); border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple-deep);
}
.benefit-side { display: flex; flex-direction: column; gap: 1.2rem; }
.benefit-card-small {
  background: var(--white);
  border-radius: 16px; padding: 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(69,33,86,0.06);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card-small:hover { transform: translateX(6px); box-shadow: var(--shadow-elevated); }
.benefit-card-small.accent {
  background: linear-gradient(135deg, var(--purple-deep), var(--dark-mid));
  color: var(--white);
  border-color: transparent;
}
.benefit-card-small.accent h4 { color: var(--gold-warm); }
.benefit-card-small.accent p { color: rgba(255,255,255,0.65); }
.benefit-card-small.accent .benefit-num { color: rgba(255,255,255,0.1); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(69,33,86,0.08); line-height: 1;
  margin-bottom: 0.5rem;
}
.benefit-card-small h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--purple-deep); margin-bottom: 0.5rem;
}
.benefit-card-small p { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--purple-deep); }
.contact-bg { background: var(--purple-deep); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-intro {
  font-size: 1.1rem; line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-label {
  display: block; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-warm); margin-bottom: 0.3rem;
}
.contact-value {
  display: block; font-size: 0.95rem;
  color: rgba(255,255,255,0.8); line-height: 1.5;
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--gold-warm); }
.contact-quote {
  margin-top: 2.5rem; padding: 1.5rem;
  border-left: 2px solid var(--gold-warm);
  background: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
}
.contact-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem; font-style: italic;
  color: var(--gold-warm); line-height: 1.5;
}
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold-warm);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 0.75rem; text-align: center; font-size: 0.85rem; color: var(--gold-warm); min-height: 1.2em; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0;
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: center; border: 1.5px solid var(--gold-warm); background: #fff; }
.footer-name {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--white); font-weight: 600;
}
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-warm); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

/* =============================================
   CHATBOT
   ============================================= */
.chatbot-launcher {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(69,33,86,0.5);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.chatbot-launcher:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(69,33,86,0.7); }
.chat-pulse {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px;
  background: var(--gold-vivid);
  border-radius: 50%; border: 2px solid var(--dark);
  animation: chatPulse 2s ease infinite;
}
@keyframes chatPulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.3);opacity:0.7;} }

.chatbot-window {
  position: fixed; bottom: 5.5rem; right: 2rem;
  width: 370px; max-height: 560px;
  background: #1e0e2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 901;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbot-window.open {
  transform: translateY(0) scale(1);
  opacity: 1; pointer-events: all;
}
.chat-header {
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--dark-mid));
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple-mid), var(--gold-warm));
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; color: var(--dark);
}
.chat-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.chat-status { font-size: 0.72rem; color: #4ade80; }
.chat-close { color: rgba(255,255,255,0.5); font-size: 1rem; transition: color var(--transition); }
.chat-close:hover { color: var(--white); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 85%;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  font-size: 0.88rem; line-height: 1.6;
}
.chat-msg.bot .msg-bubble {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .msg-bubble {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.typing-indicator {
  display: flex; gap: 4px; padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border-radius: 16px; border-bottom-left-radius: 4px;
  max-width: 70px;
}
.typing-indicator span {
  width: 6px; height: 6px; background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: typing 1.2s ease infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0);} 30%{transform:translateY(-6px);} }
.chat-suggestions {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 0.5rem 0;
}
.suggestion-btn {
  padding: 0.5rem 1rem;
  background: rgba(149,116,165,0.15);
  border: 1px solid rgba(149,116,165,0.25);
  border-radius: 20px;
  color: var(--purple-light);
  font-size: 0.8rem;
  text-align: left;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.suggestion-btn:hover { background: rgba(149,116,165,0.3); color: var(--white); }
.chat-input-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
#chatInput {
  flex: 1; padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--white); font-size: 0.88rem;
}
#chatInput::placeholder { color: rgba(255,255,255,0.3); }
#chatInput:focus { border-color: var(--purple-mid); }
#chatSend {
  width: 38px; height: 38px; min-width: 38px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-radius: 50%; color: var(--white);
  font-size: 1rem; display: flex;
  align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}
#chatSend:hover { transform: scale(1.1); box-shadow: 0 4px 12px rgba(69,33,86,0.5); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .overview-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-layout { grid-template-columns: 1fr; }
  .benefit-main .benefit-card-large { max-height: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,10,34,0.98); backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { border: none; padding: 1rem 0; margin-top: 1rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-scroll-hint { display: none; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; bottom: 5rem; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 5rem 1.5rem; }
  .hero-content { padding: 9rem 1.5rem 4rem; }
  .section-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .contact-form { padding: 1.5rem; }
  .chatbot-launcher { bottom: 1.5rem; right: 1.5rem; }
}