/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
:root {
  --bg:        #f7f5ff;
  --surface:   #ffffff;
  --lavender:  #ede8fc;
  --purple:    #7c5cbf;
  --purple-2:  #9b7de0;
  --purple-3:  #c4b0f5;
  --blue:      #5b8dee;
  --blue-soft: #dde8fd;
  --pink:      #f0c6e4;
  --text:      #1a1530;
  --text-2:    #5a5272;
  --text-3:    #9590aa;
  --border:    rgba(124,92,191,0.12);
  --glass-bg:  rgba(255,255,255,0.62);
  --glass-border: rgba(255,255,255,0.85);
  --shadow-sm: 0 2px 16px rgba(124,92,191,0.08);
  --shadow-md: 0 8px 40px rgba(124,92,191,0.13);
  --shadow-lg: 0 20px 60px rgba(124,92,191,0.18);
  --radius:    20px;
  --radius-lg: 32px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── FLOATING ORBS (global bg) ────────────────────────── */
.orbs {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: driftOrb 18s ease-in-out infinite alternate;
}
.orb1 { width: 580px; height: 580px; background: radial-gradient(circle, #c4b0f5, transparent 70%); top: -180px; left: -100px; animation-duration: 22s; }
.orb2 { width: 420px; height: 420px; background: radial-gradient(circle, #bdd5fb, transparent 70%); top: 20%; right: -120px; animation-duration: 17s; animation-delay: -5s; }
.orb3 { width: 340px; height: 340px; background: radial-gradient(circle, #f7ceed, transparent 70%); bottom: 15%; left: 10%; animation-duration: 20s; animation-delay: -9s; }
@keyframes driftOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ─── LAYOUT HELPERS ───────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--purple); font-weight: 600;
  background: rgba(124,92,191,0.09); border: 1px solid rgba(124,92,191,0.18);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--purple-2); border-radius: 50%; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400; line-height: 1.1; color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--purple); }

.section-sub {
  font-size: 16px; color: var(--text-2); line-height: 1.75;
  max-width: 540px;
}

/* ─── REVEAL ANIMATION ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.2,.8,.4,1), transform 0.75s cubic-bezier(.2,.8,.4,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 0;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(247,245,255,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 2px 24px rgba(124,92,191,0.09);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--text);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.nav-logo .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); margin-top: -2px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--purple); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-nav {
  font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  padding: 10px 24px; border-radius: 100px; text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost-nav {
  color: var(--text-2); border: 1px solid var(--border);
  background: transparent;
}
.btn-ghost-nav:hover { border-color: var(--purple); color: var(--purple); background: rgba(124,92,191,0.06); }
.btn-solid-nav {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; border: none;
  box-shadow: 0 4px 18px rgba(124,92,191,0.28);
}
.btn-solid-nav:hover { box-shadow: 0 6px 28px rgba(124,92,191,0.42); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 80px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--purple);
  margin-bottom: 28px;
  animation: fadeSlide 0.8s ease both;
}
.hero-eyebrow-line { width: 32px; height: 1.5px; background: linear-gradient(to right, var(--purple), transparent); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 300; line-height: 1.07; color: var(--text);
  margin-bottom: 24px;
  animation: fadeSlide 0.8s 0.1s ease both;
}
.hero-headline strong { font-weight: 600; }
.hero-headline em { font-style: italic; color: var(--purple); }
.hero-sub {
  font-size: 17px; color: var(--text-2); line-height: 1.8;
  max-width: 460px; margin-bottom: 44px;
  animation: fadeSlide 0.8s 0.2s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeSlide 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 15px 32px; border-radius: 100px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; text-decoration: none;
  box-shadow: 0 6px 24px rgba(124,92,191,0.32);
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(124,92,191,0.45); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 15px 32px; border-radius: 100px;
  background: var(--glass-bg); color: var(--purple);
  text-decoration: none; border: 1.5px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { background: var(--lavender); border-color: var(--purple-3); transform: translateY(-2px); }

.hero-badges {
  display: flex; gap: 20px; margin-top: 48px; flex-wrap: wrap;
  animation: fadeSlide 0.8s 0.4s ease both;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2); font-weight: 500;
}
.badge svg { color: var(--purple); }
.badge-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--purple-3); }

/* Hero illustration */
.hero-visual {
  position: relative;
  animation: fadeSlide 0.9s 0.2s ease both;
}
.hero-card-main {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(1.5);
  position: relative; z-index: 2;
}
.hero-chart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.hero-chart-header h4 { font-size: 14px; font-weight: 600; color: var(--text); }
.hero-chart-badge {
  font-size: 12px; font-weight: 600;
  background: rgba(91,161,238,0.12); color: var(--blue);
  padding: 4px 12px; border-radius: 100px;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 10px;
  height: 110px; margin-bottom: 16px;
}
.bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.bar {
  width: 100%; border-radius: 8px;
  background: linear-gradient(to top, var(--purple), var(--purple-3));
  transition: height 0.4s ease;
  animation: growBar 1.2s cubic-bezier(.2,.8,.4,1) both;
}
.bar.blue { background: linear-gradient(to top, var(--blue), #a8c8fa); animation-delay: 0.1s; }
.bar.pink { background: linear-gradient(to top, #e07ec9, #f5c6e8); animation-delay: 0.2s; }
@keyframes growBar { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.bar-label { font-size: 11px; color: var(--text-3); }
.chart-stats { display: flex; gap: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.chart-stat .val { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--text); }
.chart-stat .val span { font-size: 14px; color: var(--purple); margin-left: 2px; }
.chart-stat .lbl { font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hfc-1 { top: -28px; right: -20px; min-width: 160px; animation-delay: -1s; }
.hfc-2 { bottom: -24px; left: -24px; min-width: 170px; animation-delay: -3s; }
.hfc-icon { font-size: 20px; margin-bottom: 6px; }
.hfc-val { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--text); }
.hfc-lbl { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.hfc-trend { font-size: 12px; font-weight: 600; color: #22c55e; }

/* ─── STATS BAND ───────────────────────────────────────── */
.stats-band {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item { padding: 0 24px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 44px; width: 1px; background: var(--border);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; line-height: 1; color: var(--text);
}
.stat-num sup { font-size: 24px; color: var(--purple); vertical-align: top; margin-top: 6px; display: inline-block; }
.stat-lbl { font-size: 13px; color: var(--text-3); margin-top: 6px; letter-spacing: 0.06em; }

/* ─── SERVICES ─────────────────────────────────────────── */
.section-services { padding: 110px 0; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: all 0.35s cubic-bezier(.2,.8,.4,1);
  cursor: default; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,92,191,0.05) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,92,191,0.22);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 24px;
}
.si-purple { background: linear-gradient(135deg, rgba(124,92,191,0.15), rgba(155,125,224,0.1)); }
.si-blue   { background: linear-gradient(135deg, rgba(91,141,238,0.15), rgba(91,141,238,0.08)); }
.si-pink   { background: linear-gradient(135deg, rgba(240,198,228,0.4), rgba(245,198,232,0.2)); }
.si-teal   { background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(20,184,166,0.08)); }
.si-amber  { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.08)); }
.si-rose   { background: linear-gradient(135deg, rgba(244,63,94,0.12), rgba(244,63,94,0.06)); }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-2); line-height: 1.72; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  text-decoration: none; margin-top: 20px;
  transition: gap 0.25s;
}
.service-card:hover .learn-more { gap: 10px; }

/* ─── WHY CHOOSE US ────────────────────────────────────── */
.section-why { padding: 100px 0; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-text .section-sub { margin-bottom: 40px; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: all 0.3s; cursor: default;
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: rgba(124,92,191,0.2); }
.why-bullet {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wb-1 { background: rgba(124,92,191,0.12); }
.wb-2 { background: rgba(91,141,238,0.12); }
.wb-3 { background: rgba(20,184,166,0.12); }
.wb-4 { background: rgba(245,158,11,0.12); }
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.why-item p  { font-size: 13px; color: var(--text-2); line-height: 1.65; }

.why-visual { position: relative; }
.why-blob-card {
  background: linear-gradient(135deg, var(--lavender), var(--blue-soft));
  border-radius: 40% 60% 50% 60% / 50% 40% 60% 50%;
  padding: 56px 48px; text-align: center;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-lg);
}
.why-big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 600; line-height: 1; color: var(--purple);
  opacity: 0.18; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
}
.why-blob-inner { position: relative; z-index: 1; }
.why-blob-inner .icon { font-size: 52px; margin-bottom: 16px; }
.why-blob-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 10px;
}
.why-blob-inner p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.why-pill {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border-radius: 100px;
  padding: 12px 20px 12px 12px;
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; color: var(--text);
  animation: float 7s ease-in-out infinite;
  white-space: nowrap;
}
.why-pill .icon-sm { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.wp-1 { top: 10px; right: -20px; animation-delay: -2s; }
.wp-2 { bottom: 30px; left: -30px; animation-delay: -5s; }

/* ─── PORTFOLIO ────────────────────────────────────────── */
.section-portfolio { padding: 110px 0; }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.portfolio-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  background: var(--surface); border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(.2,.8,.4,1);
  cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pt-1 { background: linear-gradient(135deg, #d4c5f9, #bdd5fb, #f0c6e4); }
.pt-2 { background: linear-gradient(135deg, #bdd5fb, #b8f0e8, #d4c5f9); }
.pt-3 { background: linear-gradient(135deg, #f9d4c5, #fbd5bd, #f0c6e4); }
.pt-4 { background: linear-gradient(135deg, #c5f9d4, #bdf5c9, #c5e8f9); }
.pt-5 { background: linear-gradient(135deg, #f9c5d4, #f5bde0, #fbd5c5); }
.pt-6 { background: linear-gradient(135deg, #e8d4f9, #d4c5f9, #c5d4f9); }
.thumb-icon { font-size: 56px; opacity: 0.6; }
.portfolio-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(28,20,50,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }
.view-btn {
  font-size: 13px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 24px; border-radius: 100px; backdrop-filter: blur(8px);
}
.portfolio-body { padding: 24px 28px 28px; }
.portfolio-cat {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 8px;
}
.portfolio-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.portfolio-card p  { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.portfolio-metrics { display: flex; gap: 20px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.pm span { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.pm small { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── TESTIMONIALS ─────────────────────────────────────── */
.section-testimonials { padding: 110px 0; }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header .section-sub { margin: 0 auto; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track {
  display: flex; gap: 22px;
  transition: transform 0.55s cubic-bezier(.2,.8,.4,1);
}
.testi-card {
  min-width: calc(33.333% - 15px);
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  box-shadow: var(--shadow-sm); backdrop-filter: blur(16px) saturate(1.3);
  flex-shrink: 0;
}
.stars { display: flex; gap: 3px; margin-bottom: 20px; }
.star { font-size: 15px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300; line-height: 1.65;
  color: var(--text); margin-bottom: 28px; font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--purple); font-size: 32px; line-height: 0; vertical-align: -14px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 600; color: #fff; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.av2 { background: linear-gradient(135deg, var(--blue), #22d3ee); }
.av3 { background: linear-gradient(135deg, #e879f9, #f0abfc); }
.av4 { background: linear-gradient(135deg, #fb923c, #fbbf24); }
.av5 { background: linear-gradient(135deg, #34d399, #6ee7b7); }
.testi-name { font-size: 15px; font-weight: 600; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.testi-controls { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 44px; }
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--glass-bg); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: var(--text-2);
  transition: all 0.25s;
}
.testi-btn:hover { background: var(--lavender); border-color: var(--purple-3); color: var(--purple); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 100px; background: var(--purple-3);
  cursor: pointer; transition: all 0.25s;
}
.testi-dot.active { width: 24px; background: var(--purple); }

/* ─── CTA ──────────────────────────────────────────────── */
.section-cta { padding: 100px 0; }
.cta-inner {
  background: linear-gradient(135deg, #6b46c1 0%, #5b8dee 50%, #a855f7 100%);
  border-radius: 40px; padding: 90px 80px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(107,70,193,0.35);
}
.cta-blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.3; pointer-events: none;
}
.cb1 { width: 400px; height: 400px; background: rgba(255,255,255,0.2); top: -200px; right: -100px; }
.cb2 { width: 300px; height: 300px; background: rgba(168,85,247,0.5); bottom: -150px; left: -80px; }
.cta-inner .section-tag { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-inner .section-tag::before { background: #fff; }
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px); font-weight: 300; line-height: 1.1; color: #fff;
  margin-bottom: 20px; position: relative;
}
.cta-title em { font-style: italic; font-weight: 400; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 48px; line-height: 1.75; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 15px 32px; border-radius: 100px;
  background: #fff; color: var(--purple);
  text-decoration: none; box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,0.2); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 15px 32px; border-radius: 100px;
  background: transparent; color: #fff;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.5); backdrop-filter: blur(12px);
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo .dot { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--lavender); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--text-2); text-decoration: none;
  transition: all 0.25s;
}
.social-icon:hover { background: linear-gradient(135deg, var(--purple), var(--blue)); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.25s; }
.footer-col a:hover { color: var(--purple); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom a { color: var(--purple); text-decoration: none; }

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: calc(100% - 0px); }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { padding: 60px 32px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  .section-services, .section-why, .section-portfolio, .section-testimonials { padding: 72px 0; }
}